GeneralProgramming

Great Hackers

A great essay from Paul Graham. He says some controversial things, but my sense is that he's right about many of them. Like how hackers don't wanted to be managed by non-hackers and how hackers want interesting problems and abhor...
General

Handy bash function

Handy function that I found at http://www.steve.org.uk/Reference/shell.html: function range () { if [ $1 -ge $2 ]; then return fi a=$1 b=$2 while [ $a -le $b ]; do echo $a; a=$(($a+1)); done }...