<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>indiWiz.com &#187; wiztools</title>
	<atom:link href="http://indiwiz.com/tag/wiztools/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WizTools.org: A history!</title>
		<link>http://indiwiz.com/2009/11/24/wiztools-org-a-history/</link>
		<comments>http://indiwiz.com/2009/11/24/wiztools-org-a-history/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 05:18:14 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[wiztools]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=584</guid>
		<description><![CDATA[Writing OpenSource code has been one of my priorities. I have been doing it for years now. This is the story of how it all began. 2003 Before joining in a tech job, many people told me how routine tech job is. People give requirements, and the techies translate it to working code. This was [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Writing OpenSource code has been one of my priorities. I have been doing it for years now. This is the story of how it all began.</p>
<h4>2003</h4>
<p>Before joining in a tech job, many people told me how routine tech job is. People give requirements, and the techies translate it to working code. This was frightening to me! So I decided, I will do all the mundane programming work quickly using automated scripts. I developed a TextEditor for this purpose. It was completely scriptable using BeanShell. This probably is my first OpenSource application. The Java package name started with com.indiwiz.*. The application was shared to the world from my site <em>indiWiz.com</em>.</p>
<h4>2005-6</h4>
<p>I had a huge collection of porn, and I was sharing my computer with my family. The system had dual boot with both Windows and Linux. I wanted a cross-platform application which would enable me to encrypt and decrypt my precious downloads. During free moments in office, I started exploring encryption and security. This resulted in the <a href="http://wizcrypt.wiztools.org/">WizCrypt</a> project. I learned a great deal when writing this project. This is the only project I have worked on which involved file-format design. For this project I did not want to have the package name starting with <em>com.indiwiz.*</em>. I found the <em>com</em> to be misleading of the purpose. I wanted a package name starting with <em>org</em>. Luckily, I came up with the name <a href="http://wiztools.org/">WizTools.org</a>, and more luckily, it was available for registration. I grabbed it. Since that date, all my OpenSource work has been branded under this label.</p>
<h4>2007</h4>
<p>At this time I was working in SpikeSource with an interesting team. I started <a href="http://rest-client.googlecode.com/">RESTClient</a> project for testing RESTful WebServices. This was developed in collaboration with Ravi Subramanian (we lost Ravi in a accident in 2008). His sudden demise was a shock to me. This is the most popular product from the WizTools.org stable. It has the maximum community inputs. To broadcast updates of the WizTools.org project, I anticipated a need for a dedicated blog. Thus was <a href="http://wiztools.blogspot.com/">wiztools.blogspot.com</a> born.</p>
<h4>Present</h4>
<p>This is the period during which huge amount of effort and time was spent by me to stabilize and popularize RESTClient. I also started the <a href="http://wiztools.googlecode.com/">WizTools.org mini-projects</a>. The mini-projects was created to host all simpler applications without involving the cost (in terms of time) of creating a new project and associated repositories and mailing lists. At the time of writing, the mini-project hosts around 14 released tools/components, and few other productivity tools like JEdit macros and bookmarklets. We also have started some interesting new projects like <a href="http://java-portlets.googlecode.com/">Java Portlets</a> (reusable JSR-286 portlets) and <a href="http://the-great-wall.googlecode.com/">The Great Wall</a> (micro-blogging web-application) recently.</p>
<p>Now, looking back at the projects available at WizTools.org, I recollect beautiful stories of my own needs for these projects. And the efforts my collaborators and I put to bring them in place.</p>
<div class="shr-publisher-584"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/11/24/wiztools-org-a-history/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting up URL Shortening Servlet behind Apache</title>
		<link>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/</link>
		<comments>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 10:33:56 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[wiztools]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=335</guid>
		<description><![CDATA[Today I worked on setting up my URL redirection servlet (download) in our office to share internal links with my colleagues. I deployed it in JBoss. When I deployed this module as r.war, JBoss complained saying java.lang.IllegalArgumentException: Prefix string too short. I renamed the war as redir.war and deployed it. When I tried accessing the [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Today I worked on setting up my <a href="http://code.google.com/p/wiztools/source/browse/redir-servlet/trunk/README.txt">URL redirection servlet</a> (<a href="http://wiztools.googlecode.com/">download</a>) in our office to share internal links with my colleagues. I deployed it in JBoss. When I deployed this module as <tt>r.war</tt>, JBoss complained saying <tt>java.lang.IllegalArgumentException: Prefix string too short</tt>. I renamed the war as <tt>redir.war</tt> and deployed it.</p>
<p>When I tried accessing the JBoss URL from another system in the network, I found that JBoss was not accepting connection from other systems in the network. Then I configured Apache to use <em>ProxyPass</em>:</p>
<pre>
ProxyPass /r http://localhost:1111/redir
ProxyPassReverse /r http://localhost:1111/redir
</pre>
<p><br/></p>
<p>Note: JBoss was listening in port 1111 in my case. I added this to my apache configuration and restarted Apache. Now I have a cute URL shortening service which is accessible as <em>http://myhost/r/&lt;string&gt;</em>.</p>
<div class="shr-publisher-335"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WizTools.org tool to test java.text.SimpleDateFormat pattern</title>
		<link>http://indiwiz.com/2009/04/23/wiztoolsorg-tool-to-test-javatextsimpledateformat-pattern/</link>
		<comments>http://indiwiz.com/2009/04/23/wiztoolsorg-tool-to-test-javatextsimpledateformat-pattern/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 16:42:15 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[wiztools]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=268</guid>
		<description><![CDATA[Download it!]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://code.google.com/p/wiztools/downloads/list">Download it</a>!</p>
<p><a href="http://www.flickr.com/photos/subwiz/3468145189/" title="WizTools.org - java.text.SimpleDateFormat Tester by subWiz, on Flickr"><img src="http://farm4.static.flickr.com/3498/3468145189_fdfe3a6492.jpg" width="500" height="77" alt="WizTools.org - java.text.SimpleDateFormat Tester" /></a></p>
<div class="shr-publisher-268"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/04/23/wiztoolsorg-tool-to-test-javatextsimpledateformat-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

