Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-5 of 5 total  RSS 

Optimize Aperture database

sqlite3 Pictures/Aperture\ Library.aplibrary/Aperture.aplib/Library.apdb vacuum

Get Frontmost Window

tell application "System Events"
	set frontmostApplication to name of the first process whose frontmost is true
end tell

rsync backup of a Mac

sudo /usr/local/bin/rsync -aREx --delete --exclude='.Spotlight-*' --exclude '/private/var/vm/*' [IP-address of Mac mini]::PowerBookBackup

Fix Terminal spacing bug

defaults write com.apple.Terminal FontWidthSpacing 1.003

Building tcpflow on OS X

curl -O http://www.circlemud.org/pub/jelson/tcpflow/tcpflow-0.21.tar.gz
tar -zxvf tcpflow-0.21.tar.gz
cd tcpflow-0.21
cp /usr/share/libtool/config.* . 
./configure --prefix=/usr/local
sudo make install
« Newer Snippets
Older Snippets »
Showing 1-5 of 5 total  RSS