April 21st, 2008
- Download the Tube Map pdf from TFL
- Save it somewhere you won’t delete it, eg ~/Documents/
- Spotlight search for a tube map, eg Command-space, Tufnell Park
Spotlight will open the map with the Tufnell Park highlighted!
So now you know where it is and what line to get.
OS X is awesome.
1 Comment »
March 26th, 2008
- Save this script to /usr/local/bin/svn (ie. c:\cygwin\usr\local\bin\svn)
- Ammend the svn variable
- chmod u+x /usr/local/bin/svn
As long as /usr/local/bin is first in the path, you can use TortoiseSVN for the good bits, and the command line svn client for the rest.
# Use TortoiseSVN from the cli
# Public Domain, Max Howell 2008
path=$2
test -z $path && path=.
test -e $path && path=`cygpath -wa $path`
svn='/cygdrive/c/dev/tools/TortoiseSVN/bin/TortoiseProc.exe /notempfile'
case $1 in
up | update) $svn /command:update /path:"$path";;
ci | commit) $svn /command:commit /path:"$path";;
log) $svn /command:log /path:"$path";;
props) $svn /command:properties /path:"$path";;
*) /usr/bin/svn $@;;
esac
Respond »