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 }...
General

Fixed my RSS feeds

I had noticed today that my RSS feeds were working in my browser but FeedBurner and Feed Validator were reporting 404s. I did some searching and found bug 903 that recommended this change: --- wp-blog-header.php.2005-03-14-113423...