Author Archives: David Terrell

Recursion considered harmful

Well, in this case it was real bad. Here’s a tip: When using the “RSS widget” in WordPress, do not point it to any web-based feed. While moving files around, I managed to make the Gallery RSS feed completely nonexistant, … Continue reading

Posted in meta, tech | Leave a comment

The UnSuggester

Brad DeLong links to LibraryThing’s UnSuggester. Put a book you liked, and it’ll tell you what books you probably want to avoid. Sample search: If you liked Winning, by Jack Welch, you’ll probably hate Watership Down, The Princess Bride, stuff … Continue reading

Posted in random | Leave a comment

Web-based Feed Readers

To be able to tote subscription/read status between machines and OSes, I’ve switched (mostly) from using a desktop feed aggregator to using the web-based ones. So far, I haven’t found one I’m really happy with. Bloglines: The good: single-key navigation … Continue reading

Posted in tech | 2 Comments

Theo's First snow day

Whoot! Figures I’d have to work.

Posted in random | 1 Comment

WordPress, ETag, Last-Modified

WordPress has some pretty crappy code buried in it… the curse of PHP. I can’t complain too much because it’s still a very robust platform with a good community and the best anti-spam plugin. That having been said, WordPress has … Continue reading

Posted in meta, tech | Leave a comment

Sandbox Skins

Keith is leaping into the breach with Sandbox. Welcome. Two tips: The first is that you can use CSS to do the header image without altering the base theme files. The second is that when you do edit your custom … Continue reading

Posted in meta, tech | Leave a comment

Exchange students

I’ve known some in my time… some of which were hosted by people who I thought had no business hosting. But trust me, all of that is forgiven after reading about the strange adventure of Michel Gromek, Polish exchange student: … Continue reading

Posted in politics | 2 Comments

DVOA chart

For those of you into football stats, the killer stat is DVOA (and its friends, VOA, DPAR, PAR, and DAVE). It’s nice to be able to look at DVOA on a graphical basis, so I cranked out some javascript using … Continue reading

Posted in football, sports, tech | 3 Comments

All Atom, All the time

RSS is a crappy spec, so this blog is now 100% atom. And instead of serving up the same feed on a half dozen different URLs, I’m now redirecting all the feeds to /feed/atom. Dang ole feeds.

Posted in meta, tech | Leave a comment

boost::bind makes my brain hurt

why? typedef … K; typedef std::map<k , HANDLE> map_type; map_type map_; … std::for_each(map_.begin(), map_.end(), boost::bind(&map_type::value_type::second, _1)); // this works std::for_each(map_.begin(), map_.end(), boost::bind(WSACloseEvent, boost::bind(&map_type::value_type::second, _1))); // this barfs inside boost::bind … incomplete type

Posted in tech | Leave a comment