Dorking Out on Web Design
I spent entirely too long putting this page together. But, I have to say, it's really slick. I use a master script in my home directory to dynamically generate the pages as you access them. So why don't you notice? Because I used the apache RewriteEngine to redirect urls to my script. Thus, when you type the url of this page (something like /personal/dork), it invisibly redirects you to /index.php?title=personal&id=dork. Then my php script constructs the page in real time, and sends it to your browser.
This has two huge advantages: the style is consistent across the website without any extra work, and adding a new subsection is very quick and easy. Also, it's just plain cool. If you don't understand why, you probably never will. (Though, by reading all the back archives of XKCD, you may begin to understand).
If you don't believe me, go ahead and try it. Type that line with the "?" and "&" after vanderplas/ in the address box up above. It will work. Then change the id. If the page doesn't exist, it will send you to my error page.)