GeneralWindows

USM is pretty cool

What is USM? Answer here I installed the USM Windows Reference Installer from this page and chose My Yahoo! as my RSS reader. Now I can click feed:// URLs (like this one) and they get added automatically. That's pretty cool...
Programming

Validation

I read somewhere that all human beings are searching for validation. Well, I think that I have found it: :-) w3c (X)HTML validator w3c CSS validator contentquality.com "cynthia" validator...
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 }...