August 24th, 2004
Sorry for the delay but I’ve been busy in the last 2 days. On sunday some nice talks took place, check out planetkde.org for opinions of other people ;-). In the kdewiki you will find many more links to picture-galleries, streaming-server and documentation.
On monday I attended to Klaus Knopper’s tutorial “Knoppix remastering” which was very interesting. We remastered Knoppix 3.6 in different ways and Klaus published version 3.6 during the tutorial 8-).
Today I spent some hours at the LDAP-tutorial, now I’m sitting at a computer room and finishing my slides for tommorrow. I have to write the blog-entry via ssh to my castl^Whome with elinks due to my blog does not support https and I don’t trust my neighbours sitting next to the switch ;-)
Posted in Events | Comments Off on aKademy: Days 2, 3 and 4
August 22nd, 2004
$ svn update
svn: XML parser failed in ''
svn: Date conversion failed
$
strace gives me:
open(".svn/entries", O_RDONLY|O_LARGEFILE) = 3
read(3, "< ?xml version="1.0" encoding="ut"..., 8192) = 4849
read(3, "", 3343) = 0
brk(0) = 0x80b9000
brk(0x80dc000) = 0x80dc000
brk(0) = 0x80dc000
brk(0) = 0x80dc000
brk(0x80d4000) = 0x80d4000
brk(0) = 0x80d4000
write(2, "svn: XML parser failed in ''n", 29svn: XML parser failed in ''
) = 29
write(2, "svn: Date conversion failedn", 28svn: Date conversion failed
) = 28
close(3)
Because google is such verbose (not!) I had to edit ~/.svn/entries manually. Seems to be a bug in libexpat1 (or at least in debian’s one). Grml.
Posted in Rants | Comments Off on subversion sucks
August 21st, 2004
Today we (Sven Guckes and me) arrived at Airport Stuttgart, went to Ludwigsburg by “S-Bahn” and checked in at aKademy. Now we are sitting at Hermann Thomas’ home. Hermann is a very nice guy who rescued us before a night under a bridge ;-) due to there was no space left in the youth hostel for 21th and 22th of august when we registered for aKademy.
We had no time to take part of lectures today but have been at the social event. There I met Reinhold Kainhofer (maintainer of kdepim) who studied in Graz for some years and I know him from Grazer LinuxTage 2003. Quite funny to meet people from Graz/Austria in Germany 8-). I attented to some quite interesting discussion like as Lars Knoll talking about features of Qt4 with Nikolas Zimmermann from the SVG-team.
A webgallery is available online at dufo.tugraz.at/~prokop/akademy2004/! Greetings from a nice event from a nice city!
Posted in Events | Comments Off on aKademy: Day 1
August 21st, 2004
In a few hours I’m flying with Sven Guckes to Stuttgart (Germany) from Klagenfurt Airport. Today KDE Community World Summit 2004 “aKademy” starts in Ludwigsburg.
I’ll stay there till 28th of August. I don’t know whether I’ll have a good internet-connection via WLAN or not, so don’t expect to meet me in realtime in ICQ/Jabber or mail ;-) all the time.
Posted in Events | Comments Off on Going to Germany
August 20th, 2004
I wanted to know which (rss)readers people use for reading my blog. I created some stats based on logs from 26 july to 20th of august:
RSS-Reader | Counts
========================================
"blogg.de-Crawler" | 8
"BlogPulse | 123
"centericq/4.10.0" | 16408
"centericq/4.10.1" | 4962
"centericq/4.11.0" | 495
"centericq/4.9.10" | 4308
"centericq/4.9.12" | 18436
"Feedreader" | 27055
"Feedster | 386
"Gnus/5.10.6 | 32
"Googlebot/2.1 | 5976
"ia_archiver" | 1
"Java/1.4.1_02" | 51
"Java/1.4.1_05" | 7
"LinkWalker" | 430
"Mediapartners-Google2.1" | 51
"mm-url" | 20262
"Mozilla/4.0 | 8073
"Mozilla/5.0 | 70061
"msnbot/0.11 | 2712
"NetNewsWire/1.0.8 | 2295
"Opera/7.51 | 148
"Opera/7.52 | 147
"Opera/7.53 | 10480
"Opera/7.54 | 1431
"PHP | 110
"PubSub.com | 3040
"rssfetch | 20957
"Seekbot/1.0 | 50
"Snownews/1.5.3 | 6693
"Syndic8/1.0 | 2547
"UniversalFeedParser/3.0-fc-1 | 14
"W3C_Validator/1.305.2.148 | 16
"Wget/1.9.1" | 301
"Wget/1.9-beta-unoff" | 56
"www.adressendeutschland.de | 438
Note:
Mozilla/5.0 includes browsers like MSIE 6.0 andKonqueror/3.2 but also Mozilla itself.
Posted in Allgemein | Comments Off on Some blogstats
August 20th, 2004
Toogle is a Text version of Googles Image Search. Currently it creates images out of the very term that was used to fetch those images, later we will endeavour to create images out of the search terms entered by users past and present. But for now please, go play.
— http://c6.org/toogle/about.php
Have a look at Toggle :)
Posted in Computer | Comments Off on Toggle: Text version of Googles Image Search
August 19th, 2004
An absolutely great zsh-tip by Jesper Holmberg I would like to share with you because I find it very useful.
The motivation for the following snippet is the fact that I often do a ‘find’ or a ‘locate’ to find some files I’m interested in, and then want to do some action on one of the files I just found. This function provides a way to put completions from the output of the previous command on the command line.
What this does is that it repeats the previous command, saving the output in a string. It then splits the output string on new-lines, and quotes each element (so that for example file names containing spaces get properly quoted). I then bind the function to a menu-complete-like widget, so that I can step through the alternatives.
Test it together with ‘loocate’ or ‘find’. Perhaps someone finds this
useful, and any suggestions for improvement would be appreciated.
— Jesper Holmberg on zsh-users mailinglist
Put this in your zsh-setup an press esc -e if you want to use this function:
_jh-prev-result () {
hstring=$(eval `fc -l -n -1`)
set -A hlist ${(@s/
/)hstring}
compadd - ${hlist}
}
zle -C jh-prev-comp menu-complete _jh-prev-result
bindkey 'ee' jh-prev-comp
Posted in Computer | Comments Off on zsh: previous command output
August 18th, 2004
$ dpkg-buildpackage
zsh: segmentation fault (core dumped) dpkg-buildpackage
$ dpkg-buildpackage --version
zsh: segmentation fault (core dumped) dpkg-buildpackage --version
$
Same version of dpkg-buildpackage of course works on my laptop.
Argl.
Update: The solution to fix this problem is to change the shebang-line of the shellscript dpkg-buildpackage from /bin/sh (which is a symlink to zsh on my workstation) to /bin/bash.
Posted in Rants | 1 Comment »
August 18th, 2004
$ svn up
svn: Working copy '.' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
$ svn cleanup
svn: XML parser failed in '.zsh'
svn: Date conversion failed
$ mv .zsh .zsh.old
$ svn cleanup
svn: Can't open directory '.procmail/.svn/tmp/svn_io_remove_dir': No such file or directory
$ mkdir .procmail/.svn/tmp/svn_io_remove_dir
$ svn cleanup
svn: Can't open directory '.procmail/.svn/tmp/svn_io_remove_dir/svn_io_remove_dir': No such file or directory
$ mkdir .procmail/.svn/tmp/svn_io_remove_dir/svn_io_remove_dir
$ svn cleanup
svn: Can't open directory '.procmail/.svn/tmp/svn_io_remove_dir/svn_io_remove_dir/EðEìEìÄ$[]ÃUåSìtèÚWÿÿÃ': No such file or directory
$ mv .procmail .procmail.old
$ svn update
svn: Working copy '.' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
$ mv .svn/lock .svn/lock.old
$ svn update
svn: Working copy '.opera' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
[...]
$ for i in `find .opera -name lock`; do mv $i $i.old ; done
$ svn update
[...]
Updated to revision 44.
Grml.
Posted in Rants | Comments Off on subversion
August 16th, 2004
I can’t believe it – but S4 is running (using linux-kernel 2.6.8.1) on my Sony VAIO FX602!
Disassembling the AML into an ASL-file with Intel’s IASL-compiler (part of the ACPI CA – Unix Build Environment), creating the AML in a c-hex-table and patching the linux-kernel did the trick.
I’ve documented the essential steps on my german laptop-webpage. What I have to check out in detail(!) is which daemons I have to stop, which modules should be removed and how to automate this process in best practive. But this has been a big step forward for me and my Laptop. ;-)
Posted in Computer | 1 Comment »
August 15th, 2004
Lout is a document formatting system designed and implemented by Jeffrey Kingston at the Basser Department of Computer Science, University of Sydney, Australia.
— http://snark.ptc.spbu.ru/~uwe/lout/lout.html
If you are interested in it also check out the project’s homepage @ sf.net.
Credits for the pointer goes to the faboulus Karl Voit, a friend of mine who is also an active contributor of the german-speaking project LaTeX@TUG.
For german-speaking people: check out the lout-thread in de.comp.text.tex. An interesting hint I found there is a pointer to ConTeXt.
Posted in Computer | 3 Comments »
August 14th, 2004
Absolutely great. Jerry Peek (you might know him from the absolutely great book Unix Power Tools), Oliver Kiddle (a well known zsh-geek) and Stephenson Peter (author of the well known zsh-users-guide) have written a book on zsh named “From Bash to Z Shell: Conquering the Command Line” (book@amazon.at). It will be available in November 2004. Argh – that long to wait ;-(.
This book is very very interesting for me because my texttools-book will cover zsh too and till now there don’t exist any books on zsh. Since last week it’s a fact that I’m a trainer on KDE Community World Summit 2004 “aKademy” in Ludwigsburg (I’ll be there from 21th to 28th of August) and I hope that I can talk to people from some publishing companies there.
Posted in Computer | Comments Off on Book on zsh
August 12th, 2004
I wanted to take a closer look inside the current debian-installer of Sarge. I checked out the current svn-trunk and for fun (and inspired by Debian’s newsletter) I ran David A. Wheeler’s ‘SLOCCount’ for getting some stats. Have a look:
Totals grouped by language (dominant language first):
ansic: 30452 (59.93%)
sh: 16674 (32.82%)
perl: 2739 (5.39%)
yacc: 763 (1.50%)
lex: 126 (0.25%)
python: 57 (0.11%)
Total Physical Source Lines of Code (SLOC) = 50,811
Development Effort Estimate, Person-Years (Person-Months) = 12.37 (148.41)
(Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))
Schedule Estimate, Years (Months) = 1.39 (16.71)
(Basic COCOMO model, Months = 2.5 * (person-months**0.38))
Estimated Average Number of Developers (Effort/Schedule) = 8.88
Total Estimated Cost to Develop = $ 1,670,695
(average salary = $56,286/year, overhead = 2.40).
Posted in Computer | 2 Comments »
August 12th, 2004
While being in city yesterday afternoon I went to the IMO best bookshop in Klagenfurt called ‘Heyn’. There I again met my “old schoolfriend” Michael and his girlfriend (I have been in city because I met them and another friend before the unofficial meeting at Heyn ;-)).
Michael isn’t a computer geek and I too didn’t want to buy a book related to computers so we have been at the fiction-section of the bookshop.
When I told Michael that I don’t want to buy a computerbook he was joking that all the books right up here are computerbooks too but their content is hidden behind a more relaxing story.
Well. We took a look at the titles of the books and we could find a relation to computers at almost every book. Just take a look at this titles (sorry, german ones but they have been the ones I can remember):
* Die Dämonen ruhen nicht (Patricia D. Cornwell)
* Stabilitätspolitik (Helmut Wagner)
Of course this also works for english books:
* Horse and Stable Management (Jeremy Houghton Brown)
* Design and Crime: And Other Diatribes (Hal Foster )
* No More Company Crap (Ed Bayless)
Posted in Allgemein | Comments Off on Fun while shopping
August 11th, 2004
At the weekend I recorded Rubeo and Petzi with the digital videocam of my father.
About 1,5 hours of video – resulting in ~16 GiB capturing-data. I don’t have that much free space on my laptop so I had to work on the windows computer of my brother.
In the semiprofessional area of movie-editing it’s (AFAIK) about 1 hour you have to work an a 1 minute resulting scene. The final movie takes 21 minutes, all together I’ve worked for about 10 hours – quite fast but I hope the video is ok.
My familiy enjoyed watching the video. The MPEG2-stream of it has 4.3 GiB, too much for the web ;-). A smaller CD-ROM version has 634 MiB – even too much. So I have a Microsoft ASF-file (.wmf) of 155 MiB which I uploaded within the last 3 hours (while being in Klagenfurt city) to the webserver.
Please don’t slashdot my webserver 8-):
Rubeo and Petzi in summer 2004 (WMV) (155 MiB)
Have fun – feedback is welcome :-)
Posted in Allgemein | 2 Comments »
August 11th, 2004
As you maybe know I’m running Debian unstable (with 2.6.8-rc3) on my laptop. X11 is working and I even have support for XVideo. Now I wanted to add 3d acceleration (the gatos-drivers don’t provide 3d acc.).
Ok, first of all I tried to use the debian package of the mach64-CVS-branch by Michel Dänzer.
cd /usr/src/modules/drm-mach64 && make
[...]
In file included from /usr/src/modules/drm-mach64/gamma_drv.c:34:
/usr/src/modules/drm-mach64/drmP.h:51:27: linux/wrapper.h: No such file or directory
Seems to be kernel 2.4 specific stuff… Ok, let’s do it on our own.
I downloaded ‘ATI Mach64 Driver‘ with build date 20040716. Compiling, installation and even modprobing of the DRM-module worked. Now let’s try to start X:
$ grep EE /var/log/XFree86.0.log
(EE) module ABI minor version (7) is newer than the server's version (6)
(EE) Failed to load module "ati" (module requirement mismatch, 0)
(EE) No drivers available.
Argl… :-(
Ok, now I’ll try the dri-trunk: I had to remove xserver-xfree86-dri-mach64 manually, otherwise it wouldn’t have been possible to install the new packages. Hey – X is at least running (without falling back to fbdev ;-)), but:
$ glxinfo | grep rendering
direct rendering: No
Ok, I’ll have to check this out in more detail later – now I’ll have a go for some beer^Wcoffees with old friends from school. 8-)
Posted in Rants | 2 Comments »
August 9th, 2004

