-
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
Author Archives: David Terrell
Happy First Day Of December
And how better to start the month than with a little poetry… Hello mailman my old friend, I see it’s the first again. And my mailing list passwords were written on the studio wall Email ‘em all It’s the sound… … Continue reading
Posted in random
Leave a comment
Get Error Message from HRESULT
Need to look up the error string for an HRESULT code? Here’s some code to do so. #include <comdef.h> CString GetMsgForHresult(HRESULT hr) { CString cs; CString msg = _com_error(hr).ErrorMessage(); cs.Format(_T(“Error 0x%08x: %s”), hr, msg); return cs; }
Posted in tech
2 Comments
PHP Debugging Tip
Page not loading right? Try putting this at the top inside a <?php block… print_r( $_REQUEST); I was having a problem where http://meat.net/2005/11/xml-js-freeze/ was coming up blank. Turns out the following regexp is at fault: RewriteRule ^(.+).xml /index.php?feed=$1 [QSA,L] I’ve … Continue reading
Posted in tech
10 Comments
Bill O'Reilly's Enemies List
I can only hope this is enough to get on it…
Posted in politics
Leave a comment
microsoft XML DOMDocument and javascript error
I’m encountering a weird error where an embedded copy of IE is failing to load XML properly. Here’s the best approximation I have of what we’re doing:
Posted in tech
2 Comments
Target Boycott
I’ve just sent this message to Target customer service, regarding their decision to allow pharmacists to refuse to fill legal Plan B prescriptions: I’m a frequent shopper at the Evanston Target near my house. Until and unless your current Plan … Continue reading
Don't trust John Lott
Tim Lambert explains why not to trust John Lott.
Posted in politics
Leave a comment
Baseball and SQL
Two great tastes that go great together. One of the greatest things ever is the Lanham Baseball Database. It’s a database of all baseball statistics since 1871, suitable for random SQL queries. Not quite pitch by pitch, but season by … Continue reading
Posted in baseball, sports, tech
Leave a comment