A while back, I mentioned here and here that OmniFocus maintains some kind of cache of your data in a SQLite database. I just hacked together a quick little prototype Python module for reading OmniFocus data:...
This morning I accidentally dragged an iTerm2 tab and created a split pane in one of my tabs. I searched for quite a while to find out how to move it back to its own tab. Finally, I found it at...
(Also at https://github.com/urbancoding/jenx/issues/32) Don't freak out too much if 64-bit processes on OS X have a VSIZE of 10 GB or more. marca@SCML-MarcA:~$ cat macruby_test.rb print "What's your name? " name = gets.chop puts...
The latest growlnotify in homebrew (1.3) fails on OS X 10.6 (Snow Leopard), because it's a Lion-only binary. marca@SCML-MarcA:/usr/local$ growlnotify dyld: Symbol not found: _kSecRandomDefault Referenced from:...
TrueCrypt on Mac OS X has a nice GUI, but if you're a command-line afficionado... Put this in your ~/.bashrc or similar file: alias truecrypt='/Applications/TrueCrypt.app/Contents/MacOS/Truecrypt --text' Then you can do stuff...
I was trying to make it as easy as possible to access our YNAB file which lives in an encrypted TrueCrypt volume. The idea was to have OS X autofs automount the TrueCrypt volume so that when YNAB starts and attempts to load our...
The first few times I tried building MacVim, it kept linking with the system Python. I wanted it to use my Python 2.7 install. I finally found the right incantation: ./configure --enable-rubyinterp=yes...