Jan 22 2010
Jan 15 2010
Cool Way to Visualize Browser Statistics
Nov 08 2009
Hudson setup on CentOS
I was trying to setup Hudson on a CentOS server and I ran into a problem with OpenJDK not working with the captcha when registering users.
So I stumbled on my Joe’s article Configuring a Production Open BlueDragon Server. As a side note and I were in the same Pascal programming class in high school.
Oct 15 2009
Custom PuTTY Color Themes – igvita.com
Oct 06 2009
Returning List in JAXB
I was trying to figure out how to return a list in a response in JAXB. The answer was here
Here’s a code snip
@GET
public Response getProducts(@QueryParam("active")String active,@QueryParam("family")String family,@Context UriInfo ui) {
Response r = null;
try {
List
if (products.size() == 0) {
r = Response.status(404).build();
} else {
GenericEntity> genericProducts = new GenericEntity
>(products) {};
r = Response.ok().entity(genericProducts).build();
}
} catch (Exception e) {
throwInternalServerError(e);
}
return r;
}
Oct 06 2009
REST for toddlers [dive into mark]
Sep 19 2009
SparklePlus
We needed an update framework for one my projects on Mac. I found Sparkle which has been great. Sparkel is easy setup. I did had to write some custom code since our app isn’t in a bundle.
Recently I stumbled on SparklePlus which adds system profile collection. There is a overview here. This would be great for determining install base.
- 10.4 vs 10.5 vs 10.6
- PPC vs Intel
We also get some of this information via Google Analytics but this seems like it would be a more solid source of data.
Sep 16 2009
Music Teachers Helper
My wife recently setup a website here. It’s a great service for music teachers that helps with scheduling and billing.










