<?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>Ketan&#039;s Musings &#187; Java</title>
	<atom:link href="http://ketan.padegaonkar.name/tag/java/feed" rel="self" type="application/rss+xml" />
	<link>http://ketan.padegaonkar.name</link>
	<description>Where he blogs about his eclipse musings</description>
	<lastBuildDate>Fri, 23 Jul 2010 16:03:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Java and Unicode monday morning blues</title>
		<link>http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html</link>
		<comments>http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html#comments</comments>
		<pubDate>Mon, 25 May 2009 10:03:34 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=346</guid>
		<description><![CDATA[Monday morning excitement. JUnit tests that pass in the IDE fail in ant and cruise servers running on all platforms. java.lang.AssertionError: Expected: a string containing "... text=Ç..." got: "... text=Å..." My immediate reaction was the encoding used by the JVM. Setting the &#8220;file.encoding&#8221; system property to UTF-8 did not help. Running the ant based tests [...]]]></description>
			<content:encoded><![CDATA[<p>Monday morning excitement. JUnit tests that pass in the IDE fail in ant and cruise servers running on all platforms.</p>
<pre>
java.lang.AssertionError:
Expected: a string containing "... text=Ç..."
     got: "... text=Å..."
</pre>
<p>My immediate reaction was the encoding used by the JVM. Setting the &#8220;file.encoding&#8221; system property to UTF-8 did not help. Running the ant based tests in remote debugging mode also confirmed that the two strings were indeed different.</p>
<p>Since the tests used <a href="http://cobertura.sourceforge.net">Cobertura</a> for code coverage, the next step was to disable cobertura. Cobertura manipulates the generated byte code to add logging statements for code coverage. Still the same error.</p>
<p>The hidden gem seemed to be the <a href="http://github.com/ketan/swtbot/commit/94816d79932d2637158bb85196c9fc1b10aba555">-encoding</a> java compiler flag. Setting it to UTF-8 fixed the problem.</p>
<p>So the next time you have something fail because of an encoding issue, it could just be the compiler encoding and not just the encoding used in the runtime!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html&amp;title=Java+and+Unicode+monday+morning+blues" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html&amp;title=Java+and+Unicode+monday+morning+blues" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Java+and+Unicode+monday+morning+blues+-+http://bit.ly/baseuX&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html&amp;t=Java+and+Unicode+monday+morning+blues" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html&amp;title=Java+and+Unicode+monday+morning+blues&amp;description=Monday%20morning%20excitement.%20JUnit%20tests%20that%20pass%20in%20the%20IDE%20fail%20in%20ant%20and%20cruise%20servers%20running%20on%20all%20platforms.%0A%0A%0Ajava.lang.AssertionError%3A%0AExpected%3A%20a%20string%20containing%20%22...%20text%3D%C3%87...%22%0A%20%20%20%20%20got%3A%20%22...%20text%3D%C3%85...%22%0A%0A%0AMy%20immediate%20reaction%20was%20the%20encoding%20used%20by%20the%20JVM.%20Setting%20the%20%22file.encod" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2009/05/25/java-and-unicode-monday-morning-blues.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Growl notifications from ant</title>
		<link>http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html</link>
		<comments>http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 03:59:34 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[growl]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=234</guid>
		<description><![CDATA[If you use ant to run your builds, and would like to receive growl notifications about execution status, presenting Growl notifications for ant. All you need to do is execute: ant -listener com.google.code.ant.growlnotify.GrowlListener And you&#8217;ll need is the growlnotify binary somewhere on your path, this is bundled with the Growl binary dmg. Share this on [...]]]></description>
			<content:encoded><![CDATA[<p>If you use ant to run your builds, and would like to receive <a href="http://growl.info">growl</a> notifications about execution status, presenting <a href="http://code.google.com/p/ant-growlnotify/">Growl notifications for ant</a>.</p>
<p>All you need to do is execute:</p>
<p><code>ant -listener com.google.code.ant.growlnotify.GrowlListener</code></p>
<p>And you&#8217;ll need is the <a href="http://growl.info/documentation/growlnotify.php">growlnotify</a> binary somewhere on your path, this is bundled with the Growl binary dmg.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html&amp;title=Growl+notifications+from+ant" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html&amp;title=Growl+notifications+from+ant" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Growl+notifications+from+ant+-+http://bit.ly/arKWvL&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html&amp;t=Growl+notifications+from+ant" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html&amp;title=Growl+notifications+from+ant&amp;description=If%20you%20use%20ant%20to%20run%20your%20builds%2C%20and%20would%20like%20to%20receive%20growl%20notifications%20about%20execution%20status%2C%20presenting%20Growl%20notifications%20for%20ant.%0A%0AAll%20you%20need%20to%20do%20is%20execute%3A%0A%0Aant%20-listener%20com.google.code.ant.growlnotify.GrowlListener%0A%0AAnd%20you%27ll%20need%20is%20the%20growlnotify%20binary%20somewhere%20on%20your%20p" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/07/09/growl-notifications-from-ant.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Java 6 on the Mac, finally</title>
		<link>http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html</link>
		<comments>http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html#comments</comments>
		<pubDate>Wed, 30 Apr 2008 08:02:26 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=229</guid>
		<description><![CDATA[So apple finally provided this update after a long time. You can download the update from http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html. Read more about the release notes at http://docs.info.apple.com/article.html?artnum=307403 Share this on del.icio.us Post on Google Buzz Share this on Reddit Tweet This! Share this on Facebook Add this to DZone]]></description>
			<content:encoded><![CDATA[<p>So apple finally provided this update after a long time. You can download the update from <a href="http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html">http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html</a>.</p>
<p>Read more about the release notes at <a href="http://docs.info.apple.com/article.html?artnum=307403">http://docs.info.apple.com/article.html?artnum=307403</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html&amp;title=Java+6+on+the+Mac%2C+finally" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html&amp;title=Java+6+on+the+Mac%2C+finally" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Java+6+on+the+Mac%2C+finally+-+http://bit.ly/dD7YpW&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html&amp;t=Java+6+on+the+Mac%2C+finally" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html&amp;title=Java+6+on+the+Mac%2C+finally&amp;description=So%20apple%20finally%20provided%20this%20update%20after%20a%20long%20time.%20You%20can%20download%20the%20update%20from%20http%3A%2F%2Fwww.apple.com%2Fdownloads%2Fmacosx%2Fapple%2Fapplication_updates%2Fjavaformacosx105update1.html.%0A%0ARead%20more%20about%20the%20release%20notes%20at%20http%3A%2F%2Fdocs.info.apple.com%2Farticle.html%3Fartnum%3D307403" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/04/30/java-6-on-the-mac-finally.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mockito &#8211; one of the better mocks</title>
		<link>http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html</link>
		<comments>http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html#comments</comments>
		<pubDate>Wed, 05 Mar 2008 13:54:51 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[mockito]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html</guid>
		<description><![CDATA[Now that I&#8217;ve got your attention. Mockito is not just better than the other mock frameworks out there, it&#8217;s infact the best out there. After reading a lot of noise from fellow ThoughtWorkers in the recent past about Mockito. I decided to give a yet another mock framework a try. Here&#8217;s what I ended up [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;ve got your attention. Mockito is not just better than the <a href="http://jmock.org">other</a> <a href="http://easymock.org">mock</a> frameworks out there, it&#8217;s infact the best out there.</p>
<p>After reading a lot of noise from <a href="http://sirenian.livejournal.com/45524.html">fellow</a> <a href="http://monkeyisland.pl/2008/01/14/mockito/">ThoughtWorkers</a> in the recent past about <a href="http://mockito.googlecode.com/">Mockito</a>. I decided to give a yet another mock framework a try.</p>
<p>Here&#8217;s what I ended up writing:</p>
<pre>public class RecorderLauncherTest extends TestCase {

	private RecorderListener listener;
	private RecorderLauncher launcher;
	private TestRunner runner;

	protected void setUp() throws Exception {
		super.setUp();
		listener = mock(RecorderListener.class);
		runner = mock(TestRunner.class);
		launcher = new RecorderLauncher(runner, listener);
	}

	public void testNotifiesListenerWhenLauncherStarts() throws Exception {
		launcher.launch();
		verify(listener).start();
	}

	public void testNotifiesListenerWhenExecutionFails() throws Exception {
		stubVoid(runner).toThrow(new RuntimeException()).on().run();
		launcher.launch();
		verify(listener).start();
		verify(listener).error();
	}

	public void testNotifiesListenerWhenExecutionCompletes() throws Exception {
		launcher.launch();
		verify(listener).start();
		verify(listener).finish();
	}

}</pre>
<p>What&#8217;s even nicer is that it&#8217;s actual code and not strings, and refactoring tests do not break my mocks.</p>
<p>Good bye <a href="http://monkeyisland.pl/2008/02/01/deathwish/">expect-run-verify</a>, hello run-verify.</p>
<p>This looks, and reads far better than the JMock syntax, and it was love at first sight; I&#8217;m test-infested now. If you have not tried mockito as yet, I&#8217;d recommend that you do. I&#8217;m sure you&#8217;ll love it too.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html&amp;title=Mockito+-+one+of+the+better+mocks" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html&amp;title=Mockito+-+one+of+the+better+mocks" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Mockito+-+one+of+the+better+mocks+-+http://bit.ly/9wcA6z&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html&amp;t=Mockito+-+one+of+the+better+mocks" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html&amp;title=Mockito+-+one+of+the+better+mocks&amp;description=Now%20that%20I%27ve%20got%20your%20attention.%20Mockito%20is%20not%20just%20better%20than%20the%20other%20mock%20frameworks%20out%20there%2C%20it%27s%20infact%20the%20best%20out%20there.%0A%0AAfter%20reading%20a%20lot%20of%20noise%20from%20fellow%20ThoughtWorkers%20in%20the%20recent%20past%20about%20Mockito.%20I%20decided%20to%20give%20a%20yet%20another%20mock%20framework%20a%20try.%0A%0AHere%27s%20what%20I%20ended" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/03/05/mockito-one-of-the-better-mocks.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making Eclipse Plug-ins using JRuby or Groovy</title>
		<link>http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html</link>
		<comments>http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html#comments</comments>
		<pubDate>Fri, 27 Jul 2007 05:19:45 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[jruby]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html</guid>
		<description><![CDATA[Read more about using JRuby or Groovy to write eclipse plugins here: http://dev.eclipse.org/blogs/wayne/2007/07/26/making-eclipse-plug-ins-using-jruby-or-groovy/ Share this on del.icio.us Post on Google Buzz Share this on Reddit Tweet This! Share this on Facebook Add this to DZone]]></description>
			<content:encoded><![CDATA[<p>Read more about using JRuby or Groovy to write eclipse plugins here: <a href="http://dev.eclipse.org/blogs/wayne/2007/07/26/making-eclipse-plug-ins-using-jruby-or-groovy/">http://dev.eclipse.org/blogs/wayne/2007/07/26/making-eclipse-plug-ins-using-jruby-or-groovy/</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html&amp;title=Making+Eclipse+Plug-ins+using+JRuby+or+Groovy" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html&amp;title=Making+Eclipse+Plug-ins+using+JRuby+or+Groovy" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Making+Eclipse+Plug-ins+using+JRuby+or+Groovy+-+http://bit.ly/atFetk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html&amp;t=Making+Eclipse+Plug-ins+using+JRuby+or+Groovy" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html&amp;title=Making+Eclipse+Plug-ins+using+JRuby+or+Groovy&amp;description=Read%20more%20about%20using%20JRuby%20or%20Groovy%20to%20write%20eclipse%20plugins%20here%3A%20http%3A%2F%2Fdev.eclipse.org%2Fblogs%2Fwayne%2F2007%2F07%2F26%2Fmaking-eclipse-plug-ins-using-jruby-or-groovy%2F" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/07/27/making-eclipse-plug-ins-using-jruby-or-groovy.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding a Class in a ton of jars</title>
		<link>http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html</link>
		<comments>http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html#comments</comments>
		<pubDate>Thu, 26 Jul 2007 03:46:42 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[class-finder]]></category>
		<category><![CDATA[jar-finder]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html</guid>
		<description><![CDATA[This is how I do it. Create a script I call it findclass in some location on the path. /usr/local/bin is a good place, I prefer $HOME/bin. Remember to chmod this script to 755. #!/bin/bash find -iname "*.jar" &#124; xargs -i unzip -l {} &#124; less In case you are new to less, here&#8217;s how [...]]]></description>
			<content:encoded><![CDATA[<p>This is how I do it. Create a script I call it findclass in some location on the path. /usr/local/bin is a good place, I prefer $HOME/bin. Remember to chmod this script to 755.</p>
<pre>
#!/bin/bash
find -iname "*.jar" | xargs -i unzip -l {} | less
</pre>
<p>In case you are new to less, here&#8217;s how you navigate:<br />
1. To find a particular class say com.xyz.abc.MyClass, you type:
<pre>/com.xyz.abc.MyClass</pre>
<p>2. To find what jar contains this class, you type:
<pre>?Archive:</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html&amp;title=Finding+a+Class+in+a+ton+of+jars" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html&amp;title=Finding+a+Class+in+a+ton+of+jars" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Finding+a+Class+in+a+ton+of+jars+-+http://bit.ly/ar7iDR&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html&amp;t=Finding+a+Class+in+a+ton+of+jars" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html&amp;title=Finding+a+Class+in+a+ton+of+jars&amp;description=This%20is%20how%20I%20do%20it.%20Create%20a%20script%20I%20call%20it%20findclass%20in%20some%20location%20on%20the%20path.%20%2Fusr%2Flocal%2Fbin%20is%20a%20good%20place%2C%20I%20prefer%20%24HOME%2Fbin.%20Remember%20to%20chmod%20this%20script%20to%20755.%0A%0A%0A%23%21%2Fbin%2Fbash%0Afind%20-iname%20%22%2A.jar%22%20%7C%20xargs%20-i%20unzip%20-l%20%7B%7D%20%7C%20less%0A%0A%0AIn%20case%20you%20are%20new%20to%20less%2C%20here%27s%20how%20you%20navigate%3A%0A1.%20" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/07/26/finding-a-class-in-a-ton-of-jars.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CCTray in Java</title>
		<link>http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html</link>
		<comments>http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html#comments</comments>
		<pubDate>Fri, 11 May 2007 15:44:44 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[cctray]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[ThoughtWorks]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html</guid>
		<description><![CDATA[Akshay and me have been pairing since a couple of days to hack together a java version of CCTray written using SWT. This version of CCTray can connect to CCNET and cc.rb. A lot of folks use *nix and the existing CCTray is not much help. If you wish to use this pre-alpha release, feel [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://agileanalysis.blogspot.com/">Akshay</a> and me have been pairing since a couple of days to hack together a java version of <a href="http://confluence.public.thoughtworks.org/display/CCNET/CCTray">CCTray</a> written using <a href="http://eclipse.org/swt">SWT</a>. This version of CCTray can connect to CCNET and cc.rb.</p>
<p>A lot of folks use *nix and the existing CCTray is not much help.</p>
<p>If you wish to use this pre-alpha release, feel free to write back. It&#8217;s not all that configurable, so you have been warned <img src='http://ketan.padegaonkar.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oh, yes, BTW this release depends on <a href="http://jira.public.thoughtworks.org/browse/CCNET-899">issue #899</a> of CCNet dashboard, and <a href="http://jira.public.thoughtworks.org/browse/CCRB-118">issue #118</a> of CC.rb. You can vote for these issues to be resolved to see CCTray in Java released a bit earlier.</p>
<p>Finally a screenshot for those really interested.<br />
<a href='http://ketan.padegaonkar.name/files/2007/05/cctray.png' title='CCTray in Java'><img src='http://ketan.padegaonkar.name/files/2007/05/cctray-150x150.png' alt='CCTray in Java' /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html&amp;title=CCTray+in+Java" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html&amp;title=CCTray+in+Java" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+CCTray+in+Java+-+http://bit.ly/c6Ri7n&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html&amp;t=CCTray+in+Java" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html&amp;title=CCTray+in+Java&amp;description=Akshay%20and%20me%20have%20been%20pairing%20since%20a%20couple%20of%20days%20to%20hack%20together%20a%20java%20version%20of%20CCTray%20written%20using%20SWT.%20This%20version%20of%20CCTray%20can%20connect%20to%20CCNET%20and%20cc.rb.%0A%0AA%20lot%20of%20folks%20use%20%2Anix%20and%20the%20existing%20CCTray%20is%20not%20much%20help.%0A%0AIf%20you%20wish%20to%20use%20this%20pre-alpha%20release%2C%20feel%20free%20to%20write" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/05/11/cctray-in-java.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kill the mouse, and forget having to remember keyboard shourcuts :)</title>
		<link>http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html</link>
		<comments>http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html#comments</comments>
		<pubDate>Tue, 08 May 2007 04:43:12 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[intellij]]></category>
		<category><![CDATA[intellij-idea]]></category>
		<category><![CDATA[keyboard-shortcuts]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html</guid>
		<description><![CDATA[As an Eclipse plug-in developer who&#8217;s recently moved to using JetBrains&#8217;s IntelliJ Idea; I must agree that IntelliJ has excellent support for having to use the keyboard. I haven&#8217;t had to use the mouse much when I&#8217;m using IntelliJ. On the down side &#8212; I&#8217;ve to remember all the keyboard shortcuts. This is hardly an [...]]]></description>
			<content:encoded><![CDATA[<p>As an Eclipse plug-in developer who&#8217;s recently moved to using JetBrains&#8217;s IntelliJ Idea; I must agree that IntelliJ has excellent support for having to use the keyboard. I haven&#8217;t had to use the mouse much when I&#8217;m using IntelliJ.</p>
<p>On the down side &#8212; I&#8217;ve to remember all the keyboard shortcuts. This is hardly an option when there are a whole lot of keyboard shortcuts to remember, quite a lot keyboard shortcuts in most IDEs don&#8217;t really make much sense, and quite a few features do not even have keyboard shortcuts!</p>
<p>NO LONGER!</p>
<p>This Quick Assist (CTRL+3) feature in the <a href="http://download.eclipse.org/eclipse/downloads/drops/S-3.3M7-200705031400/eclipse-news-M7.html">latest version (3.3-M7)</a> of <a href="http://eclipse.org">eclipse</a> makes available ALL the UI elements &#8211; views, menu entries, even refactorings all in one single place. What&#8217;s more it supports CamelCaseCompletion. This combination makes for some kick-ass development.</p>
<p><a href='http://ketan.padegaonkar.name/files/2007/05/eclipse-33m7-ctrk3.jpg' title='Eclipse Quick Assist'><img src='http://ketan.padegaonkar.name/files/2007/05/eclipse-33m7-ctrk3.jpg' alt='Eclipse Quick Assist' /></a></p>
<p>Keyboard Shortcuts &#8212; what&#8217;s that ?</p>
<p>Oh yeah, and there&#8217;s support for a brand new refactoring &#8212; <a href="http://www.refactoring.com/catalog/introduceParameterObject.html">Introduce Parameter Object</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html&amp;title=Kill+the+mouse%2C+and+forget+having+to+remember+keyboard+shourcuts+%3A%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html&amp;title=Kill+the+mouse%2C+and+forget+having+to+remember+keyboard+shourcuts+%3A%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Kill+the+mouse%2C+and+forget+having+to+remember+keyboard+shourcuts+%3A%29+-+http://bit.ly/aZ7s3S&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html&amp;t=Kill+the+mouse%2C+and+forget+having+to+remember+keyboard+shourcuts+%3A%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html&amp;title=Kill+the+mouse%2C+and+forget+having+to+remember+keyboard+shourcuts+%3A%29&amp;description=As%20an%20Eclipse%20plug-in%20developer%20who%27s%20recently%20moved%20to%20using%20JetBrains%27s%20IntelliJ%20Idea%3B%20I%20must%20agree%20that%20IntelliJ%20has%20excellent%20support%20for%20having%20to%20use%20the%20keyboard.%20I%20haven%27t%20had%20to%20use%20the%20mouse%20much%20when%20I%27m%20using%20IntelliJ.%0A%0AOn%20the%20down%20side%20--%20I%27ve%20to%20remember%20all%20the%20keyboard%20shortcuts.%20Thi" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/05/08/kill-the-mouse-and-forget-having-to-remember-keyboard-shourcuts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Composite Logger for Ant</title>
		<link>http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html</link>
		<comments>http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html#comments</comments>
		<pubDate>Wed, 04 Apr 2007 13:54:36 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[logging]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html</guid>
		<description><![CDATA[When doing long builds in CruiseControl, ant build logs are generally logged using the XmlLogger. In certain cases, say for example when the build is taking longer than usual, and needs to be killed/stopped, the XmlLogger does not flush contents to disk. It would be nice if there is some sort of a composite logger [...]]]></description>
			<content:encoded><![CDATA[<p>When doing long builds in CruiseControl, ant build logs are generally logged using the XmlLogger.</p>
<p>In certain cases, say for example when the build is taking longer than usual, and needs to be killed/stopped, the XmlLogger does not flush contents to disk.</p>
<p>It would be nice if there is some sort of a composite logger than can chain any logger along with the XmlLogger.</p>
<p>I just happened to write one sometime today. This is the source code for a CompositeLogger that logs to a default logger, and the XmlLogger. This needs the environment variable ANT_LOG_PREFIX to be set (there&#8217;s no better way I can think of)</p>
<pre>
package com.thoughtworks.ant.logger;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Iterator;

import org.apache.tools.ant.BuildEvent;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.BuildLogger;
import org.apache.tools.ant.DefaultLogger;
import org.apache.tools.ant.XmlLogger;

/**
 * @author Ketan Padegaonkar
 */
public class CompositeAntLogger implements BuildLogger {

        private ArrayList       loggers;
        private String          logPrefix;
        private PrintStream     out;

        public CompositeAntLogger() {
                checkLogPrefix();
                createLoggers();
        }

        public void setEmacsMode(boolean emacsMode) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.setEmacsMode(emacsMode);
                }
        }

        public void buildFinished(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.buildFinished(event);
                }
        }

        public void buildStarted(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.buildStarted(event);
                }
        }

        public void messageLogged(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.messageLogged(event);
                }

        }

        public void targetFinished(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.targetFinished(event);
                }
        }

        public void targetStarted(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.targetStarted(event);
                }
        }

        public void taskFinished(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.taskFinished(event);
                }
        }

        public void taskStarted(BuildEvent event) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.taskStarted(event);
                }
        }

        public void setMessageOutputLevel(int level) {
                for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
                        BuildLogger logger = (BuildLogger) iterator.next();
                        logger.setMessageOutputLevel(level);
                }
        }

        public void setOutputPrintStream(PrintStream output) {
                // do nothing
        }

        public void setErrorPrintStream(PrintStream err) {
                // do nothing
        }

        private void createLoggers() {
                loggers = new ArrayList();
                try {
                        loggers.add(createDefaultLogger());
                        loggers.add(createXmlLogger());
                } catch (FileNotFoundException e) {
                        throw new BuildException("The loggers could not open the file", e);
                }
        }

        private void checkLogPrefix() {
                logPrefix = System.getenv("ANT_LOG_PREFIX");
                if (logPrefix == null || logPrefix.trim().length() == 0)
                        throw new BuildException("You need to set the environment variable ANT_LOG_PREFIX.");
        }

        private DefaultLogger createDefaultLogger() throws FileNotFoundException {
                DefaultLogger logger = new DefaultLogger();
                out = new PrintStream(new FileOutputStream(logPrefix + ".txt"));
                logger.setOutputPrintStream(out);
                logger.setErrorPrintStream(out);
                return logger;
        }

        private XmlLogger createXmlLogger() throws FileNotFoundException {
                XmlLogger logger = new XmlLogger();
                out = new PrintStream(new FileOutputStream(logPrefix + ".xml"));
                logger.setOutputPrintStream(out);
                logger.setErrorPrintStream(out);
                return logger;
        }
}
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html&amp;title=Composite+Logger+for+Ant" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html&amp;title=Composite+Logger+for+Ant" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Composite+Logger+for+Ant+-+http://bit.ly/b8opeL&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html&amp;t=Composite+Logger+for+Ant" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html&amp;title=Composite+Logger+for+Ant&amp;description=When%20doing%20long%20builds%20in%20CruiseControl%2C%20ant%20build%20logs%20are%20generally%20logged%20using%20the%20XmlLogger.%0A%0AIn%20certain%20cases%2C%20say%20for%20example%20when%20the%20build%20is%20taking%20longer%20than%20usual%2C%20and%20needs%20to%20be%20killed%2Fstopped%2C%20the%20XmlLogger%20does%20not%20flush%20contents%20to%20disk.%0A%0AIt%20would%20be%20nice%20if%20there%20is%20some%20sort%20of%20a" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/04/04/composite-logger-for-ant.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Lotus Notes beta 8, and Eclipse</title>
		<link>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html</link>
		<comments>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:31:07 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[lotus_notes]]></category>
		<category><![CDATA[osgi]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html</guid>
		<description><![CDATA[I saw this post by ZX on Lotus Notes 8 based on the Eclipse platform. ZX says: &#8230; In the end, this is great news for Eclipse which now gets to interact with a whole new set of users and developers. Eclipse (OSGi) on clients&#8230; devices&#8230; servers&#8230; , what&#8217;s next? &#8230; OSGi is great on [...]]]></description>
			<content:encoded><![CDATA[<p>I saw <a href="http://mea-bloga.blogspot.com/2007/03/eclipse-and-lotus-notes.html">this post</a> by <a href="http://mea-bloga.blogspot.com">ZX</a> on <a href="http://lotus.com">Lotus Notes</a> 8 based on the <a href="http://eclipse.org">Eclipse</a> platform.</p>
<p>ZX says:</p>
<blockquote><p>
&#8230;<br />
In the end, this is great news for Eclipse which now gets to interact with a whole new set of users and developers.</p>
<p>Eclipse (OSGi) on clients&#8230; devices&#8230; servers&#8230; , what&#8217;s next?<br />
&#8230;
</p></blockquote>
<p>OSGi is great on my desktop, laptop, servers, even mobile phones. But lotus notes based on OSGi ? I&#8217;m a die hard Eclipse fan and developer. But when it comes to usability of the software that I have to use everyday I&#8217;m a tough guy to convince.</p>
<p>For another potshot at this installer (for now) it is about 673 MB, is packaged as a .tar (Anyone at IBM lotus notes packaging team heard about something called as gzip/bzip2?) The documentation (which is about a total of 3MB) comes as a separate download. While it is a good idea to package the documentation separately I wonder if the installer comes with some documentation.</p>
<p>I just hope that I do not have to go through all these <a href="http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html">pains</a> and <a href="http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html">musings</a> and <a href="http://ketan.padegaonkar.name/2007/03/22/some-more-rants-on-lotus-notes-70-on-ubuntu.html">some more pains</a> to install Lotus Notes 8. Especially after downloading something that is 673 MB.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;title=Lotus+Notes+beta+8%2C+and+Eclipse" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;title=Lotus+Notes+beta+8%2C+and+Eclipse" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40ketanpkr+Lotus+Notes+beta+8%2C+and+Eclipse+-+http://bit.ly/a9xTZM&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;t=Lotus+Notes+beta+8%2C+and+Eclipse" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;description=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
