How to quickly mount partitions when the need arises? A small AppleScript to help you out.
The need
No good comes without little drawbacks. When I swapped ODD with HDD, I noticed that it was quite a bit noisier than SSD and even compared to similar MBP with HDD in original bay (probably because ODD bay has a slot that lets noise out easily). So, now I tend to eject the secondary disk when I don’t need it, so my Mac can spin it down. All nice and dandy, but reattaching it when needed was a bit tedious.
The Script
set partList to {"Meedia", "BOOTCAMP"} choose from list partList with prompt "Choose partitions" with multiple selections allowed if result is not equal to false then repeat with part in result do shell script "diskutil mount " & part display dialog "Volume " & part & " mounted" end repeat end if
This script asks for which of the partitions to mount and then iterates with diskutil through the selection.
Download
You can copy-paste the above script to AppleScript Editor and adjust it to your needs, or you can download this as a ready to use application.
MountPartitions.zip

Right after I 
Setting up solid Ruby on Rails developer box based on Windows can be tedious task. More so than on other platforms, because vanilla Windows is meant for end user and lacks proper development tools that exist on other platforms. But fear not, there are many good people out there that have jumped through multitude of hoops to get different parts of the ecosystem working. All that remains is to build a solid foundation for developmer from them.

If you use iPhoto to manage your photos and you have deleted a bunch of them either because they weren’t so good or perhaps moved to other library using 








