<?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 #11</title>
	<atom:link href="http://blog.stackoverflow.com/2008/06/podcast-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/06/podcast-11/</link>
	<description>a programming community exploit</description>
	<lastBuildDate>Sun, 22 Nov 2009 20:02:53 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Josh</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-4445</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 29 Jul 2008 04:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-4445</guid>
		<description>This was a good podcast and some good comments in reply, especially in response to the odd path that Jeff was wandering down with Markdown.

On the full-text search topic, I&#039;ve yet to see a native RDBMS implementation that didn&#039;t suck, from Oracle to MySQL.  I&#039;ve used Sphinx with great success (easy to setup and *fast*!), but that&#039;s probably wholly inappropriate for this project given the other technologies involved.  Lucene is also pretty good, but I would second the recommendation to use the Java version.</description>
		<content:encoded><![CDATA[<p>This was a good podcast and some good comments in reply, especially in response to the odd path that Jeff was wandering down with Markdown.</p>
<p>On the full-text search topic, I&#8217;ve yet to see a native RDBMS implementation that didn&#8217;t suck, from Oracle to MySQL.  I&#8217;ve used Sphinx with great success (easy to setup and *fast*!), but that&#8217;s probably wholly inappropriate for this project given the other technologies involved.  Lucene is also pretty good, but I would second the recommendation to use the Java version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mojo</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2332</link>
		<dc:creator>mojo</dc:creator>
		<pubDate>Sun, 06 Jul 2008 08:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2332</guid>
		<description>Are there other, better javascript syntax highlighters we should be looking at?

take a look at this lib:
http://softwaremaniacs.org/soft/highlight/en/</description>
		<content:encoded><![CDATA[<p>Are there other, better javascript syntax highlighters we should be looking at?</p>
<p>take a look at this lib:<br />
<a href="http://softwaremaniacs.org/soft/highlight/en/" rel="nofollow">http://softwaremaniacs.org/soft/highlight/en/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gishu</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2250</link>
		<dc:creator>Gishu</dc:creator>
		<pubDate>Thu, 03 Jul 2008 05:22:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2250</guid>
		<description>Lookout Rules! Once again, The standardss for Search in Outlook2003 just got a lot higher. Actually read about it on Joel&#039;s blog a long time ago and forgot about it... Today I was searching for an attachment with a specific name (Hey it must be in this folder.. search.. No! Then it might be in Sent items.. search No! Where is it ?)
Finally found it.. Then I was listening to this podcast and I had to try.. Installed it.. Restart Outlook, Built the index. Search. On the money!!
Thanks for the tip...</description>
		<content:encoded><![CDATA[<p>Lookout Rules! Once again, The standardss for Search in Outlook2003 just got a lot higher. Actually read about it on Joel&#8217;s blog a long time ago and forgot about it&#8230; Today I was searching for an attachment with a specific name (Hey it must be in this folder.. search.. No! Then it might be in Sent items.. search No! Where is it ?)<br />
Finally found it.. Then I was listening to this podcast and I had to try.. Installed it.. Restart Outlook, Built the index. Search. On the money!!<br />
Thanks for the tip&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terrapin</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2231</link>
		<dc:creator>Terrapin</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2231</guid>
		<description>Re: Robin Goodfellow

As I mentioned in my last comment, the only assumption I made is that &quot;Jeff and company have done their benchmarking due diligence&quot; in terms of storing Markdown + HTML vs. only Markdown.

In other words, I agree with (and practice) performance measurement, and I think premature optimization is a bad thing.

Also, Roland Tepp makes a particularly good point - if the HTML from Markdown gets cached, then it&#039;s going to be a maintenance pain in the butt if the Markdown parser ever needs to change.

But here&#039;s the thing - in my applications, I do cache stuff without measuring the performance both ways. I do this because I too am a paid developer, and I work within often unrealistic budgetary and time constraints, and sometimes you just need to get stuff done; and because I&#039;ve measured it before and I can tell you that if I&#039;m caching something, 9 times out of 10, it WILL be faster that way.

The Markdown + HTML thing may be that 1 out of 10 that gets by every now and then, but at least I tried :)</description>
		<content:encoded><![CDATA[<p>Re: Robin Goodfellow</p>
<p>As I mentioned in my last comment, the only assumption I made is that &#8220;Jeff and company have done their benchmarking due diligence&#8221; in terms of storing Markdown + HTML vs. only Markdown.</p>
<p>In other words, I agree with (and practice) performance measurement, and I think premature optimization is a bad thing.</p>
<p>Also, Roland Tepp makes a particularly good point &#8211; if the HTML from Markdown gets cached, then it&#8217;s going to be a maintenance pain in the butt if the Markdown parser ever needs to change.</p>
<p>But here&#8217;s the thing &#8211; in my applications, I do cache stuff without measuring the performance both ways. I do this because I too am a paid developer, and I work within often unrealistic budgetary and time constraints, and sometimes you just need to get stuff done; and because I&#8217;ve measured it before and I can tell you that if I&#8217;m caching something, 9 times out of 10, it WILL be faster that way.</p>
<p>The Markdown + HTML thing may be that 1 out of 10 that gets by every now and then, but at least I tried :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin Goodfellow</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2229</link>
		<dc:creator>Robin Goodfellow</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2229</guid>
		<description>@Terrapin, experience has shown that your assumptions about optimization are not correct. Even in the case where extremely competent engineers are working on code they wrote and are intimately familiar with they are still generally not able to identify the areas that actually require optimization. What happens instead is that, without measuring performance, parts that aren&#039;t the bottleneck get prematurely optimized, adding accidental complexity where it&#039;s unnecessary and spending development effort (aka highly paid developer time, aka honest to goodness dollars) on areas that have low benefit. Smart developers put their effort into areas that have a high rate of return.

Premature optimization in software is like putting fancy rims on a crappy car.

Both actions are the result of acting on impulse rather than keeping a level head and taking the time to make an informed decision on where to invest resources.</description>
		<content:encoded><![CDATA[<p>@Terrapin, experience has shown that your assumptions about optimization are not correct. Even in the case where extremely competent engineers are working on code they wrote and are intimately familiar with they are still generally not able to identify the areas that actually require optimization. What happens instead is that, without measuring performance, parts that aren&#8217;t the bottleneck get prematurely optimized, adding accidental complexity where it&#8217;s unnecessary and spending development effort (aka highly paid developer time, aka honest to goodness dollars) on areas that have low benefit. Smart developers put their effort into areas that have a high rate of return.</p>
<p>Premature optimization in software is like putting fancy rims on a crappy car.</p>
<p>Both actions are the result of acting on impulse rather than keeping a level head and taking the time to make an informed decision on where to invest resources.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roland Tepp</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2213</link>
		<dc:creator>Roland Tepp</dc:creator>
		<pubDate>Tue, 01 Jul 2008 14:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2213</guid>
		<description>As someone pointed out earlier in this discussion, the real issue with storing client generated HTML along with markdown is that it creates two huge XSS vulnerabilities:
a) a malicious user can craft server request containing HTML that has nothing to do with the markdown content
b) when new XSS vulnerability is encountered, fixing it in conversion alone does not fix exploits already submitted to the DB.

So, basically, I know you think this is neat and clever trick, but in the end, it still is a premature optimization, as it tries to solve a problem you yet do not seem to have and it creates a maintenance nightmare, whenever you need to modify Markdown-&gt;HTML conversion (e.g. fixing a bug in conversion or plugging some XSS holes)</description>
		<content:encoded><![CDATA[<p>As someone pointed out earlier in this discussion, the real issue with storing client generated HTML along with markdown is that it creates two huge XSS vulnerabilities:<br />
a) a malicious user can craft server request containing HTML that has nothing to do with the markdown content<br />
b) when new XSS vulnerability is encountered, fixing it in conversion alone does not fix exploits already submitted to the DB.</p>
<p>So, basically, I know you think this is neat and clever trick, but in the end, it still is a premature optimization, as it tries to solve a problem you yet do not seem to have and it creates a maintenance nightmare, whenever you need to modify Markdown-&gt;HTML conversion (e.g. fixing a bug in conversion or plugging some XSS holes)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Nicholls</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2196</link>
		<dc:creator>Colin Nicholls</dc:creator>
		<pubDate>Mon, 30 Jun 2008 22:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2196</guid>
		<description>&gt;&gt; don&#039;t use outlook anymore

Jeff, I&#039;m curious. What do you use instead of Outlook these days, for an email client?</description>
		<content:encoded><![CDATA[<p>&gt;&gt; don&#8217;t use outlook anymore</p>
<p>Jeff, I&#8217;m curious. What do you use instead of Outlook these days, for an email client?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terrapin</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2193</link>
		<dc:creator>Terrapin</dc:creator>
		<pubDate>Mon, 30 Jun 2008 20:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2193</guid>
		<description>@Warren Young

There is a difference between premature optimization, and picking the low-hanging fruit. In real world applications, you need to actually get things done.

If you know that there is a good probability that a particular process or piece of code will be faster than another process or piece of code, then you might as well implement it while you&#039;re thinking about it - as long as it doesn&#039;t take too long. If it takes too long, then THAT is premature optimization.

In my estimation, there&#039;s no such thing as &quot;fast enough.&quot; One has to weigh effort against the result (if it takes 2 hours to speed up a page by 200 ms, it&#039;s probably not worth it).

With that said, I wholeheartedly agree with you that there is no way to know if your &lt;a href=&quot;http://www.codinghorror.com/blog/archives/000061.html&quot; rel=&quot;nofollow&quot;&gt;optimizations are optimizing&lt;/a&gt; without measurement. My assumption is that Jeff and company have done their benchmarking due diligence.

I believe when Jeff was talking about page performance, he was referencing the amount of time to execute the page on the server, including database calls. Either way, there isn&#039;t much you can do about response time (or &quot;internet latency&quot;) outside of reducing the response size as much as possible, and using gzip/deflate compression when appropriate.

In terms of your postulation regarding Markdown processing on the client:
  &quot;rendering the Markdown on the client side ... may make it slightly faster, because Markdown is a lighter-weight markup language than HTML. Fewer bits to transfer means less server processing time and less network transfer time&quot;

You are correct in that Markdown does have slightly less overhead than HTML and would result in a smaller response size, but I believe that processing Markdown on the client is an example of premature optimization in that the JavaScript parsing is likely slower than processing on the server with compiled code.

The point is, YES, you should benchmark different ways of doing things; but the trick is to guess the correct path in the first place. There&#039;s no need to optimize if you did it right the first time.

However, you do make a very good point. Most programmers talk out their ass about this code being better than that. I we just have a different take on the subject of optimizing. But after all, &lt;a href=&quot;http://www.codinghorror.com/blog/archives/001130.html&quot; rel=&quot;nofollow&quot;&gt;Programming is all about knowing when to boil the orange sponge donkey across the phillipines&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@Warren Young</p>
<p>There is a difference between premature optimization, and picking the low-hanging fruit. In real world applications, you need to actually get things done.</p>
<p>If you know that there is a good probability that a particular process or piece of code will be faster than another process or piece of code, then you might as well implement it while you&#8217;re thinking about it &#8211; as long as it doesn&#8217;t take too long. If it takes too long, then THAT is premature optimization.</p>
<p>In my estimation, there&#8217;s no such thing as &#8220;fast enough.&#8221; One has to weigh effort against the result (if it takes 2 hours to speed up a page by 200 ms, it&#8217;s probably not worth it).</p>
<p>With that said, I wholeheartedly agree with you that there is no way to know if your <a href="http://www.codinghorror.com/blog/archives/000061.html" rel="nofollow">optimizations are optimizing</a> without measurement. My assumption is that Jeff and company have done their benchmarking due diligence.</p>
<p>I believe when Jeff was talking about page performance, he was referencing the amount of time to execute the page on the server, including database calls. Either way, there isn&#8217;t much you can do about response time (or &#8220;internet latency&#8221;) outside of reducing the response size as much as possible, and using gzip/deflate compression when appropriate.</p>
<p>In terms of your postulation regarding Markdown processing on the client:<br />
  &#8220;rendering the Markdown on the client side &#8230; may make it slightly faster, because Markdown is a lighter-weight markup language than HTML. Fewer bits to transfer means less server processing time and less network transfer time&#8221;</p>
<p>You are correct in that Markdown does have slightly less overhead than HTML and would result in a smaller response size, but I believe that processing Markdown on the client is an example of premature optimization in that the JavaScript parsing is likely slower than processing on the server with compiled code.</p>
<p>The point is, YES, you should benchmark different ways of doing things; but the trick is to guess the correct path in the first place. There&#8217;s no need to optimize if you did it right the first time.</p>
<p>However, you do make a very good point. Most programmers talk out their ass about this code being better than that. I we just have a different take on the subject of optimizing. But after all, <a href="http://www.codinghorror.com/blog/archives/001130.html" rel="nofollow">Programming is all about knowing when to boil the orange sponge donkey across the phillipines</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harvey</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2191</link>
		<dc:creator>Harvey</dc:creator>
		<pubDate>Mon, 30 Jun 2008 19:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2191</guid>
		<description>One more note:
The discussion about MD/HTML was steered into an optimization discussion during the podcast causing even Joel to forget about the early requirement of no JS for passive use.</description>
		<content:encoded><![CDATA[<p>One more note:<br />
The discussion about MD/HTML was steered into an optimization discussion during the podcast causing even Joel to forget about the early requirement of no JS for passive use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harvey</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-11/#comment-2190</link>
		<dc:creator>Harvey</dc:creator>
		<pubDate>Mon, 30 Jun 2008 19:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=59#comment-2190</guid>
		<description>Markdown/HTML(caching):

Everyone seems to be missing the point. It has never been about optimization. According to one of their functional specifications:

&quot;Of course passively reading a question and the associated answers will work fine without JavaScript enabled.&quot;

They covered this requirement here:

http://blog.stackoverflow.com/2008/06/is-it-ok-to-require-javascript/

and in Podcast #9:

http://blog.stackoverflow.com/2008/06/podcast-9/

---
1. Is it possible to run javascript on the server?
2. Could you run the MD-to-HTML generator portion of WMD on the server just before saving to the database?

If Yes &amp; Yes, then you don&#039;t have the inconsistencies of two code-paths, you have the XSS safety of doing the conversion on the server, and you meet the original requirement of no javascript for passive use.</description>
		<content:encoded><![CDATA[<p>Markdown/HTML(caching):</p>
<p>Everyone seems to be missing the point. It has never been about optimization. According to one of their functional specifications:</p>
<p>&#8220;Of course passively reading a question and the associated answers will work fine without JavaScript enabled.&#8221;</p>
<p>They covered this requirement here:</p>
<p><a href="http://blog.stackoverflow.com/2008/06/is-it-ok-to-require-javascript/" rel="nofollow">http://blog.stackoverflow.com/2008/06/is-it-ok-to-require-javascript/</a></p>
<p>and in Podcast #9:</p>
<p><a href="http://blog.stackoverflow.com/2008/06/podcast-9/" rel="nofollow">http://blog.stackoverflow.com/2008/06/podcast-9/</a></p>
<p>&#8212;<br />
1. Is it possible to run javascript on the server?<br />
2. Could you run the MD-to-HTML generator portion of WMD on the server just before saving to the database?</p>
<p>If Yes &amp; Yes, then you don&#8217;t have the inconsistencies of two code-paths, you have the XSS safety of doing the conversion on the server, and you meet the original requirement of no javascript for passive use.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
