<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My Ramblings</title>
	<atom:link href="http://mail2vks.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mail2vks.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Apr 2009 02:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='mail2vks.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/502e03ac5283db8d36c949e486e5f585?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>My Ramblings</title>
		<link>http://mail2vks.wordpress.com</link>
	</image>
			<item>
		<title>JAX WS 2.1 based Web Service on Tomcat 5.5.*</title>
		<link>http://mail2vks.wordpress.com/2009/04/05/jax-ws-tomcat-55/</link>
		<comments>http://mail2vks.wordpress.com/2009/04/05/jax-ws-tomcat-55/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 02:20:07 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Apache Ivy]]></category>
		<category><![CDATA[JAX WS 2.1]]></category>
		<category><![CDATA[Tomcat 5.5]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=88</guid>
		<description><![CDATA[I have implemented JAX WS 2.1 based Web Service on Tomcat 5.5.27. This has been done in Eclipse using Apache Ivy for dependency management. I am only publishing the ivy.xml here because dependency resolution was a big headache for me, as artifacts in maven repository are out of sync.
Ivy Descriptor:

&#60;?xml version=&#34;1.0&#34; encoding=&#34;ISO-8859-1&#34;?&#62;
&#60;ivy-module version=&#34;2.0&#34;&#62;
	&#60;info organisation=&#34;com.learning&#34; module=&#34;testWebProject&#34; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=88&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have implemented JAX WS 2.1 based Web Service on Tomcat 5.5.27. This has been done in Eclipse using Apache Ivy for dependency management. I am only publishing the ivy.xml here because dependency resolution was a big headache for me, as artifacts in maven repository are out of sync.</p>
<p>Ivy Descriptor:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;
&lt;ivy-module version=&quot;2.0&quot;&gt;
	&lt;info organisation=&quot;com.learning&quot; module=&quot;testWebProject&quot; status=&quot;integration&quot;&gt;
	&lt;/info&gt;
	&lt;configurations&gt;
		&lt;conf name=&quot;runtime&quot; /&gt;
	&lt;/configurations&gt;
	&lt;dependencies&gt;
		&lt;dependency org=&quot;com.sun.xml.ws&quot; name=&quot;jaxws-rt&quot; rev=&quot;2.1.5&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com.sun.xml.ws&quot; name=&quot;jaxws-tools&quot; rev=&quot;2.1.5&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com.sun.xml.bind&quot; name=&quot;jaxb-impl&quot; rev=&quot;2.1.9&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com.sun.xml.bind&quot; name=&quot;jaxb-xjc&quot; rev=&quot;2.1.9&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;javax.xml.ws&quot; name=&quot;jaxws-api&quot; rev=&quot;2.1&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com.sun.xml.stream.buffer&quot; name=&quot;streambuffer&quot;
			rev=&quot;0.9&quot; conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com.sun.xml.stream&quot; name=&quot;sjsxp&quot; rev=&quot;1.0&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;org.jvnet.staxex&quot; name=&quot;stax-ex&quot; rev=&quot;1.0&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;javax.jws&quot; name=&quot;jsr181-api&quot; rev=&quot;1.0-MR1&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;javax.xml.soap&quot; name=&quot;saaj-api&quot; rev=&quot;1.3&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;com/sun/xml/ws&quot; name=&quot;webservices-rt&quot; rev=&quot;1.4&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
		&lt;dependency org=&quot;javax.annotation&quot; name=&quot;jsr250-api&quot; rev=&quot;1.0&quot;
			conf=&quot;runtime-&gt;default&quot; /&gt;
	&lt;/dependencies&gt;
&lt;/ivy-module&gt;
</pre>
<p>Ivy Settings:</p>
<pre class="brush: xml;">
&lt;ivysettings&gt;

	&lt;property name=&quot;ivy.default-resolver&quot; value=&quot;development-chain&quot;
		override=&quot;false&quot; /&gt;

	&lt;include url=&quot;${ivy.default.settings.dir}/ivysettings-public.xml&quot; /&gt;
	&lt;include url=&quot;${ivy.default.settings.dir}/ivysettings-shared.xml&quot; /&gt;
	&lt;include url=&quot;${ivy.default.settings.dir}/ivysettings-local.xml&quot; /&gt;
	&lt;include url=&quot;${ivy.default.settings.dir}/ivysettings-main-chain.xml&quot; /&gt;
	&lt;include url=&quot;${ivy.default.settings.dir}/ivysettings-default-chain.xml&quot; /&gt;

	&lt;settings defaultResolver=&quot;${ivy.default-resolver}&quot; /&gt;

	&lt;resolvers&gt;
		&lt;ibiblio name=&quot;java.net.1&quot; root=&quot;http://download.java.net/maven/1/&quot;
			pattern=&quot;[organization]/jars/[module]-[revision].[ext]&quot; /&gt;
		&lt;ibiblio name=&quot;java.net.2&quot; root=&quot;http://download.java.net/maven/2/&quot;
			pattern=&quot;[organization]/[module]/[revision]/[module]-[revision].[ext]&quot; /&gt;
		&lt;chain name=&quot;development-chain&quot; returnFirst=&quot;true&quot;&gt;
			&lt;resolver ref=&quot;local&quot; /&gt;
			&lt;resolver ref=&quot;java.net.1&quot; /&gt;
			&lt;resolver ref=&quot;java.net.2&quot; /&gt;
			&lt;resolver ref=&quot;main&quot; /&gt;
		&lt;/chain&gt;
	&lt;/resolvers&gt;
&lt;/ivysettings&gt;
</pre>
<a name="pd_a_1518379"></a><div class="PDS_Poll" id="PDI_container1518379" style="display:inline-block;"></div><script type="text/javascript" language="javascript" charset="utf-8" src="http://static.polldaddy.com/p/1518379.js"></script>
		<noscript>
		<a href="http://answers.polldaddy.com/poll/1518379/">View This Poll</a><br/><span style="font-size:10px;"><a href="http://www.polldaddy.com">polls</a></span>
		</noscript>
<p style="text-align:left;font-size:8pt;">Add to: <a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://mail2vks.wordpress.com/2009/04/05/jax-ws-tomcat-55" target="_blank">Facebook</a> | <a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;title=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Digg</a> | <a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;title=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Del.icio.us</a> | <a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;title=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Stumbleupon</a> | <a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;title=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Reddit</a> | <a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;Title=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Blinklist</a> | <a title="Add to Twitter" href="http://twitter.com/home/?status=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*+%40+http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55" target="_blank">Twitter</a> | <a title="Add to Technorati" href="http://www.technorati.com/faves?add=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55" target="_blank">Technorati</a> | <a title="Add to Furl" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;t=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Furl</a> | <a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2009%2F04%2F05%2Fjax-ws-tomcat-55&amp;h=JAX%20WS%202.1%20based%20Web%20Service%20on%20Tomcat%205.5.*" target="_blank">Newsvine</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=88&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2009/04/05/jax-ws-tomcat-55/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Almost clocked 25k on my bike</title>
		<link>http://mail2vks.wordpress.com/2009/03/21/almost-clocked-25k-on-my-bike/</link>
		<comments>http://mail2vks.wordpress.com/2009/03/21/almost-clocked-25k-on-my-bike/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 16:33:45 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2009/03/21/almost-clocked-25k-on-my-bike/</guid>
		<description><![CDATA[I reached home and I was hoping that u would have completed silver jubilee riding my bike. That was not the case. Here is the reading.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=84&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I reached home and I was hoping that u would have completed silver jubilee riding my bike. That was not the case. Here is the reading.</p>
<p><img src="http://mail2vks.files.wordpress.com/2009/03/reading.jpg?w=497&#038;h=662" alt="reading" title="reading" width="497" height="662" class="alignnone size-full wp-image-85" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=84&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2009/03/21/almost-clocked-25k-on-my-bike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://mail2vks.files.wordpress.com/2009/03/reading.jpg" medium="image">
			<media:title type="html">reading</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Video and Chat on iphone treats iphone as Power PC Mac</title>
		<link>http://mail2vks.wordpress.com/2009/03/21/google-video-and-chat-on-iphone-treats-iphone-as-power-pc-mac/</link>
		<comments>http://mail2vks.wordpress.com/2009/03/21/google-video-and-chat-on-iphone-treats-iphone-as-power-pc-mac/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 14:12:19 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2009/03/21/google-video-and-chat-on-iphone-treats-iphone-as-power-pc-mac/</guid>
		<description><![CDATA[Gmail Video &#38; Chat treated my Iphone as Power PC. For once I am happy. I really want to own a Mac.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=82&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Gmail Video &amp; Chat treated my Iphone as Power PC. For once I am happy. I really want to own a Mac.</p>
<p><a href="http://mail2vks.files.wordpress.com/2009/03/p-480-320-e2421779-2f09-4a40-be57-6f28227ceec5.jpeg"><img src="http://mail2vks.files.wordpress.com/2009/03/p-480-320-e2421779-2f09-4a40-be57-6f28227ceec5.jpeg?w=200&#038;h=300" alt="" width="200" height="300" class="alignnone size-full wp-image-364" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=82&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2009/03/21/google-video-and-chat-on-iphone-treats-iphone-as-power-pc-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://mail2vks.files.wordpress.com/2009/03/p-480-320-e2421779-2f09-4a40-be57-6f28227ceec5.jpeg" medium="image" />
	</item>
		<item>
		<title>Junit ignore test cases, classes using @ignore</title>
		<link>http://mail2vks.wordpress.com/2008/12/16/junit-ignore-test-cases-classes-using-ignore/</link>
		<comments>http://mail2vks.wordpress.com/2008/12/16/junit-ignore-test-cases-classes-using-ignore/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 11:11:25 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[ignore interface]]></category>
		<category><![CDATA[junit]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=72</guid>
		<description><![CDATA[I am a huge fan of Junit 4.5. It is very simple in its approach and test cases are simpler than ever before. I liek the idea of embedding unit test cases within the same class. With junit 4.5 there needs to be a single @Test annotation before the method and thats what is required [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=72&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am a huge fan of Junit 4.5. It is very simple in its approach and test cases are simpler than ever before. I liek the idea of embedding unit test cases within the same class. With junit 4.5 there needs to be a single @Test annotation before the method and thats what is required to run it as a junit test case. I use ant&#8217;s junit task to execute my tests. </p>
<p>Recently i ran into a small issue which was related to interfaces, abstract classes and classes with no junit tests present in the source directory. I had an option to include only test classes in a fileset but i preferred using batchtest, both are ant resource collections.</p>
<p>Ant will always return an error in these cases. I found a way around by using @ignore for all classes which ant junit should ignore. Anyone having a better way ?</p>
<pre class="brush: java;">

package com.vivek.design.patterns;

import org.junit.Ignore;

@Ignore(&quot;interface&quot;)

public interface FlyBehaviour {

void fly();

}
</pre>
<p>Class above is from Head First Design Patterns</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=72&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/12/16/junit-ignore-test-cases-classes-using-ignore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Accessing Oracle without Oracle Client Setup using Instant Client (Windows)</title>
		<link>http://mail2vks.wordpress.com/2008/10/09/oracle-instant-client/</link>
		<comments>http://mail2vks.wordpress.com/2008/10/09/oracle-instant-client/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 10:47:44 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[instant client]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=61</guid>
		<description><![CDATA[Oracle Client Installation is required on machines from which access to Oracle Server is required. My work machine has only 1Gb of RAM and i run few more memory intensive applications on it. Currently i am using Oracle Instant Client instead of Oracle Client to access Oracle Database. Setup is minimal and if done in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=61&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Oracle Client Installation is required on machines from which access to Oracle Server is required. My work machine has only 1Gb of RAM and i run few more memory intensive applications on it. Currently i am using Oracle Instant Client instead of Oracle Client to access Oracle Database. Setup is minimal and if done in order works fine.</p>
<p>Read more on Instant Client from <a title="Oracle Instant Client" href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html">Oracle&#8217;s Website</a>.</p>
<p>Now coming to setup.</p>
<p>Download Instant Client (<span class="parahead1">10.2.0.4</span>) from the link on website above. You will need to register for download if not already registered which i did not like. After download unzip folder in say C:\ and create a folder named oracle. Inside C:\oracle create a folder bin. Move all unzipped files inside bin folder.</p>
<p>Create a folder name network in C:\oracle. Inside C:\oracle\network create a folder named admin.</p>
<p>Create a new file called tnsnames.ora inside C:\oracle\network\admin.</p>
<p>Now there are 3 environment variables which need to be set:</p>
<p>Path=C:\oracle\bin (Add anywhere in Path)<br />
SQL_PATH=C:\oracle<br />
TNS_ADMIN=C:\oracle\network\admin</p>
<p>Fire up TOAD or Oracle SQL Developer and you should be able to connect to all schemas mentioned in tnsnames.ora</p>
<p>Instant Client is avalible for lot of platforms. I have written this post when using InstantClient on Windows XP.</p>
<p style="text-align:left;font-size:8pt;">Add to: <a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://mail2vks.wordpress.com/2008/10/09/oracle-instant-client" target="_blank">Facebook</a> | <a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;title=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instan..." target="_blank">Digg</a> | <a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;title=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Del.icio.us</a> | <a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;title=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Stumbleupon</a> | <a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;title=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Reddit</a> | <a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;Title=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Blinklist</a> | <a title="Add to Twitter" href="http://twitter.com/home/?status=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)+%40+http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client" target="_blank">Twitter</a> | <a title="Add to Technorati" href="http://www.technorati.com/faves?add=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client" target="_blank">Technorati</a> | <a title="Add to Furl" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;t=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Furl</a> | <a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F10%2F09%2Foracle-instant-client&amp;h=Accessing%20Oracle%20without%20Oracle%20Client%20Setup%20using%20Instant%20Client%20(Windows)" target="_blank">Newsvine</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=61&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/10/09/oracle-instant-client/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Command Prompt Replacement</title>
		<link>http://mail2vks.wordpress.com/2008/09/21/windows-cmd-prompt-replacement/</link>
		<comments>http://mail2vks.wordpress.com/2008/09/21/windows-cmd-prompt-replacement/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 12:35:28 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Command Line Replacement]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=51</guid>
		<description><![CDATA[MS Command Prompt is perhaps the most ignored application that comes with Windows. Well they launched Powershell but it is more targeted towards Administrators. I was searching for a Windows based command prompt replacement. Tried Console Beta from sourceforge but it turned out to be a memory hog. 
These days i am using PowerCmd which is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=51&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>MS Command Prompt is perhaps the most ignored application that comes with Windows. Well they launched <a title="PowerShell" href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx">Powershell</a> but it is more targeted towards Administrators. I was searching for a Windows based command prompt replacement. Tried <a title="Console Link" href="http://sourceforge.net/projects/console">Console</a> Beta from sourceforge but it turned out to be a memory hog. </p>
<p>These days i am using PowerCmd which is much neater and uses less memory. It did crash when i was using it and that did not kill the prcoess running in console. So i had to use Alt-Ctrl-Del to kill the process. <a title="PowerCmd Download" href="http://www.powercmd.com/">PowerCmd</a> comes with a tabbed interface and allows me to change fonts easily. User Interface is simple and self explaining. I can arrange console in predefined layouts. Copying and Pasting text is much easier. For long console message there is also option to turn Wordwrap on or off. I think default windows console should learn something from its unix counterpart.</p>
<p><a title="PowerCmd Download Link" href="http://www.powercmd.com/">Download Here</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=51&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/09/21/windows-cmd-prompt-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Search Class in Jar. Update &#8211; moved to Google Code</title>
		<link>http://mail2vks.wordpress.com/2008/09/20/java-search-class-in-jar/</link>
		<comments>http://mail2vks.wordpress.com/2008/09/20/java-search-class-in-jar/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 18:28:45 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Jar Search]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=47</guid>
		<description><![CDATA[Working as a Java Developer and working across multiple projects there is one frequent error which i have encounterd is &#8220;Exception in thread "main" java.lang.NoClassDefFound Error:". The reason for this error is missing class file from the CLASSPATH.
This sometimes becomes very frustrating when you have to search for missing class in a set of JAR [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=47&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Working as a Java Developer and working across multiple projects there is one frequent error which i have encounterd is &#8220;<code>Exception in thread "main" java.lang.NoClassDefFound Error:"</code>. The reason for this error is missing class file from the CLASSPATH.</p>
<p>This sometimes becomes very frustrating when you have to search for missing class in a set of JAR files. To make it bit easier i have written a small java utility which searches for class file in all jar files present in a particular directory.</p>
<p>I am making it available for download below and also a sample of what it can do.</p>
<p>C:UtilsJar Search&gt;java -jar jarSearch.jar C:WorkJar WSDL2Java</p>
<p>Found WSDL2Java as org/apache/axis/wsdl/WSDL2Java.class in C:WorkJaraxis.jar</p>
<p>Time taken 0s</p>
<p><a title="Jar Search" href="http://cid-7cb8a7d744698d3f.skydrive.live.com/self.aspx/Public/Jar%20Search.zip">Download Here</a>.</p>
<p>Update: I have moved this project to Google Code. Any new downloads will be available from <a title="Google Code - Jar Search" href="http://code.google.com/p/classjarsearch/downloads/">here</a>. I have also updated utility to work with swt based gui. Please locate platform specific swt.jar from <a title="Eclipse 3.5 download site" href="http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/index.php#swt">here</a> and put it in same folder as JarSearch.jar. Execute using &#8220;java -jar JarSearch.jar&#8221;</p>
<p style="text-align:left;font-size:8pt;">Add to: <a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://mail2vks.wordpress.com/2008/09/20/java-search-class-in-jar" target="_blank">Facebook</a> | <a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;title=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Digg</a> | <a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;title=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Del.icio.us</a> | <a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;title=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Stumbleupon</a> | <a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;title=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Reddit</a> | <a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;Title=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Blinklist</a> | <a title="Add to Twitter" href="http://twitter.com/home/?status=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code+%40+http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar" target="_blank">Twitter</a> | <a title="Add to Technorati" href="http://www.technorati.com/faves?add=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar" target="_blank">Technorati</a> | <a title="Add to Furl" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;t=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Furl</a> | <a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fmail2vks.wordpress.com%2F2008%2F09%2F20%2Fjava-search-class-in-jar&amp;h=Java%20Search%20Class%20in%20Jar.%20Update%20-%20moved%20to%20Google%20Code" target="_blank">Newsvine</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=47&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/09/20/java-search-class-in-jar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>3 minutes in Google Chrome, Feel already at home</title>
		<link>http://mail2vks.wordpress.com/2008/09/02/3-minutes-in-google-chrome-feel-already-at-home/</link>
		<comments>http://mail2vks.wordpress.com/2008/09/02/3-minutes-in-google-chrome-feel-already-at-home/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 19:37:56 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=44</guid>
		<description><![CDATA[3 minutes before i downloaded Google Chrome and i am already at home. Built on top of webkit and mozilla components this is extremly light and simple. It imported all my bookmarks from Firefox immediately on startup. Since all tabs are individual processes, i opened few tabs and noticed the number of processes running. There [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=44&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>3 minutes before i downloaded <a title="Chrome" href="http://www.google.com/chrome">Google Chrome</a> and i am already at home. Built on top of webkit and mozilla components this is extremly light and simple. It imported all my bookmarks from Firefox immediately on startup. Since all tabs are individual processes, i opened few tabs and noticed the number of processes running. There is one extra process running in background as 3 tabs = 3 process + 1 more parent process. </p>
<div id="attachment_45" class="wp-caption aligncenter" style="width: 310px"><a href="http://mail2vks.files.wordpress.com/2008/09/chrome.jpg"><img class="size-medium wp-image-45" src="http://mail2vks.files.wordpress.com/2008/09/chrome.jpg?w=300&#038;h=187" alt="Chrome" width="300" height="187" /></a><p class="wp-caption-text">Chrome</p></div>
<p>Infact i am using Google Chrome to write this post. One good thing is the ability to import Firefox bookmarks again and again. Youtube plays well and there is absolutely no issue. I have not been able to crash this browser till now. I changes the default downloads location to Desktop instead of My Documents. Chrome also allows us to restore tabs from previous browsing sessions. Memeory footprint is not high, considering this is a beta release. </p>
<p>Best Feature is the ability to search from within the address bar. Though chrome allows adding a new search provider almost everyone will stick to the default one. Chrome website is offering only the installer which then uses Google Update to download core components.</p>
<p>Good Browser and friendly too.</p>
<p>Only one surprise : Comes with Vista Buttons <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=44&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/09/02/3-minutes-in-google-chrome-feel-already-at-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://mail2vks.files.wordpress.com/2008/09/chrome.jpg?w=300" medium="image">
			<media:title type="html">Chrome</media:title>
		</media:content>
	</item>
		<item>
		<title>How svn helped me fill my timesheets?</title>
		<link>http://mail2vks.wordpress.com/2008/08/30/svn-timesheets/</link>
		<comments>http://mail2vks.wordpress.com/2008/08/30/svn-timesheets/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 18:31:39 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=38</guid>
		<description><![CDATA[As a software developer who work in services industry i have to regularly fill timesheets. These are used by management to understand and plot how much time one particular phase of project takes and also if some one is being really lazy. Recently i was so busy in my project delivery that i was unable [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=38&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As a software developer who work in services industry i have to regularly fill timesheets. These are used by management to understand and plot how much time one particular phase of project takes and also if some one is being really lazy. Recently i was so busy in my project delivery that i was unable to file timesheets for  one complete month. Here comes my Manager on the last working day and asks for my complete timesheets for full month. 1hr to go for deadline. I had not written down what i have been doing all this month and had no idea how to fill timesheets. Rather than fill timesheets for Ctrl-C, V i decided i will fill what i had actually done.</p>
<p>Using TortoriseSVN i checked history for trunk and then filtered the logs using my user name and dates. After that i looked at the files i had checked in between those dates. I had added well formed comments during checkin. So noting modules in which files were checked-in and dates i was able to pin-point what exactly i had been doing on a particular date.</p>
<p>Well it wont work if you dont checkin any file on a day. One more simple way to maintain time logs personally is using a .txt and adding .LOG in first line. Opening txt file with Notepad or Textpad will add a timestamp of current opening time against which comments can be added like Completed module ABC.</p>
<p align="center"><a href="http://del.icio.us/post?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" alt="add to del.icio.us" /></a> <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;Title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" alt="Add to Blinkslist" /></a> <a href="http://www.furl.net/storeIt.jsp?u=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;t=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" alt="add to furl" /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets"><img src="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" alt="Digg it" /></a> <a href="http://ma.gnolia.com/bookmarklet/add?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" alt="add to ma.gnolia" /></a> <a href="http://www.stumbleupon.com/submit?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets&amp;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" alt="Stumble It!" /></a> <a href="http://www.simpy.com/simpy/LinkAdd.do?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" alt="add to simpy" /></a> <a href="http://www.newsvine.com/_tools/seed&amp;save?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" alt="seed the vine" /></a> <a href="http://reddit.com/submit?url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" alt="" /></a> <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets;new_comment=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" alt="" /></a> <a title="TailRank" href="http://tailrank.com/share/?text=&amp;link_href=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets&amp;title=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" alt="TailRank" /></a> <a href="http://www.facebook.com/sharer.php?u=http://mail2vks.wordpress.com/2008/08/30/svn-timesheets&amp;t=How svn helped me fill my timesheets?"><img src="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" alt="post to facebook" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=38&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/08/30/svn-timesheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add to del.icio.us</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add to Blinkslist</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add to furl</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg it</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add to ma.gnolia</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble It!</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add to simpy</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed the vine</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" medium="image">
			<media:title type="html">post to facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>WinPwn or Ziphone ?</title>
		<link>http://mail2vks.wordpress.com/2008/08/05/winpwn-or-ziphone/</link>
		<comments>http://mail2vks.wordpress.com/2008/08/05/winpwn-or-ziphone/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 23:34:21 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=32</guid>
		<description><![CDATA[These days i am torn between my urge to use WinPwn or wait for next release of Ziphone from Zibri. I had used Ziphone 3.0 eariler to be applied on my 1.1.4 iphone. The process then was really a breeze and my phone was unlocked within 5 minutes. With the release of iphone 2.0 SDK [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=32&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>These days i am torn between my urge to use <a href="http://winpwn.com/index.php/Main_Page" target="_blank">WinPwn</a> or wait for next release of <a href="http://www.ziphone.org/" target="_blank">Ziphone</a> from Zibri. I had used Ziphone 3.0 eariler to be applied on my 1.1.4 iphone. The process then was really a breeze and my phone was unlocked within 5 minutes. With the release of iphone 2.0 SDK apple has applied more control measures around the software. With help from keys published by Zibri, it seems that winpwn team has been successful in developing iphone 2.0 unlocking. This process as of today is not entirely bug free and 100% perfect. Winpwn team is also planning to push winpwn 2.5 in August, 08 which promises to be much simpler and bug free. Ask me i really want to use Ziphone&#8217;s next release and this time i am going to donate to him. His work has been exceptional and he must be given recogonition for the same.</p>
<p><strong>Updated:</strong> I have subscribed to<a href="http://feeds.feedburner.com/ziphone_status"> Ziphone Status</a> and i check it at least once daily. I am paitiently waiting for Ziphone though i am excited to apply WinPwn. The only reason pushing me for WinPwn is the huge number of free apps available in Apple Store. WordPress Iphone App is one of those.</p>
<p>Update : I unlocked my 2G Iphone using <a href="http://wikee.iphwn.org/">QuickPwn</a>. No issues till now. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=32&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/08/05/winpwn-or-ziphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>lazy me</title>
		<link>http://mail2vks.wordpress.com/2008/06/06/lazy-me/</link>
		<comments>http://mail2vks.wordpress.com/2008/06/06/lazy-me/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 09:13:57 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blah]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/?p=30</guid>
		<description><![CDATA[this is the second time i am writing a post like this. I have away from wordpress for a long time and it was blog of one of my friend in wordpress which reminded that i have not done anything for last few months. I had almost forgotten my password. lot has changed; i have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=30&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>this is the second time i am writing a post like this. I have away from wordpress for a long time and it was blog of one of my friend in wordpress which reminded that i have not done anything for last few months. I had almost forgotten my password. lot has changed; i have been away from home, missing India and been busy with work.</p>
<p>lazy me.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=30&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2008/06/06/lazy-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Elephants vs Mouse</title>
		<link>http://mail2vks.wordpress.com/2007/12/07/elephants-vs-mouse/</link>
		<comments>http://mail2vks.wordpress.com/2007/12/07/elephants-vs-mouse/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 22:09:28 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/12/07/elephants-vs-mouse/</guid>
		<description><![CDATA[Mythbuster&#8217;s is a show aired on discovery in which 2 people try to find reality behind myths. Here they unravel mystery behind a famous one : Are elephants afraid of Mouse?

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=29&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Mythbuster&#8217;s is a show aired on discovery in which 2 people try to find reality behind myths. Here they unravel mystery behind a famous one : Are elephants afraid of Mouse?</p>
<p><object width="425" height="254"><param name="movie" value="http://www.dailymotion.com/swf/4lQS6FqmKAOw3p5vk"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/4lQS6FqmKAOw3p5vk" type="application/x-shockwave-flash" width="425" height="334" allowfullscreen="true"></embed></object></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=29&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/12/07/elephants-vs-mouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Funny Prank on Telemarketer</title>
		<link>http://mail2vks.wordpress.com/2007/11/17/funny-prank-on-telemarketer/</link>
		<comments>http://mail2vks.wordpress.com/2007/11/17/funny-prank-on-telemarketer/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 00:10:21 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/11/17/funny-prank-on-telemarketer/</guid>
		<description><![CDATA[While stumbling on web I came across this funny conversation which really put a sales guy on phone is same position when we get a call during a meeting or bad times in a day.

Wish we could do something like this in India
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=28&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While stumbling on web I came across this funny conversation which really put a sales guy on phone is same position when we get a call during a meeting or bad times in a day.</p>
<p class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;"><span style="text-align:center; display: block;"><a href="http://mail2vks.wordpress.com/2007/11/17/funny-prank-on-telemarketer/"><img src="http://img.youtube.com/vi/J5z4Vs26-TI/2.jpg" alt="" /></a></span></p>
<p>Wish we could do something like this in India</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=28&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/11/17/funny-prank-on-telemarketer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/J5z4Vs26-TI/2.jpg" medium="image" />
	</item>
		<item>
		<title>Say goodbye to TimerTask for scheduling &#8211; use Quartz instead.</title>
		<link>http://mail2vks.wordpress.com/2007/11/14/say-goodbye-to-timertask-for-scheduling-use-quartz-instead/</link>
		<comments>http://mail2vks.wordpress.com/2007/11/14/say-goodbye-to-timertask-for-scheduling-use-quartz-instead/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 11:21:26 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/11/14/say-goodbye-to-timertask-for-scheduling-use-quartz-instead/</guid>
		<description><![CDATA[In most of the web applications there is always a requirement to schedule task which can be repeated on certain interval. For one of our projects, it was required to call a method every fifteen minutes to monitor a table. Initial implementation was done using TimerTask and was a success. Problems arose when we wanted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=27&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In most of the web applications there is always a requirement to schedule task which can be repeated on certain interval. For one of our projects, it was required to call a method every fifteen minutes to monitor a table. Initial implementation was done using TimerTask and was a success. Problems arose when we wanted to configure TimerTask in a clustered environment.</p>
<p>A TimerTask once started will create a new Thread of execution. For a clustered environment it would mean configuring different sleep values for all clusters and also the need to test them at least once. Also our implementation was becoming hard to understand for support team who would be responsible for maintaining our application.</p>
<p>Welcome Quartz &#8211; From Quartz Web page <a href="http://www.opensymphony.com/quartz/" title="http://www.opensymphony.com/quartz/">http://www.opensymphony.com/quartz/</a></p>
<p>Quartz is a full-featured, open source job scheduling system that can be integrated with, or used along side virtually any J2EE or J2SE application &#8211; from the smallest stand-alone application to the largest e-commerce system. Quartz can be used to create simple or complex schedules for executing tens, hundreds, or even tens-of-thousands of jobs; jobs whose tasks are defined as standard Java components or EJBs.</p>
<p>Example for integrating Quartz in a J2EE Application</p>
<p>1. Download Quartz latest release as a zip format from <a href="http://www.opensymphony.com/quartz/download.action" title="http://www.opensymphony.com/quartz/download.action">http://www.opensymphony.com/quartz/download.action</a>. From the zip file use quartz-all-&lt;version&gt;.jar which contains almost all the files which are required for Quartz to work.</p>
<p>2. Download Java Transaction API&#8217;s (JTA) from <a href="http://java.sun.com/products/jta/" title="http://java.sun.com/products/jta/">http://java.sun.com/products/jta/</a> which are required by Quartz. Select Class Files to download from the page. This release will be in form of .zip file which has class files inside it. You can extract and again package them as a .jar or leave them as it is.</p>
<p>3. Move Quartz jar and JTA download to WEB-INF/lib directory of your application.</p>
<p>4. Add following lines to your application web.xml to configure Quartz.<br />
<code><br />
</code></p>
<p align="left">
<pre class="brush: xml;">
&lt;servlet&gt;
&lt;display-name&gt;Quartz Initializer Servlet&lt;/display-name&gt;
&lt;servlet-name&gt;QuartzInitializer&lt;/servlet-name&gt;
&lt;servlet-class&gt;
	org.quartz.ee.servlet.QuartzInitializerServlet
&lt;/servlet-class&gt;
&lt;init-param&gt;
	&lt;param-name&gt;shutdown-on-unload&lt;/param-name&gt;
	&lt;param-value&gt;true&lt;/param-value&gt;
&lt;/init-param&gt;
&lt;init-param&gt;
&lt;param-name&gt;start-scheduler-on-load&lt;/param-name&gt;
&lt;param-value&gt;true&lt;/param-value&gt;
&lt;/init-param&gt;
&lt;load-on-startup&gt;1&lt;/load-on-startup&gt;
&lt;/servlet&gt;

&lt;servlet&gt;
&lt;display-name&gt;Scheduler Servlet&lt;/display-name&gt;
&lt;servlet-name&gt;SchedulerServlet&lt;/servlet-name&gt;
&lt;servlet-class&gt;com.test.SchedulerServlet&lt;/servlet-class&gt;
&lt;load-on-startup&gt;2&lt;/load-on-startup&gt;
&lt;/servlet&gt;
</pre>
<p>In the lines above the first Servlet Element defines a new Servlet of typeorg.quartz.ee.servlet.QuartzInitializerServlet which would initialise Quartz at the time of application startup.</p>
<p>The second element defines a new Servlet which would be started as part of Application Init and it is the place from where we configure Quartz.</p>
<p>5. Here is the SchedulerServlet Implementation in which i am configuring a Cron Job. This Cron Job is similar to Unix Cron Job but the difference is that it is managed entirely in Java and does not depend on Unix Cron.</p>
<pre class="brush: java;">
package com.test;

import javax.servlet.GenericServlet;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;

import org.quartz.CronExpression;
import org.quartz.CronTrigger;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.quartz.SchedulerFactory;
import org.quartz.impl.StdSchedulerFactory;

import com.test.Worker;

public class SchedulerServlet extends GenericServlet {

/**
* Constant to represent property for the cron expression.
*/
private static final String CRON_EXPRESSION = &quot;0 0/15 * * * ?&quot;;

public void init(ServletConfig servletConfig) throws ServletException {

super.init(servletConfig);

// The Quartz Scheduler
Scheduler scheduler = null;

try {

// Initiate a Schedule Factory
SchedulerFactory schedulerFactory = new StdSchedulerFactory();
// Retrieve a scheduler from schedule factory
scheduler = schedulerFactory.getScheduler();
// Initiate JobDetail with job name, job group and
// executable job class
JobDetail jobDetail = new JobDetail(&quot;RetryJob&quot;,
&quot;RetryGroup&quot;, Worker.class);
// Initiate CronTrigger with its name and group name
CronTrigger cronTrigger = new CronTrigger(&quot;cronTrigger&quot;,
&quot;triggerGroup&quot;);
// setup CronExpression
CronExpression cexp = new CronExpression(CRON_EXPRESSION);
// Assign the CronExpression to CronTrigger
cronTrigger.setCronExpression(cexp);
// schedule a job with JobDetail and Trigger
scheduler.scheduleJob(jobDetail, cronTrigger);

// start the scheduler
scheduler.start();

} catch (Exception e) {
e.printStackTrace();
}

}

public void service(ServletRequest serveletRequest, ServletResponse servletResponse)
throws ServletException, IOException {

}

}</pre>
<p>Code above creates a Cron Job which will call Worker ( which implements Job) and calls its execute method. There are numerous types of triggers which can be created and CronTrigger is just one example.6. Worker class which implements Job Interface</p>
<pre class="brush: java;">
package com.test;

import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;

/**
* worker thread
*/
public class Worker implements Job {
public void execute(JobExecutionContext context)
throws JobExecutionException {
System.out.println(&quot;Put task to be executed here&quot;);
}

}</pre>
<p>Simple isn&#8217;t it.</p>
<p class="MsoNormal">&nbsp;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=27&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/11/14/say-goodbye-to-timertask-for-scheduling-use-quartz-instead/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Process Tree in Linux</title>
		<link>http://mail2vks.wordpress.com/2007/09/29/process-tree-in-linux/</link>
		<comments>http://mail2vks.wordpress.com/2007/09/29/process-tree-in-linux/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 04:15:15 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/09/30/process-tree-in-linux/</guid>
		<description><![CDATA[I mostly use `ps -eaf` to get all programs running on Linux Box in my organization. Accidently i entered `ps -ea f` on console and was getting ready to retype but to my surprise i got a process tree which
was much better than normal `ps -eaf`.
Here is a small sample

1988 ?     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=26&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I mostly use `ps -eaf` to get all programs running on Linux Box in my organization. Accidently i entered `ps -ea f` on console and was getting ready to retype but to my surprise i got a process tree which<br />
was much better than normal `ps -eaf`.</p>
<p>Here is a small sample<br />
<code><br />
1988 ?        Ss     0:00 /usr/sbin/sshd<br />
3736 ?        Ss     0:00  \_ sshd: tomcat [priv]<br />
3738 ?        S      0:00      \_ sshd: tomcat@pts/1<br />
3739 pts/1    Ss     0:00          \_ -bash<br />
3781 pts/1    Sl     0:01              \_ /usr/java/jdk1.5.0_12//bin/java -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -<br />
3817 pts/1    R+     0:00              \_ ps -ea f<br />
</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=26&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/09/29/process-tree-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Great weekend drive from Bangalore &#8230;. Nandi Hills</title>
		<link>http://mail2vks.wordpress.com/2007/05/28/great-weekend-drive-from-bangalore-nandi-hills/</link>
		<comments>http://mail2vks.wordpress.com/2007/05/28/great-weekend-drive-from-bangalore-nandi-hills/#comments</comments>
		<pubDate>Mon, 28 May 2007 05:00:55 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/05/28/great-weekend-drive-from-bangalore-nandi-hills/</guid>
		<description><![CDATA[This summer go and visit Nandi Hills. Nandi Hills is 53 km drive on Bangalore &#8211; Hyderabad Road. The weather is awesome there. Go there and stand among the clouds. I went there yesterday ( May 27 ) and it was a pleasure drive. Sun is mild and no rain. Highway is good with only [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=24&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This summer go and visit Nandi Hills. Nandi Hills is 53 km drive on Bangalore &#8211; Hyderabad Road. The weather is awesome there. Go there and stand among the clouds. I went there yesterday ( May 27 ) and it was a pleasure drive. Sun is mild and no rain. Highway is good with only 3 small diversions in between. I don&#8217;t have pictures to add now but when i get i will surely add. I have visited Nandi Hills a lot many times but this visit beats it all. The weather with mist in air feels great.  One change i noticed this time was there were lot of people staying around who have taken to begging. As you are strolling they will come close and pester you until you get some money out of your pockets. Apart from that everything is pleasant. Do make a visit.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=24&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/05/28/great-weekend-drive-from-bangalore-nandi-hills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Busybee &#8230;&#8230;.</title>
		<link>http://mail2vks.wordpress.com/2007/02/22/busybee/</link>
		<comments>http://mail2vks.wordpress.com/2007/02/22/busybee/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 04:33:24 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Nothing in Particular]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2007/02/22/busybee/</guid>
		<description><![CDATA[Oh I have been working for the whole of Jan and early Feb went to attend my Friend&#8217;s Marriage. Lot of things happened around int his time. My most devoted reader Pankaj called me one day and said update the blog. I ignored it simply for lack of enthusiasm at that stage when i was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=23&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Oh I have been working for the whole of Jan and early Feb went to attend my Friend&#8217;s Marriage. Lot of things happened around int his time. My most devoted reader Pankaj called me one day and said update the blog. I ignored it simply for lack of enthusiasm at that stage when i was neck deep engrossed in work and looking at my 15&#8243; screen 10 hrs a day. At the end of the day i simply felt like going home and relaxing. Did i forgot to mention somewhere that i blog from my Office PC !</p>
<p>The blogging scene in India is changing and lot of blogs to read from. Since i am based in Bangalore i am a daily reader of <a target="_blank" href="http://bangalore.metblogs.com/">MetroBlogging Bangalore</a>. Today i came across one of the Indian Bloggers getting on Digg Front Page -<a target="_blank" href="http://azoosdailymusings.blogspot.com/2007/02/some-unforgettable-moments-captured-in.html"> Some Unforgettable moment captured in a frame</a><!-- google_ad_section_start -->. Really inspiring. Making it to digg front page must be every bloggers dream. With my current level of text composition i know i still have a long time to go but probably i will also make it there some day.</p>
<p>One more thing visit <a href="http://darkgate.net/comic/">http://darkgate.net/comic</a>if you want to get comic strips via RSS.</p>
<p>Till next post bye !</p>
<p>Do post some comments or your blog links.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=23&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2007/02/22/busybee/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Travel around Bangalore</title>
		<link>http://mail2vks.wordpress.com/2006/12/20/travel-around-bangalore/</link>
		<comments>http://mail2vks.wordpress.com/2006/12/20/travel-around-bangalore/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 09:12:44 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2006/12/20/travel-around-bangalore/</guid>
		<description><![CDATA[For places to travel around Bangalore I am compiling a list of information on web.

Hindu Business Line Lists of Places around Bangalore

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=20&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For places to travel around Bangalore I am compiling a list of information on web.</p>
<ol>
<li><a target="_blank" href="http://www.thehindubusinessline.com/nic/051/index3.htm">Hindu Business Line Lists of Places around Bangalore</a></li>
</ol>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=20&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2006/12/20/travel-around-bangalore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>Fact or Fiction?: NASA Spent Millions to Develop a Pen that Would Write in Space, whereas the Soviet Cosmonauts Used a Pencil</title>
		<link>http://mail2vks.wordpress.com/2006/12/20/fact-or-fiction-nasa-spent-millions-to-develop-a-pen-that-would-write-in-space-whereas-the-soviet-cosmonauts-used-a-pencil/</link>
		<comments>http://mail2vks.wordpress.com/2006/12/20/fact-or-fiction-nasa-spent-millions-to-develop-a-pen-that-would-write-in-space-whereas-the-soviet-cosmonauts-used-a-pencil/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 09:05:28 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2006/12/20/fact-or-fiction-nasa-spent-millions-to-develop-a-pen-that-would-write-in-space-whereas-the-soviet-cosmonauts-used-a-pencil/</guid>
		<description><![CDATA[The title says it all. Read more details here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=19&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The title says it all. Read more details <a target="_blank" href="http://www.sciam.com/article.cfm?chanID=sa004&amp;articleID=9CF01C5C-E7F2-99DF-3EEFFCD06138AEC4">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=19&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2006/12/20/fact-or-fiction-nasa-spent-millions-to-develop-a-pen-that-would-write-in-space-whereas-the-soviet-cosmonauts-used-a-pencil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress has JavaScript errors with IE7</title>
		<link>http://mail2vks.wordpress.com/2006/12/19/wordpress-has-javascript-errors-with-ie7/</link>
		<comments>http://mail2vks.wordpress.com/2006/12/19/wordpress-has-javascript-errors-with-ie7/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 11:37:06 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://mail2vks.wordpress.com/2006/12/19/wordpress-has-javascript-errors-with-ie7/</guid>
		<description><![CDATA[I have using Mozilla Firefox for a long time but due to some unforeseen circumstances ( read Mozilla now being used for tunnelling ) i had to switch loyalty to IE7. Now what i have installed is not a beta it is Full fledged release from Microsoft. The About Internet Explorer looks like

What i am [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=17&subd=mail2vks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have using Mozilla Firefox for a long time but due to some unforeseen circumstances ( read Mozilla now being used for tunnelling ) i had to switch loyalty to IE7. Now what i have installed is not a beta it is Full fledged release from Microsoft. The About Internet Explorer looks like</p>
<p><a rel="attachment wp-att-18" href="http://mail2vks.wordpress.com/?attachment_id=18" title="abt.jpg"><img src="http://mail2vks.files.wordpress.com/2006/12/abt.jpg" alt="abt.jpg" /></a></p>
<p>What i am experiencing is definitely a nightmare for a wordpress blogger. I have compiled a list of problems that i am facing and expecting MS or wordpress to do something about ( so demanding of me but i can&#8217;t help ). Listed below are the issues :</p>
<ol>
<li>Using write from My Dashboard leads to javascript error on page load.</li>
<li>Click on Save while writing a post and it takes a long time to load and first display the HTML code and after a javascript error shows the text box.</li>
<li>I have lost 2 posts when i clicked on Publish instead of Save.</li>
<li>If you try to expand the text box in which posts are written maximum chances are that text box may not expand and it swhrinks to one line display.</li>
<li>Do a spell check, incorrect words are underlined. Clicking on any of the options for correct word does not correct the word.</li>
</ol>
<p>Feel free to add more if you see any.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mail2vks.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mail2vks.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mail2vks.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mail2vks.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mail2vks.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mail2vks.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mail2vks.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mail2vks.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mail2vks.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mail2vks.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mail2vks.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mail2vks.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mail2vks.wordpress.com&blog=516734&post=17&subd=mail2vks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mail2vks.wordpress.com/2006/12/19/wordpress-has-javascript-errors-with-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cda2fbe8212ea4a9698914db970c1886?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Vivek</media:title>
		</media:content>

		<media:content url="http://mail2vks.files.wordpress.com/2006/12/abt.jpg" medium="image">
			<media:title type="html">abt.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>