Yes, Apple seems to hunt me ;-).
As you can read in my last blog-entry I evaluate(d) iPods.
Today Karl Voit pointed me to the baghira-look’n feel for KDE which tries to simulate Apple-feelings. And hey – it works! I really like it. (Take a look at the screenshot.)
Jimmy (who set up his weblog today) pointed me to a special book of O’Reilly’s series called ‘Hacks’. There I found iPod & iTunes Hacks. Argl.
In many of the blogs I’m reading Apple is mentioned. For example Tim Pritlove is blogging abobut “Apple: The Microsoft of the Music Market” and “OSX del.icio.us client”. And even in the news I read Apple-news, e.g. Mac Keeps Lead on Linux (OSNews.com).
Grml. Steve – I know that Apple provides great notebooks (an ibook is on my wishlist for quite some time) and that I should take a look at Mac OS X. But give me some more time, let’s say till you release Mac OS X v10.4 AKA Tiger. Thanks. :-)
Posted in Computer | 1 Comment »
August 9th, 2004
My girlfriend wants to buy a mp3-player. Of course I’m the one who evaluates which one she should buy.
I didn’t have any experience with that stuff (I’m proud owner of a minidisc-player since many years) so I posted to the TUG-newsgroup tu-graz.hardware and got great feedback.
The requirements are:
* linux compatible
* good (life-span of) accumulator
* good sound (not high-quality)
* available in austria (via shipment or shop in Graz or Klagenfurt)
* price of max. 150 euros
The following mp3-players have been proposed:
Archos Ondio SP MP3-Player 128MB (68 Euro)
dnt Fun256 (102 Euro)
Acer MP3-Player/USB-Stick 256MB inkl. FM-Tuner (AG.MP3F2.256) (125 Euro)
Apple iPod mini Musicplayer 4GB silver (M9160ZR/A) (258 Euro)
Commodore MP3-Player (~150 Euro at Niedermeyer)
So it’s my turn and I have to choose one. I really like Apple’s stuff but the mini iPod isn’t really an alternative (price, no apple-computer,…). About 100 euros would be ok. A FM-Tuner would be nice, a possibility to record talkings would be great.
A very hard decision and I still don’t know which one to choose. Any more comments which could cause me to go to bed before googeling for another few hours? ;-)
Posted in Allgemein | 5 Comments »
August 8th, 2004
My new blogsystem provides feeds (RSS .91, 2.0 and Atom 0.3) which can be parsed by aKregator without any problems. So I wanted to import all the snownews-URLs without doing too much 8-)
See the power of DCOP:
$ sed 's/(.*)||(.*)|/dcop akregator-1808 aKregatorIface addFeedToGroup 1 2/' urls >| /tmp/cmd
$ chmod 700 /tmp/cmd && /tmp/cmd
And now I’ve all the URLs from snownews inside aKregator without a single mouseclick. I’ll write a script which can handle snownews -> aKregator and vice versa for integration into my subversion-system of config-files.
Posted in Computer | 2 Comments »
August 7th, 2004
In November 2003 I was inspired by Andi Krennmair (AK) to do some blogging. At that time AK used b2 so I also installed b2. b2 was ok but a few month later it began to suck. First of all development ended due to it was published as a merge of b2 and cafelog under the name wordpress. So no new features, no bugfixes. A few days ago I was testing aKregator (a KDE RSS-reader) but reading my own feed failed because of some “^M” at EOL (end of lines). :-(
I tried to migrate to wordpress but failed :-(. AK migrated his blog to wordpress and wrote down the stuff he did. So I also tried to migrate. And hey – as you can see here we are :-). Thanks to AK who helped me at the migration!
If you notice any bugs/problems don’t hesitate to contact me. Thanks.
Note: Don’t forget to update the URL of my rss-feed in your rss-reader!
Posted in Allgemein | 3 Comments »