Monday, July 31, 2006

All you people who have ever bought anything from Performance Bicycle, go write some reviews ;) Tell your friends.
I took a quick poll to prove a point - nearly everyone in the room was a product of public school education (myself included). So the opportunities weren't isolated to higher education. (Mr. Jobs followed up to make the reality more painful - showing how few of us were sending our children to public school.)
Jonathan Schwartz, Lunch with Prime Minister Tony Blair

Sunday, July 30, 2006

Firebug

Firebug is an awesome Firefox extension for web development that I've been late to discover. Recently I found out you could modify the source of a web page in place with the "Inspector" tool. It's handy for tweaking HTML/JS/CSS without having to redeploy/reupload/reload the page or whatever, and also helps when ordering wireless service from Cingular. I tried to get off a family plan and create my own account, but Cingular didn't want to let me register under a different zip code than my family's. The zip code was set in a readonly text input. Firebug allowed me to wipe the attribute, submit the form, and have it my way. Kind of like a disposable greasemonkey script. Never thought I'd use the extension in that context. Thanks Mr. Hewitt for helping me avoid make a call to Cingular support.

Friday, July 28, 2006

Java image manipulation

Achieving anti-aliased images through the standard Java libraries was very non-obvious. No matter what rendering hints or interpolation I used in either the java.awt.image or javax.media.jai packages, many edges came out jagged. Finally I found a solution, so I'll send some search engine juice their way, because I generate so much of it.

Update: If you're processing non-sRGB images, expect lousy performance on non-windows platforms (due to lack of hardware acceleration support).