Welcome to my unobtrusive blog!
By default I blog in english but there is also german content.

Archive for January, 2009

Wordpress: getting all posts from a specific category

Monday, January 5th, 2009 Posted in english | No Comments »

I wanted to grab all posts from a certain category with a single non-wp-php script and I wrote the following mysql statement to accomplish this task: SELECT wp_posts.post_title, wp_posts.post_date, wp_posts.post_content, wp_posts.guid FROM wp_posts WHERE wp_posts.post_type='post' AND wp_posts.post_status='publish' and ( select ...

Compiling Io on Ubuntu 8.10

Sunday, January 4th, 2009 Posted in english | No Comments »

Compiling Io on Ubuntu is really easy but getting all addons to work properly is a different story. The following steps are needed: install all needed libraries for Io compile and install libevent-1.4.8 compile and install libsgml-1.1.4 compile and install Io Install all needed libraries The ...

FlickGrab.io in Io

Friday, January 2nd, 2009 Posted in english | No Comments »

Yesterday I hacked a little piece of code in Io, a tiny programming language which might turn out to be very easy to learn, easy to use, highly dynamic etc...blabla... In fact I just wanted to get in touch with that ...

libsgml and gcc 4.3.x problem with linking

Thursday, January 1st, 2009 Posted in english | No Comments »

Today I wanted to compile libsgml 1.1.4 on Ubuntu Intrepid AMD64 and I came across the following error message when I tried to link it: /usr/bin/ld: DomComment.o: relocation R_X86_64_32 against `a local symbol' can not be used when making a shared ...