Jan 22 2010

RPX

Published by tom under Web

Setup RPX with this plugin.

Post to Twitter Tweet This Post

No responses yet

Jan 15 2010

Cool Way to Visualize Browser Statistics

Published by tom under Web

Browser Market Share

Post to Twitter Tweet This Post

No responses yet

Nov 08 2009

Hudson setup on CentOS

Published by tom under Hudson, Java

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.

Post to Twitter Tweet This Post

No responses yet

Oct 15 2009

Abstract Path: PowerMenu

Published by tom under Uncategorized

Abstract Path: PowerMenu.

Post to Twitter Tweet This Post

No responses yet

Oct 15 2009

Custom PuTTY Color Themes – igvita.com

Published by tom under Uncategorized

Custom PuTTY Color Themes – igvita.com.

Post to Twitter Tweet This Post

No responses yet

Oct 06 2009

Returning List in JAXB

Published by tom under Java

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 products = getProducts(active,family);
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;
}

Post to Twitter Tweet This Post

No responses yet

Oct 06 2009

REST for toddlers [dive into mark]

Published by tom under Uncategorized

REST for toddlers [dive into mark].

Post to Twitter Tweet This Post

No responses yet

Oct 06 2009

Visualizing SFPD’s “Operation Safe Schools” | SpatialKey blog

Published by tom under Uncategorized

Visualizing SFPD’s “Operation Safe Schools” | SpatialKey blog.

Post to Twitter Tweet This Post

No responses yet

Sep 19 2009

SparklePlus

Published by tom under Cocoa

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.

Post to Twitter Tweet This Post

No responses yet

Sep 16 2009

Music Teachers Helper

Published by tom under Uncategorized

My wife recently setup a website here. It’s a great service for music teachers that helps with scheduling and billing.

Post to Twitter Tweet This Post

No responses yet

Next »