Joined July 2012
·
Achievements
243 Karma
8,314 Total ProTip Views
Forked 50
Have a project with a thriving community of users that's been forked at least 50 times
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Opabinia
Started social coding on GitHub within 6 months of its first signs of life
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Lemmings 100
Write something great enough to have at least 100 watchers of the project
Forked 20
Have an established project that's been forked at least 20 times
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Python 3
Have at least three original repos where Python is the dominant language
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
This isn’t really programming, just using the shell. You need some basic skills, like how to navigate the terminal, creating files, editing files. There are some GUI-Tools like Lingon (http://www.peterborgapps.com/lingon/) to create LaunchDeamons, but you need at least to know how to execute a command. The file above is just a pure text file in the XML format. The ending is .plist, an Apple format for PropertyLists.
You could just execute the command in this file manually in the Terminal. All the deamon does is starting a service which triggers this script every time something in iTunes changes (there is a settings file in this folder, which gets written, when something changes):
/usr/bin/rsync --recursive --ignore-existing --compress --delete /Users/your-user-name/Music/iTunes/ /Volumes/your-external-hd-name/iTunes/
This uses rsync (a unix tool for syncing files), coping all folders recursive, only new ones, compressing it during transfer for speed and deleting files/folders not existing any more. It copies your iTunes library folder to the external harddrive to a folder "iTunes".
For automounting you could use AppleScript, just google and you will find a lot of scripts on StackOverflow or somewhere else.