<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-11654835</id><updated>2011-04-21T12:08:37.576-07:00</updated><title type='text'>Christoph's Notepad</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-11654835.post-111706294917313801</id><published>2005-05-25T16:13:00.000-07:00</published><updated>2005-05-25T16:15:49.176-07:00</updated><title type='text'>C++ - loading a binary file</title><content type='html'>I didn't expect it wouldn't be that difficult to load a simple binary file in C++ (of course, I'm talking about a sysex file).&lt;br /&gt;&lt;br /&gt;The problem is not to load it to the heap, the problem is to find documentation to do so. Most documents load text strings - but I cannot use strings for binary files.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111706294917313801?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111706294917313801/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111706294917313801' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111706294917313801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111706294917313801'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/c-loading-binary-file.html' title='C++ - loading a binary file'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111625265732742245</id><published>2005-05-16T07:03:00.000-07:00</published><updated>2005-05-16T07:10:57.336-07:00</updated><title type='text'>First steps in C++</title><content type='html'>A friend has politey written a wee small Qt application for me to get me started. I improved it so it now requests and loads a binary file from the hard drive when pressing a button. Pressing an other button writes the hex code of the data to stderr.&lt;br /&gt;&lt;br /&gt;I already know that I will be interested in multithreading as soon as possible. When writing the data to stderr one can already see the GUI to freeze for a short time - and the data has only been 34KB :) .&lt;br /&gt;&lt;br /&gt;I wonder that it was that difficult to load binary data. I guessed that for a computer it should be very simple to handle it. But no, various data types are represented by a different amount of bytes on different platforms/architectures. Furthermore, you need to know that if you load binary data into a string object the machine will convert bytes that look like row endings. Urgh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111625265732742245?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111625265732742245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111625265732742245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111625265732742245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111625265732742245'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/first-steps-in-c.html' title='First steps in C++'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111554711211136874</id><published>2005-05-08T03:07:00.000-07:00</published><updated>2005-05-08T03:11:52.126-07:00</updated><title type='text'>C++ programming</title><content type='html'>I finally decided to learn some C++ so I can help improving existing free software and to be able to create own helper applications.&lt;br /&gt;In fact, C++ seems to be a language difficult to learn. Having some knowledge in Basic and shell scripting, C++ is more complex and abstract.&lt;br /&gt;The problem is not to start writing some C++, the problem is to get enough knowledge to understand existing code.&lt;br /&gt;I fear it will last a long time until I can read code written by others, and I'm curious if I will continue learning C++.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111554711211136874?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111554711211136874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111554711211136874' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111554711211136874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111554711211136874'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/c-programming.html' title='C++ programming'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111498451279467829</id><published>2005-05-01T14:34:00.000-07:00</published><updated>2005-05-01T14:57:44.746-07:00</updated><title type='text'>LAC 2005 Review</title><content type='html'>Well, finally with a delay of one week, a short review of the LAC 2005.&lt;br /&gt;&lt;br /&gt;The conference was visited well again, and the talks have been of high quality.&lt;br /&gt;&lt;br /&gt;On wednesday evening, we had a first dinner at an italian restaurant with the participiants which have already arrived.&lt;br /&gt;&lt;br /&gt;On thursday, Peter Brinkmann introduced »MidiKinesis - MIDI controllers for (almost) any purpose«, which lets you use MIDI controller events to trigger previously recorded mouse actions (pressing buttons and so on). The mouse events are recorded relative to the application window, so it can be moved around without breaking the recording. In the evening hours the »Opening Concert« took place in the ZKM Kubus.&lt;br /&gt;&lt;br /&gt;On friday, I held a talk about »Linux Audio Usability Issues«.&lt;br /&gt;&lt;br /&gt;On saturday I was impressed by the talk of Jürgen Reuter&lt;br /&gt;who introduced »SoundPaint«, a tool to convert paintings into audio material. Furthermore there has been a talk about »System design for audio record and playback with a computer using FireWire«, a very important topic because firewire on linux is not available for audio cards yet. Nasca Octavian Paul demonstrated his cool synth »ZynAddSubFX« and Paul Davis demonstrated »Ardour«, the digital audio workstation software he has worked on for five years now. I really was impressed how matured it is - a really professional grade software. The evening hours have been filled with a second concert and the sound night with some further events happening on the ZKM balcony.&lt;br /&gt;&lt;br /&gt;After that, we entered a restaurant in the city called »Stoevchen« at a quarter past two - seventeen people! We got something to eat and to drink and I arrived at home at 4AM - very tired ;-) .&lt;br /&gt;&lt;br /&gt;On sunday the talk of Dave Phillips (»Where Are We Going And Why Aren't We There Yet?«) was the last one. After some reports about the sessions that took place the day before the conference officially ended. Fortunately, we returned to the italian restaurant in the evening hours to have a nice meal again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111498451279467829?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111498451279467829/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111498451279467829' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111498451279467829'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111498451279467829'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/lac-2005-review.html' title='LAC 2005 Review'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111493604329091491</id><published>2005-05-01T01:15:00.000-07:00</published><updated>2005-05-01T01:28:59.090-07:00</updated><title type='text'>Eric Ross playing the Theremin</title><content type='html'>Yesterday there was an event in the &lt;a href="http://www.badischer-kunstverein.de" target=new&gt;»Badischer Kunstverein«&lt;/a&gt; where &lt;a href="http://www.thereminworld.com/ericross.asp" target=new&gt;Eric Ross&lt;/a&gt; played the &lt;a href="http://en.wikipedia.org/wiki/Theremin" target=new&gt;Theremin&lt;/a&gt;. I was not convinced about the music, but the Theremin was really an interesting instrument. I already knew and heard it before, but never live.&lt;br /&gt;&lt;br /&gt;Eric also played an Roland XP 80 and the guitar.The Theremin was connected to an guitar effects processor and he used a lot of reverb and delays. The Theremin was manufactured by &lt;a href="http://www.bigbriar.com"&gt;Big Briar&lt;/a&gt;, the new company of &lt;a href="http://en.wikipedia.org/wiki/Robert_Moog" target=new&gt;Robert Moog&lt;/a&gt; who originally invented the analog synthesizers in the middle of the last century.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111493604329091491?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111493604329091491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111493604329091491' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111493604329091491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111493604329091491'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/eric-ross-playing-theremin.html' title='Eric Ross playing the Theremin'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111493524462562852</id><published>2005-05-01T01:09:00.000-07:00</published><updated>2005-05-01T01:14:41.643-07:00</updated><title type='text'>Linuxtag Papers</title><content type='html'>Due to the fact that I needed to write the two papers for the Linuxtag, I still haven't had the time to write down my thoughts about the Linux Audio Conference last weekend. Friday in the evening hours I submitted the papers, so this task is finally finished.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111493524462562852?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111493524462562852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111493524462562852' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111493524462562852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111493524462562852'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/05/linuxtag-papers.html' title='Linuxtag Papers'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111437970914865899</id><published>2005-04-24T14:52:00.000-07:00</published><updated>2005-04-24T14:57:22.376-07:00</updated><title type='text'>LAC just over...</title><content type='html'>...and the guys already have put the &lt;a href="http://www.linuxdj.com/audio/lad/contrib/zkm_meeting_2005/video/" target=new&gt;videos online&lt;/a&gt;.&lt;br /&gt;I'm impressed. Thanks Jörn et al. for your hard work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111437970914865899?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111437970914865899/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111437970914865899' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111437970914865899'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111437970914865899'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/lac-just-over.html' title='LAC just over...'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111394431038087681</id><published>2005-04-19T13:55:00.000-07:00</published><updated>2005-04-19T13:58:30.380-07:00</updated><title type='text'>LAC ahead</title><content type='html'>Finally I finished my slides for the talk on the Linux Audio Conference, while watching some streams about the new pope.&lt;br /&gt;&lt;br /&gt;A german traditionalist. Well, if I were christian, I'd be disappointed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111394431038087681?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111394431038087681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111394431038087681' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111394431038087681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111394431038087681'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/lac-ahead.html' title='LAC ahead'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111342943507116508</id><published>2005-04-13T14:51:00.000-07:00</published><updated>2005-04-13T14:57:46.356-07:00</updated><title type='text'>Twinview on a Nvidia card</title><content type='html'>Well, finally I got twinview configured for my Nvidia Geforce 2 Go in my notebook. I've connected a 21'' CRT. For preparing the papers for the &lt;a href="http://lac.zkm.de" target=_new&gt;Linux Audio Conference&lt;/a&gt; and the &lt;a href="www.linuxtag.org" target=_new&gt;Linuxtag&lt;/a&gt; it's a great thing. I can finally have one Document on one screen and another one on the other. Thanks to a resolution of 1400x1050 on my notebook, I'll surely save a lot of time this way. Many thanks to Alexandre Tessier from the Yahoo group "linux-dell-laptops" who has politely posted an example configuration and some explaining words. Thanks a lot!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111342943507116508?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111342943507116508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111342943507116508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111342943507116508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111342943507116508'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/twinview-on-nvidia-card.html' title='Twinview on a Nvidia card'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111317462743923034</id><published>2005-04-10T16:06:00.000-07:00</published><updated>2005-04-10T16:12:01.676-07:00</updated><title type='text'>Successful weekend</title><content type='html'>Well, thanks to the great work of Pedro Lopez-Cabanillas we've now finally ALSA support in &lt;a href="http://sysexxer.sf.net" target=new&gt;Sysexxer&lt;/a&gt;. And I have almost finished my paper for the &lt;a href="http://www.linuxtag.org" target=new&gt;Linuxtag&lt;/a&gt; 2005.&lt;br /&gt;&lt;br /&gt;I still need to update the documentation for Sysexxer and to clean up its homepage, but I fear it will still last some days until I have some time to do so.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111317462743923034?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111317462743923034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111317462743923034' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111317462743923034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111317462743923034'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/successful-weekend.html' title='Successful weekend'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111289505529958275</id><published>2005-04-07T10:27:00.000-07:00</published><updated>2005-04-07T10:31:38.426-07:00</updated><title type='text'>Stockholm syndrome</title><content type='html'>I was told that I should care about the &lt;a href="http://fishbowl.pastiche.org/2004/05/26/and_linux_is_your_psychotic_ex" target=new&gt;Stockholm syndrome&lt;/a&gt; ;-) .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111289505529958275?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111289505529958275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111289505529958275' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111289505529958275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111289505529958275'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/stockholm-syndrome.html' title='Stockholm syndrome'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111256673254500205</id><published>2005-04-03T15:15:00.000-07:00</published><updated>2005-04-03T15:24:05.543-07:00</updated><title type='text'>Access not on Musikmesse?</title><content type='html'>Seems that &lt;a href="http://www.access-music.de" target=new&gt;Access&lt;/a&gt; will have no booth on the &lt;a href="http://musik.messefrankfurt.com/frankfurt/en/" target=new&gt;Musikmesse&lt;/a&gt; this year, so I'll cancel the planned visit on thursday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111256673254500205?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111256673254500205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111256673254500205' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111256673254500205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111256673254500205'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/access-not-on-musikmesse.html' title='Access not on Musikmesse?'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111256649083181698</id><published>2005-04-03T15:14:00.000-07:00</published><updated>2005-04-03T15:14:50.833-07:00</updated><title type='text'>Requiescas in pace.</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111256649083181698?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111256649083181698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111256649083181698' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111256649083181698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111256649083181698'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/requiescas-in-pace.html' title='Requiescas in pace.'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111239639682157438</id><published>2005-04-01T14:56:00.000-08:00</published><updated>2005-04-01T15:00:57.170-08:00</updated><title type='text'>ALSA support for Sysexxer</title><content type='html'>Thanks to the help of Pedro Lopez-Cabanillas we'll finally add ALSA support to &lt;a href="http://sysexxer.sourceforge.net" target=new&gt;Sysexxer&lt;/a&gt;. Until today, Sysexxer can only handle OSS devices, even if ALSA gets used it simply uses the OSS emulation of ALSA. Unfortunately, this way it is not possible to use multiport MIDI cards like the m-audio Midisport 8x8.&lt;br /&gt;&lt;br /&gt;So, finally we'll get true ALSA sequencer support - that's really great!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111239639682157438?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111239639682157438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111239639682157438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111239639682157438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111239639682157438'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/04/alsa-support-for-sysexxer.html' title='ALSA support for Sysexxer'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111205740452381811</id><published>2005-03-28T16:40:00.000-08:00</published><updated>2005-03-28T16:52:04.066-08:00</updated><title type='text'>Gentoo Linux 2005.0</title><content type='html'>Well, not important to me, because I already have it on my hard drive. Gentoo is one of the less systems (besides Debian-based systems) which can easily be kept up-to-date via aome simply commands. None of the commercial distros is capable of keeping a system once installed up-to-date. Furthermore, the online repository of Gentoo packages is simply amazing. After having used SuSE, Debian and Mandrake, I have to admit that Gentoo is the perfect system for my desktop:&lt;br /&gt;&lt;br /&gt;&lt;LI&gt;Easiest online updates&lt;br /&gt;&lt;LI&gt;All packages in the repository are really up-to-date&lt;br /&gt;&lt;LI&gt;The system is very well documented&lt;br /&gt;&lt;LI&gt;Many things have to be configured manually, but OTOH, no GUI configuration frontend will mess your manually modified configuration files&lt;br /&gt;&lt;LI&gt;Gentoo always tries to include important system changes like the new init scripting process (I do not know any other distro which has it included)&lt;br /&gt;&lt;br /&gt;Disadvantage:&lt;br /&gt;&lt;br /&gt;&lt;LI&gt;Time consuming, caused due to the fact that you have to compile all packages by yourself. Mozilla, OpenOffice.org and KDE will need many many hours to compile&lt;br /&gt;&lt;br /&gt;See the release &lt;a href="http://www.gentoo.org/news/20050327-release-2005.0.xml" target=new&gt;announcement&lt;/a&gt; for further information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111205740452381811?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111205740452381811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111205740452381811' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111205740452381811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111205740452381811'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/gentoo-linux-20050.html' title='Gentoo Linux 2005.0'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111200741346550191</id><published>2005-03-28T02:51:00.000-08:00</published><updated>2005-03-28T02:56:53.466-08:00</updated><title type='text'>Linux audio tutorial videos</title><content type='html'>Though the audio quality is poor and my spoken english is a very »krautish« one, I get very positive feedback concerning the Linux audio video tutorials I did some time before.&lt;br /&gt;&lt;br /&gt;Linux audio is still complex, mainly due to the fact that there are many competing audio servers (esound, aRts, JACK) while other applications still need direct access to the hardware device provided by the driver (and of course there are two different driver systems, the older open sound system and the newer ALSA).&lt;br /&gt;&lt;br /&gt;Anyone who is interested in the videos can get them on the &lt;a href="http://sysexxer.sf.net" target=new&gt;homepage of Sysexxer&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111200741346550191?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111200741346550191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111200741346550191' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111200741346550191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111200741346550191'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/linux-audio-tutorial-videos.html' title='Linux audio tutorial videos'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111196509002785118</id><published>2005-03-27T15:09:00.000-08:00</published><updated>2005-03-27T15:11:30.026-08:00</updated><title type='text'>Gnome wave cleaner</title><content type='html'>Cool app to simply do the most important steps for cleaning audio files (many formats supported, based on the libsndfile):&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gwc.sourceforge.net/" target=new&gt;http://gwc.sourceforge.net&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111196509002785118?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111196509002785118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111196509002785118' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111196509002785118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111196509002785118'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/gnome-wave-cleaner.html' title='Gnome wave cleaner'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111178561518899266</id><published>2005-03-25T13:18:00.000-08:00</published><updated>2005-03-25T13:30:03.256-08:00</updated><title type='text'>Open instrument file format</title><content type='html'>Just joined a newly created &lt;a href="http://resonance.org/mailman/listinfo/open-instruments" target=new&gt;mailing list&lt;/a&gt; to discuss a new open file format for audio applications like software samplers and synthesizers. I'm not that optimistic that it will spred even if it was well designed. I'm curious.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111178561518899266?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111178561518899266/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111178561518899266' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111178561518899266'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111178561518899266'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/open-instrument-file-format.html' title='Open instrument file format'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111178407757449552</id><published>2005-03-25T11:53:00.000-08:00</published><updated>2005-04-03T15:37:14.983-07:00</updated><title type='text'>Access Virus TI line still not available</title><content type='html'>Still, Access isn't able to deliver the new TI-line which has been &lt;a href="http://virus.info/news.php4" target=new&gt;announced&lt;/a&gt; in november of 2004. Some guys of the inofficial Access Virus mailing list had immediately sold their Virus Cs after the announcement and are now waiting for the TI for almost half a year (don't laugh, it's a fact ;-).&lt;br /&gt;&lt;br /&gt;The main new feature is the integration into the computer desktop/sequencing software. Not important for me due to the fact I'm working on a Linux box and I guess there will (with reason) never be an &lt;a href="http://alsa-project.org" target=new&gt;ALSA-driver&lt;/a&gt; for it.&lt;br /&gt;&lt;br /&gt;I'm not necessarily in need the other new features which make the TI different to the &lt;a href="http://virus.info/products.php4?product=virusc" target=new&gt;Virus C&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;LI&gt;Hypersaw? I'm no house or techno musician&lt;br /&gt;&lt;LI&gt;More voices? The 32 voices of the C are really enough most of the time, except when playing too much with the unison mode (I simply avoid unison mode)&lt;br /&gt;&lt;LI&gt;4 RAM banks of singles instead of 2? As long as there are still ROM banks, it's not important. A really cool feature was if &lt;I&gt;all&lt;/I&gt; banks would be RAM&lt;br /&gt;&lt;LI&gt;Three destinations for all of the six modulation matrix slots? That's a bugfix or consistency fix which I'd like to see in an OS upgrade for the C (Access is known for their fair upgrade policy, BTW)&lt;br /&gt;&lt;LI&gt;Individual effects for each of the 16 Multiparts? Cool, but that's not something spectacular, it's a tribute to faster processors. And all information I saw only told that reverb and delay are individual for each multipart - are all the other effects excluded?&lt;br /&gt;&lt;LI&gt;Embedded singles in multimode? That's really cool, but too less to upgrade my C :)&lt;br /&gt;&lt;br /&gt;What still a lot of people will miss in the TI:&lt;br /&gt;&lt;br /&gt;&lt;LI&gt;A freely assignable eight stage envelope with loop start and end point as known from the Waldorf Microwave&lt;br /&gt;&lt;LI&gt;Three equally featured LFOs with an envelope each which can be used as a source in the modulation matrix&lt;br /&gt;&lt;LI&gt;Three equally featured oscillators like found in the Novation Supernova. It's cool to switch the third oscillator off if it's not needed, but there's no reason why it is limited in features, e.g. the selection of waveforms differs from oscillator 1 and 2&lt;br /&gt;&lt;LI&gt;Individual and bipolar Detune for each oscillator is a must have. That there's no detune for oscillator 1 is really sad&lt;br /&gt;&lt;LI&gt;Adjustable and modulatable bandwidth for the bandpass and notch filters&lt;br /&gt;&lt;LI&gt;Individual Envelopes for both filters&lt;br /&gt;&lt;LI&gt;Individual volumes for each oscillator in the mixer, finally dropping the old two oscillator  design and make the saturation simply depend on the sum of all oscillator volumes. Drop the oscillator volume knob and make the oscillator balance knob dependent on the oscillator select button&lt;br /&gt;&lt;LI&gt;Endless rotaries instead of the knobs, which can act as switches when pressing on them. This would save a lot of buttons&lt;br /&gt;&lt;LI&gt;All parameters should be accessible via the menus, even if there's a hardware control for it. There are simply values which are very difficult to adjust via the knobs due to the fact that a parameter has too many values&lt;br /&gt;&lt;LI&gt;Make sending a ROM bank to be forced to the bank specified in the global settings. Currently the Virus simply ignores incoming ROM banks complaining about illegal bank number, ignoring the global setting to force it to bank A or B&lt;br /&gt;&lt;LI&gt;According to ROM writing copying ROM banks to a RAM bank would be very useful&lt;br /&gt;&lt;LI&gt;Improving parameter names. »Patch volume«? A patch is called a single in the Virus.Filter parameters? »Cutoff« and »Cutoff2« instead of »Flt1Cutoff« and »Flt2Cutoff«. »Filt1Reso« and »Filt2Reso« are prefixed different than all the rest of the filter parameters, which are prefixed by »Flt«. Sorry, it's a mess.&lt;br /&gt;&lt;LI&gt;Remove the velocity settings from the global menu and move them to the filter and oscillator menus&lt;br /&gt;&lt;LI&gt;Hierarchical menus. The flat menus require lots of clicks to find the desired parameter, especially in multi mode&lt;br /&gt;&lt;br /&gt;The audio quality of the Virus is outstanding, but the parameter set strongly limits the capabilities of the machine and makes audio design more complicated as necessary.&lt;br /&gt;&lt;br /&gt;But anyway, the Virus is a really great machine which allows unique and present sounds. And to be honest, the &lt;a href="http://virus.info/events/11-2004/virusti_details_polar.php4" target=new&gt;Polar&lt;/a&gt; simply looks very very cool.&lt;br /&gt;&lt;br /&gt;Keep up the good work, and make the next synth again a Virus, but with real impressive new features. I guess that lots of C users will skip the TI and wait for the next generation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111178407757449552?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111178407757449552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111178407757449552' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111178407757449552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111178407757449552'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/access-virus-ti-line-still-not.html' title='Access Virus TI line still not available'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111177965025208637</id><published>2005-03-25T11:33:00.000-08:00</published><updated>2005-03-25T11:43:10.603-08:00</updated><title type='text'>Aaron J. Seigo on ISVs</title><content type='html'>Aaaron J. Seigo, one of the KDE usability guys, has some interesting thoughts about &lt;a href="http://aseigo.blogspot.com/2005_03_01_aseigo_archive.html" target=new&gt;ISV software&lt;/a&gt;.&lt;br /&gt;And he's right in his observations. It's a pity that commercial software simply sucks. Another good example is Realplayer for Linux. In version 10, it still uses OSS as audio output. As long as someone uses KDE or Gnome, a soundserver will keep the audio device busy, which causes Realplayer to freeze during startup instead of checking for the current system and connecting to the correct soundserver. This is surely not causes by the quality of the programmers but simply by their ignorance.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111177965025208637?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111177965025208637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111177965025208637' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111177965025208637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111177965025208637'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/aaron-j-seigo-on-isvs.html' title='Aaron J. Seigo on ISVs'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111162061934604319</id><published>2005-03-23T15:26:00.000-08:00</published><updated>2005-03-23T15:40:43.276-08:00</updated><title type='text'>Linux Audio Usability</title><content type='html'>Usability is a very difficult thing on Linux desktops. After I have finally finished my paper about &lt;a href="http://lac.zkm.de/abstracts.shtml#christoph_eckert" target=new&gt;Linux Audio Usability Issues&lt;/a&gt; for the &lt;a href="http://lac.zkm.de" target=new&gt;Linux Audio Conference&lt;/a&gt;, I again played with some applications today. Lots of cool stuff, but simply unaccessible for average computer users and even musicians. It's a pity.&lt;br /&gt;&lt;br /&gt;But when asking authors of different applications to include certain features to address usability ideas, I usually get very positive feedback.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111162061934604319?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111162061934604319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111162061934604319' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111162061934604319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111162061934604319'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/linux-audio-usability.html' title='Linux Audio Usability'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11654835.post-111161954510278883</id><published>2005-03-23T15:10:00.000-08:00</published><updated>2005-03-23T15:12:25.103-08:00</updated><title type='text'>Initial Post</title><content type='html'>I'm curious if I'll use the blog on a regular basis or not ;-) .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11654835-111161954510278883?l=christophsnotepad.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://christophsnotepad.blogspot.com/feeds/111161954510278883/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11654835&amp;postID=111161954510278883' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111161954510278883'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11654835/posts/default/111161954510278883'/><link rel='alternate' type='text/html' href='http://christophsnotepad.blogspot.com/2005/03/initial-post.html' title='Initial Post'/><author><name>blogger-ce</name><uri>http://www.blogger.com/profile/08398902157431237475</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
