Debugging in the Terminal on OS X with LLDB

...

February 2, 2015 · 1 min

Formatting Text in Skype

...

September 4, 2014 · 1 min

Change to Vimdiff mode with two files open in a split view in vim

Often I found myself starting an extra vimdiff session while I am actually working in another vim session. Finally, I took the time to search for a solution and I came up with the following two lines in my .vimrc: nnoremap &lt;leader&gt;dt :windo diffthis<cr> nnoremap &lt;leader&gt;do :windo diffo<cr> They blindly go through all windows in the current view and enables or disable vimdiff, so use them with caution if you are a split view junky. ...

September 3, 2014 · 1 min

Copy Current Filename and Line Number to Clipboard With Vim

Today I was working with a colleague and reasoned about some code over chat. We sent filename and line number frequently and I got the impression that this is another perfect candidate for automation. Hence, I came up with the following solution, which can also be found on my .vimrc on github. Note that you need to check for the system vim is running on (linux/mac) or just pick the one line that matches your system. ...

July 7, 2014 · 1 min

TIG - Git Curses Interface

...

July 3, 2014 · 2 min

UTF-8 Graphics in iTerm

...

July 2, 2014 · 1 min

Download the Right FreeBSD Kernel Source Code

Today I wanted to download the right kernel source code and found this helping blog post. However, I got the feeling that the url can be built automatically to avoid fetching the wrong URL. Use the following command instead and it should always fetch the appropriate sources according to your currently running machine: fetch ftp://ftp.freebsd.org/pub/`uname -s`/releases/`uname -m`/`uname -r`/src.txz I hope this was at least a little helpful ;) Cheers, iss

April 14, 2014 · 1 min

LaTeX tikz externalize to reduce memory usage and cache figures

...

February 27, 2014 · 1 min

LaTeX tikz main_memory problems on OS X

...

February 27, 2014 · 1 min

Using xargs on OS X to rebuild all my tikzdevice images with Rscript

...

January 15, 2014 · 2 min