<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Veerasundar</title>
	<atom:link href="http://veerasundar.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://veerasundar.com/blog</link>
	<description>Java, web and design</description>
	<lastBuildDate>Wed, 16 May 2012 22:48:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Nokia Lumia 800 Review by chaitanya</title>
		<link>http://veerasundar.com/blog/2012/05/nokia-lumia-800-review/#comment-2308</link>
		<dc:creator>chaitanya</dc:creator>
		<pubDate>Wed, 16 May 2012 22:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=3035#comment-2308</guid>
		<description>I miss Nokia Drive &amp; Nokia Maps app on my HTC Trophy running WP7.5
I would rate WP7.5 over &quot;Grand Theft&quot; that is Android.

Microsoft tried to bring some difference rather than being the copy cat.</description>
		<content:encoded><![CDATA[<p>I miss Nokia Drive &amp; Nokia Maps app on my HTC Trophy running WP7.5<br />
I would rate WP7.5 over &#8220;Grand Theft&#8221; that is Android.</p>
<p>Microsoft tried to bring some difference rather than being the copy cat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Struts 2 &#8211; Hello World Tutorial by Sneha</title>
		<link>http://veerasundar.com/blog/2008/11/create-struts-2-hello-world-application/#comment-2305</link>
		<dc:creator>Sneha</dc:creator>
		<pubDate>Wed, 16 May 2012 10:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=92#comment-2305</guid>
		<description>Thanks sir...can we run this directly from eclipse?</description>
		<content:encoded><![CDATA[<p>Thanks sir&#8230;can we run this directly from eclipse?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acer Aspire one 722 &#8211; Review by Nokia Lumia 800 Review</title>
		<link>http://veerasundar.com/blog/2012/04/acer-aspire-one-722-review/#comment-2304</link>
		<dc:creator>Nokia Lumia 800 Review</dc:creator>
		<pubDate>Wed, 16 May 2012 07:08:44 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=3008#comment-2304</guid>
		<description>[...] the photos, music and videos between my phone and PC. But when I wanted to copy a CAB file from my PC to Phone, I was hitting the dead end. Zune didn&#8217;t sync the file and I couldn&#8217;t just [...]</description>
		<content:encoded><![CDATA[<p>[...] the photos, music and videos between my phone and PC. But when I wanted to copy a CAB file from my PC to Phone, I was hitting the dead end. Zune didn&#8217;t sync the file and I couldn&#8217;t just [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Thread Local &#8211; How to use and code sample by ranjan</title>
		<link>http://veerasundar.com/blog/2010/11/java-thread-local-how-to-use-and-code-sample/#comment-2303</link>
		<dc:creator>ranjan</dc:creator>
		<pubDate>Tue, 15 May 2012 13:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1935#comment-2303</guid>
		<description>nice one....easy to understand the concpet!!!and nice example also</description>
		<content:encoded><![CDATA[<p>nice one&#8230;.easy to understand the concpet!!!and nice example also</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Regional font support in Opera Mini by Krishna</title>
		<link>http://veerasundar.com/blog/2010/08/regional-font-support-in-opera-mini/#comment-2300</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Mon, 14 May 2012 11:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1746#comment-2300</guid>
		<description>Sir naan nokiaN72 use panren operamini tamil font venum help pannunga &quot;about:config&quot; pona invaild URL nnu varuthu operamini 5 use    en email id ku annuppunga thengs</description>
		<content:encoded><![CDATA[<p>Sir naan nokiaN72 use panren operamini tamil font venum help pannunga &#8220;about:config&#8221; pona invaild URL nnu varuthu operamini 5 use    en email id ku annuppunga thengs</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing passwords in Java web application by Hashing it by Will</title>
		<link>http://veerasundar.com/blog/2010/09/storing-passwords-in-java-web-application/#comment-2298</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Sun, 13 May 2012 12:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1755#comment-2298</guid>
		<description>Instead of...
	if(hashedPassword.equals(storedPasswordHash)){
		isAuthenticated = true;
	}else{
		isAuthenticated = false;
	}
	return isAuthenticated;
Try...
	final byte[] b1 = hashedPassword.getBytes(&quot;ISO-8859-1&quot;);
	final byte[] b2 = storedPasswordHash.getBytes(&quot;ISO-8859-1&quot;);
	return MessageDigest.isEqual(b1, b2);</description>
		<content:encoded><![CDATA[<p>Instead of&#8230;<br />
	if(hashedPassword.equals(storedPasswordHash)){<br />
		isAuthenticated = true;<br />
	}else{<br />
		isAuthenticated = false;<br />
	}<br />
	return isAuthenticated;<br />
Try&#8230;<br />
	final byte[] b1 = hashedPassword.getBytes(&#8220;ISO-8859-1&#8243;);<br />
	final byte[] b2 = storedPasswordHash.getBytes(&#8220;ISO-8859-1&#8243;);<br />
	return MessageDigest.isEqual(b1, b2);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anagram tester in Java by stevan</title>
		<link>http://veerasundar.com/blog/2012/03/anagram-tester-in-java/#comment-2297</link>
		<dc:creator>stevan</dc:creator>
		<pubDate>Sun, 13 May 2012 12:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=2946#comment-2297</guid>
		<description>What if I want to make swing application that checks if two strings are anagram ?</description>
		<content:encoded><![CDATA[<p>What if I want to make swing application that checks if two strings are anagram ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Infinite scroll : Loading content while scrolling, using Java and JQuery by Armin</title>
		<link>http://veerasundar.com/blog/2010/07/infinite-scroll-loading-content-while-scrolling-using-java-and-jquery/#comment-2293</link>
		<dc:creator>Armin</dc:creator>
		<pubDate>Fri, 11 May 2012 22:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1347#comment-2293</guid>
		<description>What you got? I have same problem with infinite scroll and thesis.. I can&#039;t activate plug-in. when i press activate just redirecting me to home page</description>
		<content:encoded><![CDATA[<p>What you got? I have same problem with infinite scroll and thesis.. I can&#8217;t activate plug-in. when i press activate just redirecting me to home page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring AOP Example: Profiling method execution time tutorial by kvic kaizen</title>
		<link>http://veerasundar.com/blog/2010/01/spring-aop-example-profiling-method-execution-time-tutorial/#comment-2288</link>
		<dc:creator>kvic kaizen</dc:creator>
		<pubDate>Fri, 11 May 2012 07:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1208#comment-2288</guid>
		<description>Great!
Excellent tutorial. 
I just try and it works.</description>
		<content:encoded><![CDATA[<p>Great!<br />
Excellent tutorial.<br />
I just try and it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scroll to top &#8211; JavaScript bookmarklet by Hariharan</title>
		<link>http://veerasundar.com/blog/2012/05/scroll-to-top-javascript-bookmarklet/#comment-2287</link>
		<dc:creator>Hariharan</dc:creator>
		<pubDate>Fri, 11 May 2012 06:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=3028#comment-2287</guid>
		<description>Yeah..home button works..Tested in Firefox :-)</description>
		<content:encoded><![CDATA[<p>Yeah..home button works..Tested in Firefox <img src='http://veerasundar.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

