Wandern

2011-04-20

Wandern

2011-04-17

Use the Last Search Term for a Substitution in Vim

2011-04-05

It is quite usual to first search for something in vim just to use it in a substitution afterwards. To do so just leave the substitution pattern of the substitution command empty. This way it is possible to build complex regular expressions interactively with the help of the search function and later use it in a substitution without having to enter the regex again.

The following example shows a search for foo in the current line and replaces the first match with bar with the second command. See help :s and help / in vim for more information on search and subtitute.

/foo
:s//bar

Post to Twitter

Using the Most Recent Input Again in LaunchBar

2011-03-25

To reuse your most recent LaunchBar input activate LaunchBar again, select the desired action and press Shift + Return.

Post to Twitter

Taking a Screenshot of a Virtual Machine in VMware Fusion

2011-03-24

GIMP – Erfahrungen und Tipps Ebook

2010-11-07

Die letzten drei Monate lang habe ich im Rahmen des Sommer-Spezials 2010 von http://www.linux-community.de/ als einer von zehn Teilnehmern kurze Blogbeiträge zu GIMP und anderer freier Bildbearbeitungs- und Grafiksoftware verfasst. Das Ergebnis kann auf der Linux-Community online gelesen werden, meine Beiträge können auch hier gesammelt als PDF-heruntergeladen werden:

http://wolke23.at/files/gimp-erfahrungen-und-tipps.pdf (ca. 50 MB)

Post to Twitter

Case-Insensitive Mac OS Extended (HFS+)

2010-08-08

As of OS X 10.6 Snow Leopard a default HFS+ (Mac OS Extended) Volume still is case-insensitve. Interestingly enough I never ran into problems because of this, but still, it just doesn't feel right that these three commands are addressing the same file:

vi /Srsly/Apple/WHY
vi /srsly/apple/why
vi /SRSLY/APPLE/wHy

By the way, I know that there is a case sensitive version of HFS+, but many third party apps don't.

Post to Twitter

HP w19 DVI-Anschluss

2010-08-07

Hat man vor, einen Monitor an mehreren Computern zu betreiben oder bastelt gern an Rechnern rum und muss deswegen öfter mal das DVI-Kabel umstecken, sollte man darauf achten, dass der Hersteller auch genug Platz für Kabel und Stecker vorgesehen hat. Beim ansonsten für seinen Kaufpreis von rund EUR 200 irgendwann Ende 2007 ausreichend gut funktionierenden HP w19 ist das zum Beispiel nicht der Fall. Das von HP beigelegte Kabel mit extra kurzem Stecker bekommt man unter Anstrengung und ohne das Kabel zu sehr zu knicken zwar in den DVI-Anschluss rein, DVI-Kabel mit handelsüblicher Steckergröße lassen sich am w19 aber leider nicht verwenden. Das Bild zeigt links den eingesteckten HP-Stecker und rechts den - lose über den ebenfalls vorhandenen Analoganschluss gelegten - DVI Stecker normaler Größe.

Post to Twitter

GIMP Default Keyboard Shortcuts

2010-08-06

Tracking File Opens With opensnoop

2010-08-05

Opensnoop is a great DTrace-based command-line program to track file opens.

If you want to know what files are accessed by a certain Process use sudo opensnoop -p PID.

To get information about the processes a file is opened by, use the -f option: sudo opensnoop -f ~/myfile.tmp.

Post to Twitter