Skip to content
accelerando

Monthly Archives: March 2007

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.

Hidden Mac OS X Features

21-Mar-07

Here is a nice article on using the “defaults” command in OS X, check it out:

Top 15 Terminal Commands for Hidden Mac OS X Settings

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 -)

Comes in handy while moving whole directory trees from one disk to a new one.

Close
E-mail It