Monthly Archives: December 2006

Cleaning Up After SVN

If you’re using SVN for keeping your source safe for web apps, you may notice uploading the working folder also uploads all those hidden .svn folders. Not ideal.
Here’s the shell command to delete all those .svn files from your working directory:
find -d “your/working/directory” -name “.svn” -exec rm -r ‘{}’ \; -print
The -d flag (-depth) means [...]

cmd+tab+scroll wheel = crazy delicious

I usually hit cmd+tab and then mouse over the app icon i’m looking for and let go to switch to that app; it’s faster than cmd+tab+tab+(repeat for every app open). I randomly (read: accidentally) scrolled with the mouse while while doing this once, and surprisingly, it scrolled through the app icons.
I had no idea [...]

Copyright © 2007 prototypecreative.com. All rights reserved.