(January 31, 2006)
Today, I briefly tried some Python IDEs (not thoroughly, I just installed them and started them once). One that caught my attention (in a negative sense) is Eric3:
I remember having seen screenshots like this from KDevelop and MS Word, but these were »artificial« ones, generated by deliberately activating every toolbar and dock window available. This is the first program I’ve seen that provides this kind of experience »out of the box«, without any configuration, at the first start.
Posted in Computer Fun | No Comments yet
(January 30, 2006)
I love coding, but to the same extent I hate project maintenance. This is a problem I share with most other coders, I guess – but well, sometimes it just has to be done. And today it was MPUI‘s turn to get some fixes.
Read more …
Posted in Computer Fun, Hacks | 1 Comment ...
(January 25, 2006)
As promised, I’m going to move (almost) all content from my old homepage to the new one. Today, I started by copying the whole old public_html
directory to a local hard disk. While browsing through the resulting directory dump, it suddenly became clear to me why the disk quota was so tight on the old site: There was a 30 MB log file! I added a simple textfile-based access logging facility to the code and, well, I simply forgot about it.
Now such a file isn’t something I would simply delete. No. This is some kind of treasure, so I imported it into a database to obtain some fancy statistics.
Read more …
Posted in Computer Fun | 1 Comment ...
(January 23, 2006)
During some random discussion with my colleague today, I rediscovered an experiment I did quite some years ago: MP3 compression of image data. This is, feed raw 8-bit-per-pixel grayscale image data into an MP3 encoder, let it compress it, and decode the MP3 file again. After some conversion (the decoder will always produce 16 bit signed output, but 8 bit unsigned image data is needed), a raw image file will result of this whole process, ready to be displayed with an arbitrary image viewer. Sounds simple, eh? :)
Read more …
Posted in Computer Fun, Hacks | 12 Comments ...