<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Podcast #23</title>
	<atom:link href="http://blog.stackoverflow.com/2008/09/podcast-23/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/09/podcast-23/</link>
	<description>a programming community exploit</description>
	<lastBuildDate>Mon, 23 Nov 2009 09:29:13 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Grom</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6739</link>
		<dc:creator>Grom</dc:creator>
		<pubDate>Tue, 30 Sep 2008 04:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6739</guid>
		<description>Adrain wrote:
&gt; The performance profile of strlen + iterating through a string is not O(n-squared)… it’s O(n) + O(n) ~= O(2n) which is still O(n).

No its n squared cause you are performing strlen (which is O(n) algorithm) n times. n * O(n) == O(n^2)</description>
		<content:encoded><![CDATA[<p>Adrain wrote:<br />
&gt; The performance profile of strlen + iterating through a string is not O(n-squared)… it’s O(n) + O(n) ~= O(2n) which is still O(n).</p>
<p>No its n squared cause you are performing strlen (which is O(n) algorithm) n times. n * O(n) == O(n^2)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6731</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Mon, 29 Sep 2008 20:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6731</guid>
		<description>@Abdu:

Joel is objecting to the following style of code:

bool DoSomethingFunction()
{
  bool result;
  // ... code of your function
  if ( result )
    return true;
  else
    return false;
}

His preference is to have the following:

bool DoSomethingFunction()
{
  bool result;
  // ... code of your function
  return result;
}


@Adrian:

I believe Joel was talking about doing a strlen() call within a loop:
for ( int i = 0; i &lt; strlen(s); i++ )
{
  // do awesome Joel stuff here
}
In this example, you call strlen() a strlen() number of times resulting in O(n^2).

The quick fix results in your O(n + n) = O(n) calculation:
int len = strlen(s);
for ( int i = 0; i &lt; len; i++)
{
  // do awesome Joel stuff here
}</description>
		<content:encoded><![CDATA[<p>@Abdu:</p>
<p>Joel is objecting to the following style of code:</p>
<p>bool DoSomethingFunction()<br />
{<br />
  bool result;<br />
  // &#8230; code of your function<br />
  if ( result )<br />
    return true;<br />
  else<br />
    return false;<br />
}</p>
<p>His preference is to have the following:</p>
<p>bool DoSomethingFunction()<br />
{<br />
  bool result;<br />
  // &#8230; code of your function<br />
  return result;<br />
}</p>
<p>@Adrian:</p>
<p>I believe Joel was talking about doing a strlen() call within a loop:<br />
for ( int i = 0; i &lt; strlen(s); i++ )<br />
{<br />
  // do awesome Joel stuff here<br />
}<br />
In this example, you call strlen() a strlen() number of times resulting in O(n^2).</p>
<p>The quick fix results in your O(n + n) = O(n) calculation:<br />
int len = strlen(s);<br />
for ( int i = 0; i &lt; len; i++)<br />
{<br />
  // do awesome Joel stuff here<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6723</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Sun, 28 Sep 2008 23:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6723</guid>
		<description>My favorite thing to do in NYC (only been there once, three years ago) is hit Barcade Brooklyn:

http://www.barcadebrooklyn.com/

Kind of a hipster hang out, but old arcade games and microbrews qualify, I think at least, as geeky fare.</description>
		<content:encoded><![CDATA[<p>My favorite thing to do in NYC (only been there once, three years ago) is hit Barcade Brooklyn:</p>
<p><a href="http://www.barcadebrooklyn.com/" rel="nofollow">http://www.barcadebrooklyn.com/</a></p>
<p>Kind of a hipster hang out, but old arcade games and microbrews qualify, I think at least, as geeky fare.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brij</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6716</link>
		<dc:creator>Brij</dc:creator>
		<pubDate>Sun, 28 Sep 2008 16:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6716</guid>
		<description>I meant suit - not suite:)</description>
		<content:encoded><![CDATA[<p>I meant suit &#8211; not suite:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brij</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6715</link>
		<dc:creator>Brij</dc:creator>
		<pubDate>Sun, 28 Sep 2008 16:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6715</guid>
		<description>I have seen a quarter suite, basically waist up and covering the front of your torso. Almost like how they wrap you at the barbers. Unlike what Joel thought this is not printed suit. Rather it is a proper cheap tie, shirt and suit all stitched together. What it is used most often for are passport photos in photography studios in little shanties and towns (and in poorer parts of bigger cities)in India. Sine it is like a wrap it is an extreme case of one size fits all - and passpot photos being what they are no one is the wiser:)</description>
		<content:encoded><![CDATA[<p>I have seen a quarter suite, basically waist up and covering the front of your torso. Almost like how they wrap you at the barbers. Unlike what Joel thought this is not printed suit. Rather it is a proper cheap tie, shirt and suit all stitched together. What it is used most often for are passport photos in photography studios in little shanties and towns (and in poorer parts of bigger cities)in India. Sine it is like a wrap it is an extreme case of one size fits all &#8211; and passpot photos being what they are no one is the wiser:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6712</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sun, 28 Sep 2008 14:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6712</guid>
		<description>The performance profile of strlen + iterating through a string is not O(n-squared)... it&#039;s O(n) + O(n) ~= O(2n) which is still O(n).</description>
		<content:encoded><![CDATA[<p>The performance profile of strlen + iterating through a string is not O(n-squared)&#8230; it&#8217;s O(n) + O(n) ~= O(2n) which is still O(n).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Miklojcik</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6699</link>
		<dc:creator>Joe Miklojcik</dc:creator>
		<pubDate>Sat, 27 Sep 2008 23:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6699</guid>
		<description>The conflict seems to be Joel who thinks stackoverflow is *about programmers* and Jeff who thinks stackoverflow is *about programming*.  This should have been decided before any code was written (aluded to in the 7 mistakes).  Food for thought!</description>
		<content:encoded><![CDATA[<p>The conflict seems to be Joel who thinks stackoverflow is *about programmers* and Jeff who thinks stackoverflow is *about programming*.  This should have been decided before any code was written (aluded to in the 7 mistakes).  Food for thought!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6677</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Fri, 26 Sep 2008 20:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6677</guid>
		<description>Go see Monty Python&#039;s Spamalot on Broadway.</description>
		<content:encoded><![CDATA[<p>Go see Monty Python&#8217;s Spamalot on Broadway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Galloway</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6676</link>
		<dc:creator>Jon Galloway</dc:creator>
		<pubDate>Fri, 26 Sep 2008 19:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6676</guid>
		<description>It&#039;s be nice if there was a tag or some other way to view closed posts for review and possible resurrection.

I tried searching for &quot;closed&quot; in the title (since searching for [closed] would filter on a &quot;closed&quot; tag), but it looks like the [closed] annotation is added when displaying the items and isn&#039;t actually part of the title.

You can get an idea of what the closed posts are by browsing through posts with the lowest votes and looking at the titles:
http://stackoverflow.com/questions?page=645&amp;sort=votes

I reluctantly agree at this point - there are some posts which look like they were closed by overzealous users.</description>
		<content:encoded><![CDATA[<p>It&#8217;s be nice if there was a tag or some other way to view closed posts for review and possible resurrection.</p>
<p>I tried searching for &#8220;closed&#8221; in the title (since searching for [closed] would filter on a &#8220;closed&#8221; tag), but it looks like the [closed] annotation is added when displaying the items and isn&#8217;t actually part of the title.</p>
<p>You can get an idea of what the closed posts are by browsing through posts with the lowest votes and looking at the titles:<br />
<a href="http://stackoverflow.com/questions?page=645&amp;sort=votes" rel="nofollow">http://stackoverflow.com/questions?page=645&amp;sort=votes</a></p>
<p>I reluctantly agree at this point &#8211; there are some posts which look like they were closed by overzealous users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JasonMichael</title>
		<link>http://blog.stackoverflow.com/2008/09/podcast-23/#comment-6670</link>
		<dc:creator>JasonMichael</dc:creator>
		<pubDate>Fri, 26 Sep 2008 15:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=103#comment-6670</guid>
		<description>JoelOnSoftware.com - the Developer/Programmer Reality Movie ... where is it?  There&#039;s been various posts about this movie being made since 2005, including a call out for filmmakers to make it, posted on the site.  Now there&#039;s a mention in this podcast about filming being done...  in 2008?  How many movies will there be?   Hopefully 3!  That would be great!</description>
		<content:encoded><![CDATA[<p>JoelOnSoftware.com &#8211; the Developer/Programmer Reality Movie &#8230; where is it?  There&#8217;s been various posts about this movie being made since 2005, including a call out for filmmakers to make it, posted on the site.  Now there&#8217;s a mention in this podcast about filming being done&#8230;  in 2008?  How many movies will there be?   Hopefully 3!  That would be great!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
