Geschrieben am 09. März 2010 von Oliver | 2 Kommentare »
Heute hatte ich ein seltsames Problem mit AirPort auf meinem Mac. Und zwar konnte ich AirPort nicht mehr über das Menüelement deaktivieren. Es passierte einfach gar nichts, wenn der Befehl ausgewählt wurde.

Nach kurzer Suche fand ich den Grund in den AirPort-Settings. Wobei dies nicht unbedingt die Ursache ist, aber zumindest das “gewünschte” Verhalten zurückbrachte.
Weiterlesen…
Geschrieben am 08. Februar 2010 von Oliver | Keine Kommentare »
Recently I discovered a mysterious message showing up in every new Terminal window I opened under OS X. The notice simply read “You have new mail”:

First I thought this was something that had been put in the Terminal’s startup message (called motd – Message of the Day, which can be edited with “$ pico /etc/motd”). However, this was not the case.
KTJGPTNURUHF
Weiterlesen…
Geschrieben am 08. Februar 2010 von Oliver | Keine Kommentare »

There are for sure some visually nice alarm clocks to use on OS X, such like the 3-2-1 Dashboard timer-widget.
But for real Geeks, there’s a way over the Terminal for activating an audio-visual reminder, using the following simple command:
$ leave hhmm
$ #f.eg.: "leave 0930" meaning 21h30
Alarm set for Mo 8 Feb 2010 21:30:00 CET. (pid 789)
This activates a leave-timer which will alarm you 5 and 1 minute prior to the given time, such as at the exact time. The date is always your current day.
To disable the alarm, you need to quit the according process using the following kill-command:
$ kill -s kill pid
$ #pid = 789 as in above example
As usual, you can read all details about the “leave”-command by typing “man leave” in the Terminal.
Geschrieben am 13. Januar 2010 von Oliver | 1 Kommentar »
I wanted to have a shortcut in Safari, which allows me to instantly post the Webpage I am currently browsing to Twitter.
Thanks to the service TwitThis.com and the JavaScript-Code they use, I was able to create just what I desired:

Weiterlesen…
Geschrieben am 06. November 2009 von Oliver | Keine Kommentare »

When you have installed MAMP (Mac Apache, MySQL, PHP) on your Mac, you may want to connect to it’s MySQL Server using the OS X Terminal.app
To do so, execute the following command in a Terminal window:
/Applications/MAMP/Library/bin/mysql -uroot -proot -P 8889
When the authentication was successful, the message “Welcome to the MySQL monitor” will be displayed in the Terminal window.