<?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 Code Vault</title>
	<atom:link href="http://codedemigod.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://codedemigod.com/blog</link>
	<description>You should be the change that you want to see in the World</description>
	<lastBuildDate>Wed, 01 Dec 2010 19:34:08 +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 Working with Hadoop: My first MapReduce App by Maha Alabduljalil</title>
		<link>http://codedemigod.com/blog/?p=120&#038;cpage=1#comment-12233</link>
		<dc:creator>Maha Alabduljalil</dc:creator>
		<pubDate>Wed, 01 Dec 2010 19:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=120#comment-12233</guid>
		<description>another question ...

 What happens if you write:   return splits.toArray() ;
instead of :  return splits.toArray(new PrimeInputSplit[splits.size()]);

in the getSplits of the PrimeTextInputSplit class ?</description>
		<content:encoded><![CDATA[<p>another question &#8230;</p>
<p> What happens if you write:   return splits.toArray() ;<br />
instead of :  return splits.toArray(new PrimeInputSplit[splits.size()]);</p>
<p>in the getSplits of the PrimeTextInputSplit class ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Hadoop: My first MapReduce App by Maha</title>
		<link>http://codedemigod.com/blog/?p=120&#038;cpage=1#comment-12232</link>
		<dc:creator>Maha</dc:creator>
		<pubDate>Wed, 01 Dec 2010 18:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=120#comment-12232</guid>
		<description>Thanks a lot :) Although, I&#039;m a little suspicious about: 
 
//add last split, with remainder if any  // Is there an error?? start+remainder
        splits.add(new PrimeInputSplit(startingNumberInSplit, 
                         endingNumberInSplit + remainderInLastSplit));

because endingNumerInSplit is already updated in the loop above it to be starting+NumInSplit ... So that line should be:

        splits.add(new PrimeInputSplit(startingNumberInSplit, 
                         startingNumberInSplit + remainderInLastSplit));

Right?

Anyways, thanks again, I&#039;ve been looking for this for days !!</description>
		<content:encoded><![CDATA[<p>Thanks a lot <img src='http://www.codedemigod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Although, I&#8217;m a little suspicious about: </p>
<p>//add last split, with remainder if any  // Is there an error?? start+remainder<br />
        splits.add(new PrimeInputSplit(startingNumberInSplit,<br />
                         endingNumberInSplit + remainderInLastSplit));</p>
<p>because endingNumerInSplit is already updated in the loop above it to be starting+NumInSplit &#8230; So that line should be:</p>
<p>        splits.add(new PrimeInputSplit(startingNumberInSplit,<br />
                         startingNumberInSplit + remainderInLastSplit));</p>
<p>Right?</p>
<p>Anyways, thanks again, I&#8217;ve been looking for this for days !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Interesting &#8220;bloated java&#8221; Article by athomas</title>
		<link>http://codedemigod.com/blog/?p=111&#038;cpage=1#comment-12230</link>
		<dc:creator>athomas</dc:creator>
		<pubDate>Thu, 21 Oct 2010 13:09:50 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=111#comment-12230</guid>
		<description>I was spoiled for awhile when I did Python for over 4 years.  Then I got another job doing Java.  It was horrible.  Had to write far too many more lines of code to accomplish the same tasks.  Awful</description>
		<content:encoded><![CDATA[<p>I was spoiled for awhile when I did Python for over 4 years.  Then I got another job doing Java.  It was horrible.  Had to write far too many more lines of code to accomplish the same tasks.  Awful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Hadoop: My first MapReduce App by Rajgopal</title>
		<link>http://codedemigod.com/blog/?p=120&#038;cpage=1#comment-12226</link>
		<dc:creator>Rajgopal</dc:creator>
		<pubDate>Sat, 07 Aug 2010 18:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=120#comment-12226</guid>
		<description>Hi.. Nice article.. I have a few doubts, in PrimeTestInputFormat.java, there is a int numSplits argument. what factor decides the value of the argument ?</description>
		<content:encoded><![CDATA[<p>Hi.. Nice article.. I have a few doubts, in PrimeTestInputFormat.java, there is a int numSplits argument. what factor decides the value of the argument ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Hadoop: My first MapReduce App by lovecpp</title>
		<link>http://codedemigod.com/blog/?p=120&#038;cpage=1#comment-12225</link>
		<dc:creator>lovecpp</dc:creator>
		<pubDate>Mon, 02 Aug 2010 03:48:07 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=120#comment-12225</guid>
		<description>a useful article!
But how to use Hadoop0.20ApI to code PrimeRecordReader?</description>
		<content:encoded><![CDATA[<p>a useful article!<br />
But how to use Hadoop0.20ApI to code PrimeRecordReader?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where&#8217;s the KABOOM??? by Elane Ploude</title>
		<link>http://codedemigod.com/blog/?p=101&#038;cpage=1#comment-12224</link>
		<dc:creator>Elane Ploude</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=101#comment-12224</guid>
		<description>Very Good post man Thanks</description>
		<content:encoded><![CDATA[<p>Very Good post man Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Hadoop: My first MapReduce App by Dhyan</title>
		<link>http://codedemigod.com/blog/?p=120&#038;cpage=1#comment-12221</link>
		<dc:creator>Dhyan</dc:creator>
		<pubDate>Wed, 23 Jun 2010 17:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=120#comment-12221</guid>
		<description>Great article, thanks a lot.</description>
		<content:encoded><![CDATA[<p>Great article, thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Evolution of Frameworks by Dane Bayn</title>
		<link>http://codedemigod.com/blog/?p=105&#038;cpage=1#comment-12206</link>
		<dc:creator>Dane Bayn</dc:creator>
		<pubDate>Thu, 20 May 2010 23:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=105#comment-12206</guid>
		<description>We must keep moving in the right direction or bad things could happen, great post though!</description>
		<content:encoded><![CDATA[<p>We must keep moving in the right direction or bad things could happen, great post though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firemote project is finally public by Alaa</title>
		<link>http://codedemigod.com/blog/?p=129&#038;cpage=1#comment-12205</link>
		<dc:creator>Alaa</dc:creator>
		<pubDate>Sun, 02 May 2010 15:07:43 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=129#comment-12205</guid>
		<description>Hi David,

There are some papers out there. Not sure what specifically you&#039;re looking for but field trials are documented for different types of fire detection systems(sensor systems have probably the least coverage because they&#039;re the newest). We&#039;re hoping to publish our approach some time soon. Email me offline if you&#039;d like to talk.

Alaa.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>There are some papers out there. Not sure what specifically you&#8217;re looking for but field trials are documented for different types of fire detection systems(sensor systems have probably the least coverage because they&#8217;re the newest). We&#8217;re hoping to publish our approach some time soon. Email me offline if you&#8217;d like to talk.</p>
<p>Alaa.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firemote project is finally public by David Balcaen</title>
		<link>http://codedemigod.com/blog/?p=129&#038;cpage=1#comment-12204</link>
		<dc:creator>David Balcaen</dc:creator>
		<pubDate>Wed, 07 Apr 2010 15:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://codedemigod.com/blog/?p=129#comment-12204</guid>
		<description>Hello,
The company I work for is specifying, at the customer&#039;s request, a distributed network fire sensor system for parts of a Greek forest.  I am looking for evidence that such a system does indeed help in detecting forest fires.  Can you point me to field trials and any papers describing such work?  
Thank you for any attention you can give me.
David Balcaen</description>
		<content:encoded><![CDATA[<p>Hello,<br />
The company I work for is specifying, at the customer&#8217;s request, a distributed network fire sensor system for parts of a Greek forest.  I am looking for evidence that such a system does indeed help in detecting forest fires.  Can you point me to field trials and any papers describing such work?<br />
Thank you for any attention you can give me.<br />
David Balcaen</p>
]]></content:encoded>
	</item>
</channel>
</rss>

