About:
Google Profile
I'm Joe.
I'm a web developer, outdoor nut and internet geek living in San Francisco.
I'm human
Random Quotes
Photos
Friends
For Hire
Interesting News- Sugar: The Bitter Truth - UCTV - University of California Television June 14, 2010
- If It Was My Home - Visualizing the BP Oil Spill June 9, 2010
- YouTube - Yosemite Nature Notes - Episode 9 - Frazil Ice May 25, 2010
- Slashdot | Google PAC-MAN Cost 4.8M Person-Hours May 24, 2010
- Obama's Spending Cuts vs Bush's - The Daily Dish | By Andrew Sullivan May 23, 2010
- When Rewriting an App Actually Makes Sense May 22, 2010
- Japan Will Soon Launch Solar-Powered Spacecraft, "Ikaros" | Inhabitat - Green Design Will Save the World April 28, 2010
- Robots Working to Stop Oil Leak in Gulf of Mexico - NYTimes.com April 27, 2010
- NASA -Mystery of the Solar Tsunami--Solved November 25, 2009
- Green Box Makes Eating Pizza Environmentally Awesome April 22, 2009
Movies I’m watching Now
Recent FavoritesArchives
- January 2012
- September 2011
- July 2011
- November 2010
- October 2010
- May 2010
- May 2009
- April 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Category Archives: programming
Using Java’s HttpClient to send a PUT
After a lot of searching the net, I wrote this method a few weeks back to write a string (or file) to a web server using Java’s HttpClient. It seemed ridiculous that I couldn’t find an example to cut and … Continue reading
UTF Character encoding in MySQL
I’ve had on going issues with mySQL not defaulting to UTF8 and instead using Latin1 constantly. After searching around a bit on the mySQL forums, I seem to have found a series of settings that put a halt to the … Continue reading
Posted in programming, stoopid
Leave a comment
Teamcity status macro for Trac
I had a need to print the build status of our teamcity server in trac. After researching various solutions, I figured a trac macro would best fit. It was a surprisingly simple solution so I figured I would share it … Continue reading
XSL for Line breaking long words
I spent a few hours searching for, but had no luck in finding this. So I’m posting what I wrote! This XSL will put a zero length space character into any word longer then 20 characters in any text node … Continue reading
Posted in internet, programming, tech
Leave a comment
Technology Makes the instrument
The reactable, is a multi-user electronic music instrument with a tabletop tangible user interface. Several simultaneous performers share complete control over the instrument by moving physical objects on a luminous table surface.
Posted in culture, programming, tech
Leave a comment
.NET Domain Object validation through delegation
Over the years I’ve seen a dozen different ways to validate domain objects in any MVC framework. Everyone has got their own favorite method. I’ve recently been presented with the same problem again and recalled a particularly elegant solution I … Continue reading