Like Growl? Too cheap to pay $1.99 for the latest update?
Spring JSON @RequestBody
What I learned today:
http://forum.springsource.org/showthread.php?85532-HttpMediaTypeNotSupportedException-amp-JSON
Spring/Jackson JSON un/marshalling does not work with inner-classes.
mysqldump without table locks and single line inserts
Since I always forget:
mysqldump –extended-insert=false –host <host> –skip-lock-tables -u <user> –password <database> <table> > file.sql
SSH Tunnelling
ssh -f user@HOST -L from_port:to_ip:to_port -N
eg:
ssh -f blah@home.chear.ca -L 8080:192.168.1.1:80 -N
Simple MySQL export/import
mysql -e 'SELECT * FROM table' > out.txt
load data local infile 'out.txt' into table 'some_table'