Wednesday, July 8, 2009

JavaDoc Jar Viewer

It has become a standard to distribute JavaDocs as Jar files. These distributions are handy when used with tools like Maven and your IDE. But what happens when you want to view it? We have to create a temporary directory to extract the Jar, then launch a browser to view the content. What a pain! Now we have a command-line tool to do these manual steps for you. Check out its documentation.

Wednesday, July 1, 2009

Pomodoro Timer 1.0 Released

Pomodoro Timer, a software tool to mimic the usage of Pomodoro Timer (aka Kitchen Timer) for practicing Pomodoro Technique is released. Screenshot:



Pomodoro Software Timer

Friday, June 26, 2009

Multi-threaded TCP portscan tool

We are happy to announce the availability of the new multi-threaded TCP port scan utility. Download the utility from Google Code. This is an executable Jar. Usage:




$ java -jar portscanner-cli-0.1.0.jar <hostname>


By default, 4 threads are spawned for verifying port availability of the destination host.

Thursday, June 18, 2009

Base64 Cli 1.0 Released

Base64 Cli 1.0, a commandline tool to encode and decode content using Base64 is released. This tool reads and writes to the standard input and standard output respectively.



Example usage:




$ java -jar base64-cli-1.0-jar-with-dependencies.jar < a.txt > a.txt.base64


For all commandline options:




$ java -jar base64-cli-1.0-jar-with-dependencies.jar -h

Wednesday, June 10, 2009

Tool to encode/decode URLs

Continuing our effort to quickly test standard Java APIs, we have published a new tool encode and decode URLs using java.net.URLEncoder and java.net.URLDecoder. Download it.



WizTools.org URLEncoder

Thursday, May 28, 2009

Java System Properties Displayer

I often found myself writing programs to print out the system property values in different environments. You know the standard public static void main programs. Today decided I will not write these types of programs again. Wrote a command-line tool to display all the System properties. The keys are ordered alphabetically for easy identification.



system-property-cli 1.0



Download it!

Thursday, April 23, 2009

Java Tool to test java.text.SimpleDateFormat Pattern

A new Swing tool to test java.text.SimpleDateFormat is available.



WizTools.org - java.text.SimpleDateFormat Tester