I'm in a hospital in Spain and my MacBook was stolen.
Now I bought a new one and need to configure it. I have an external hard drive that backup everything using Time Machine, but I don't want all the crap I had in the old one.
| #!/bin/bash | |
| # To create in [.babun/]cygwin/usr/local/bin/subl with chmod +x | |
| ARGS="" | |
| while test $# -gt 0 | |
| do | |
| ARGS="$ARGS ${1#/cygdrive/[a-zA-Z]}"; # Remove /cygdrive and disk letter from the path | |
| shift | |
| done |
| /** | |
| * Object Extending Functionality | |
| */ | |
| var extend = function(out) { | |
| out = out || {}; | |
| for (var i = 1; i < arguments.length; i++) { | |
| if (!arguments[i]) | |
| continue; | |
| for (var key in arguments[i]) { |
I'm in a hospital in Spain and my MacBook was stolen.
Now I bought a new one and need to configure it. I have an external hard drive that backup everything using Time Machine, but I don't want all the crap I had in the old one.