<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Using FizzBuzz to Find Developers who Grok Coding</title>
	<atom:link href="http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/</link>
	<description>Musings on technology, development, and the world in general</description>
	<lastBuildDate>Fri, 25 May 2012 18:09:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: coder</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10219</link>
		<dc:creator><![CDATA[coder]]></dc:creator>
		<pubDate>Fri, 25 May 2012 18:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10219</guid>
		<description><![CDATA[http://codepad.org/NniV84DO]]></description>
		<content:encoded><![CDATA[<p><a href="http://codepad.org/NniV84DO" rel="nofollow">http://codepad.org/NniV84DO</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Peters (@MoonlightLuke)</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10218</link>
		<dc:creator><![CDATA[Luke Peters (@MoonlightLuke)]]></dc:creator>
		<pubDate>Wed, 23 May 2012 16:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10218</guid>
		<description><![CDATA[Simple jQuery FizzBuzz script :D Quick and dirty, lol.
http://jsfiddle.net/lukempeters/LEDsG/]]></description>
		<content:encoded><![CDATA[<p>Simple jQuery FizzBuzz script <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Quick and dirty, lol.<br />
<a href="http://jsfiddle.net/lukempeters/LEDsG/" rel="nofollow">http://jsfiddle.net/lukempeters/LEDsG/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khaln</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10217</link>
		<dc:creator><![CDATA[khaln]]></dc:creator>
		<pubDate>Mon, 21 May 2012 08:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10217</guid>
		<description><![CDATA[ksa]]></description>
		<content:encoded><![CDATA[<p>ksa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MATLAB guy</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10215</link>
		<dc:creator><![CDATA[MATLAB guy]]></dc:creator>
		<pubDate>Sun, 29 Apr 2012 09:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10215</guid>
		<description><![CDATA[x = 1:100;
out = cellstr( num2str(x(:), &#039;%d&#039;) );
out(mod(x,3)==0) = {&#039;Fizz&#039;};
out(mod(x,5)==0) = {&#039;Buzz&#039;};
out(mod(x,15)==0) = {&#039;FizzBuzz&#039;};
disp( strtrim(out) )]]></description>
		<content:encoded><![CDATA[<p>x = 1:100;<br />
out = cellstr( num2str(x(:), &#8216;%d&#8217;) );<br />
out(mod(x,3)==0) = {&#8216;Fizz&#8217;};<br />
out(mod(x,5)==0) = {&#8216;Buzz&#8217;};<br />
out(mod(x,15)==0) = {&#8216;FizzBuzz&#8217;};<br />
disp( strtrim(out) )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Rehman</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10214</link>
		<dc:creator><![CDATA[Josh Rehman]]></dc:creator>
		<pubDate>Sat, 28 Apr 2012 16:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10214</guid>
		<description><![CDATA[There is no need for complex if/else. In Java:


public class FizzBuzz {
  public static void main(String[] args) {
    for (int i = 1; i &lt; 101; i++) {
      boolean fizz = i % 3 == 0;
      boolean buzz = i % 5 == 0;
      if (fizz &#124;&#124; buzz) {
        System.out.println(i + &quot;:&quot; + (fizz ? &quot;Fizz&quot; : &quot;&quot;) + (buzz ? &quot;Buzz&quot; : &quot;&quot;));
      }
    }
  }
}

(This took me 4 minutes from opening Eclipse to execution)]]></description>
		<content:encoded><![CDATA[<p>There is no need for complex if/else. In Java:</p>
<p>public class FizzBuzz {<br />
  public static void main(String[] args) {<br />
    for (int i = 1; i &lt; 101; i++) {<br />
      boolean fizz = i % 3 == 0;<br />
      boolean buzz = i % 5 == 0;<br />
      if (fizz || buzz) {<br />
        System.out.println(i + &quot;:&quot; + (fizz ? &quot;Fizz&quot; : &quot;&quot;) + (buzz ? &quot;Buzz&quot; : &quot;&quot;));<br />
      }<br />
    }<br />
  }<br />
}</p>
<p>(This took me 4 minutes from opening Eclipse to execution)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Interviewing Programmers (Or: When FizzBuzz is asking too much) &#124; Brian Williammee</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10212</link>
		<dc:creator><![CDATA[Interviewing Programmers (Or: When FizzBuzz is asking too much) &#124; Brian Williammee]]></dc:creator>
		<pubDate>Sun, 22 Apr 2012 05:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10212</guid>
		<description><![CDATA[[...] entered the software development lexicon in 2007, when Imran Ghory wrote a post about a simple programming problem that can weed out those who just aren&#8217;t very good when it [...]]]></description>
		<content:encoded><![CDATA[<p>[...] entered the software development lexicon in 2007, when Imran Ghory wrote a post about a simple programming problem that can weed out those who just aren&#8217;t very good when it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: أساحبي</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10211</link>
		<dc:creator><![CDATA[أساحبي]]></dc:creator>
		<pubDate>Sun, 22 Apr 2012 05:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10211</guid>
		<description><![CDATA[While all of you nice people wrote comments, Imran is not having fun on the beach, or dead, i wish him well i don&#039;t know the dude, anyways, what makes a good programmer? MONEY ... if you make good money making software you are a good programmer, period.]]></description>
		<content:encoded><![CDATA[<p>While all of you nice people wrote comments, Imran is not having fun on the beach, or dead, i wish him well i don&#8217;t know the dude, anyways, what makes a good programmer? MONEY &#8230; if you make good money making software you are a good programmer, period.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gui R</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10210</link>
		<dc:creator><![CDATA[Gui R]]></dc:creator>
		<pubDate>Sat, 21 Apr 2012 15:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10210</guid>
		<description><![CDATA[My implementation in java: http://pastebin.com/XTYeDcNU
I tried to make it as fast/efficient and clean as possible. Suggestion/tips/criticisms welcome.]]></description>
		<content:encoded><![CDATA[<p>My implementation in java: <a href="http://pastebin.com/XTYeDcNU" rel="nofollow">http://pastebin.com/XTYeDcNU</a><br />
I tried to make it as fast/efficient and clean as possible. Suggestion/tips/criticisms welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bobs your unlcce</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10209</link>
		<dc:creator><![CDATA[bobs your unlcce]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 14:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10209</guid>
		<description><![CDATA[I guess that this is your solution to the fizzbuzz problem, but what programming language is it? :-)]]></description>
		<content:encoded><![CDATA[<p>I guess that this is your solution to the fizzbuzz problem, but what programming language is it? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pisto</title>
		<link>http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10208</link>
		<dc:creator><![CDATA[Pisto]]></dc:creator>
		<pubDate>Wed, 11 Apr 2012 14:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/#comment-10208</guid>
		<description><![CDATA[Ugh, how sloppy of me. For consistency, that should be

...
else
Put(Positive’Image(i));
end if;
...

And the comment double dashes rendered into em-dashes...]]></description>
		<content:encoded><![CDATA[<p>Ugh, how sloppy of me. For consistency, that should be</p>
<p>&#8230;<br />
else<br />
Put(Positive’Image(i));<br />
end if;<br />
&#8230;</p>
<p>And the comment double dashes rendered into em-dashes&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

