Friday, January 27, 2012

WizTools.org Commons Lib: 0.3.0 Release

Commons Lib has undergone a revision, and is now enhanced with additional utility classes. The new version is available in public Maven repository:


<dependency>
  <groupId>org.wiztools.commons</groupId>
  <artifactId>wiztools-commons-lib</artifactId>
  <version>0.3.0</version>
</dependency>


Release notes available here: http://code.google.com/p/wiztools-commons-lib/wiki/ReleaseNotes.

WizTools.org projects dependent on Commons Lib will be updated in a phased manner.

Friday, January 13, 2012

Monday, January 9, 2012

Web Tester (online tool hosted in Google App Engine)

Web Tester is a online tool to host your HTML page temporarily in a web-url. The tool is configured to expire content after 24 hours of publishing.

This tool was developed for a specific use in a project I was involved with. In this project we used Schema.org defined rich snippets for SEO purposes. For testing this we required Google Rich Snippets Testing Tool. Unfortunately, Google's tool was available for use only for pages available in the internet. I had to enable my team to test content during development itself. So, I developed this tool wherein the development version of the pages can be web-enabled for immediate testing using Google's tool.

I am sure this is just one use of this tool. I am sure users could find many other interesting uses of it.

The source code of the tool is available here: http://code.google.com/p/gae-web-tester/.

Saturday, January 7, 2012

Cache Lib: A Cache Abstraction API

Cache Lib is a simple Cache abstraction API. The API defines two interfaces Cache and CacheManager. Using these interfaces, adapter implementations for existing Cache APIs can be developed. A sample adapter implementation for EhCache is provided in the source repository.