Download. To run this:
$ java -jar re-test-0.3.0.jar
$ java -jar re-test-0.3.0.jar
Thanks to the latest committer of RESTClient @pilaftank, we now have a Mac OS X edition of RESTClient (with Mac compatible UI and key binding) for download.
A tiny new tool has been added to the WizTools.org mini project. This is a screen color picker application. It is written in Java and works in all major platforms. As always, this is shipped as a executable Jar.
jEdit is a popular programmer's text editor. To boost my productivity, I have written some basic macros for it. All the macros solve some common programming problems faced by programmers. Hope you find it useful.
The JSR-286 compatible portlet (tested in Liferay 5.2.3) for displaying videos in HTML5 <video> element is released. Download from java-portlets project site.
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.
Pomodoro Timer, a software tool to mimic the usage of Pomodoro Timer (aka Kitchen Timer) for practicing Pomodoro Technique is released. Screenshot:
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.
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
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.
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.
Download it!