Category Archives: code

GoogleClickUntracker

So I decided that I didn’t want Google to track my clicks. Download the safari extension here.

Theme update

Found a site on one of my rss feeds flavors.me and really like the concept that they have.
Hence, updated the theme on my site (shamelessly copied the idea) but did learn some cool new tricks while doing so. (Notice the background image automatically stretches while maintaining its aspect ratio on different browser sizes on [...]

Auto mount drives on Leopard with AppleScript

tell application “Finder”
if exists disk “Shared_Vol” then
else
mount volume “afp://user@myserver.com/Shared_Vol”
end if
if exists disk “input” then
else
mount volume “smb://user:passw0rd@mywindowsbox.com/input”
end if
end tell

To run it from command line or crontab:

osascript theAppleScript.scpt