Author Archives: Michael Simons

Hello again…

07-Apr-07

Just get rid off K2, it was way to slow… Now i use a slightly modified theme from plaintxt.org, which i like a lot. More to come after the easter holidays.

Read the complete article »

WordPress and UTW Upgrade

03-Apr-07

Why on earth has my ‘post_type’ column on my wp 2.0.x based blog no default value? Ultimate Tag Warrior UTW3-14159265 will break and show no tags. If anyone else has this problem, add $typelimitsql = "(post_status = ‘publish’ OR post_status = ‘static’)"; // From previous version of utw$typelimitsql = "(post_status = ‘publish’ OR post_status = […]

Read the complete article »

Sun Certified Programmer for Java 5

30-Mar-07

So then, to generate some pressure: Let’s get the party started… 😉 Edit: Just realized, that one of my new domains doesn’t work as java package name, damn it… Just memorize: Valid identifiers starts with a connecting or text character, have no operator signs in them and are no keywords.

Read the complete article »

Copy directories and preserve permissions

18-Mar-07

The following command will create a recursive copy of the current working directory preserving all file permissions and owners: mkdir /var/backup/michael cd /home/michael tar cf – . | (cd /var/backup/michael && tar xBfp -)mkdir /var/backup/michael cd /home/michael tar cf – . | (cd /var/backup/michael && tar xBfp -) Comes in handy while moving whole directory […]

Read the complete article »