-
Recent Posts
Friends
- Aletheis
- Ardents En Zed
- Ari Gesher
- Benjy Feen
- Blogo Perea de Sid
- Cynical Mom
- dannyman
- Dave Dribin
- David Lemson
- Declan Fleming
- Geoff Raye
- Joe Gross
- Kathy Schrenk
- KC Lemson
- Keith Garner
- Liz's Pictures
- Lorah Gross
- Mark Notarus
- Marty McCarthy
- Matt Williams
- Mike Kolb
- Reasonable Goods
- Rebecca
- Rene Hendrix
- RJ
- Saul Pwanson
- Sean O'Connor
- Steven Engelhardt
- Tim Skirvin
- Tom D
Politics
Sports
Recent Comments
- Sambal : C++ Runtime Types: Find All Classes Derived From a Base Class (2) on C++ runtime class registration
- Generate diagnostic message for HRESULT codes? | The Largest Forum Archive on Get Error Message from HRESULT
- C++ Runtime Types: Find All Classes Derived From a Base Class (2) « Sambal on C++ runtime class registration
- JV on Juniper NetConnect on 64 bit linux
- Daniel Howard on Is Blagojavich the most corrupt …
Categories
Meta
Category Archives: tech
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
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
Javascript IDE
Jon Henning points out Aptana, which looks to be a pretty slick, free, javascript IDE. Definately on my list of things to check out.
Posted in tech
Leave a comment
Changing Habits
Well, I’ve been at my new job for a week and it’s ok so far. One of the major changes it’s brought about in my life is that I have to be there between 7:30 and 8am. If you’ve spent … Continue reading
Posted in tech
Leave a comment
webpy and authentication
I’ve been using the development (0.2 version) of web.py to develop my own web gallery. So far it’s pretty awesome. I miss inheritance from Cheetah’s templates but otherwise everything has worked really well. One thing that doesn’t really exist is … Continue reading