<?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 #10</title>
	<atom:link href="http://blog.stackoverflow.com/2008/06/podcast-10/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/06/podcast-10/</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: Ouch</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-2277</link>
		<dc:creator>Ouch</dc:creator>
		<pubDate>Fri, 04 Jul 2008 00:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-2277</guid>
		<description>Good podcast... but I have to agree that there needs to be a lot less interruption going on.  If need be, you may even have to go to the extent where if one person has their mic on, the other persons&#039; gets cut off... because at many points, it does become almost incoherent due to the interrupting.</description>
		<content:encoded><![CDATA[<p>Good podcast&#8230; but I have to agree that there needs to be a lot less interruption going on.  If need be, you may even have to go to the extent where if one person has their mic on, the other persons&#8217; gets cut off&#8230; because at many points, it does become almost incoherent due to the interrupting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roland Tepp</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1896</link>
		<dc:creator>Roland Tepp</dc:creator>
		<pubDate>Fri, 27 Jun 2008 09:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1896</guid>
		<description>Hi Jeff &amp; Joel
--------------

I am just going to comment here on some points (i know You&#039;d prefer audio feedback, but for various reasons it is not possible atm).

On the topic of source controls:
  I have not really used that as heavily, but from what I witnessed, I was also rather impressed by AccuRev source control system. It is a commercial source control system that is heavily optimized for massive branching and merging just as modern distributed scm&#039;s but it is still a &quot;traditional&quot; client-server type system, so the mental leap from using CVS is not all that huge.

About using links for actions:
  I would recommend investing some time in learning the RESTful architectural model (specially useful in the web development context) and understanding the main premise that everything on your site is a &quot;resource&quot; uniquely identified by it&#039;s URL. You use this URL to access that resource and you use various HTTP methods (GET, POST, PUT and DELETE) for acting upon these resources:
    GET: Reads the resource and is guaranteed to be nondestructive
    PUT: Updates the resource
    POST: Creates new resource
    DELETE: Deletes the resource
  
  This way you can easily avoid the issue of &quot;destuctive urls&quot; being accidentally triggered by web crawlers, etc. without needing to resort to some artificial means of protection (e.g. robots.txt or some form of agent string parsing)

As a response to Abdu on searchability:
  Make sure that your site is thoroughly searchable on the google first and if you must provide your own powerful customizable search, learn from Google - just give me the search box and if you offer some advanced stuff, allow me to specify all that on this search box in a text form instead of taking me to that unwieldy starship style searching control panel thingie...
  
  Also - if you have your own site wide search facility, make sure you expose it as an OpenSearch feed, so that not only big search engines can tap into that but also my firefox and/or IE could install your site as a search plug-in.
  
  Another good idea (while we&#039;re at it) would be to allow me (as a registered user) to save my searches for later reuse and even provide an RSS feed to the search results. So if I am interested in certain topics, I could just set up a search, subscribe to the results of that search  and get notified as soon as someone post a question or an answer that pops up on that search.

Thanks for the podcasts and the blog and kep up the good work and I hope the stack overflow is everything You and I hope it will be :)</description>
		<content:encoded><![CDATA[<p>Hi Jeff &amp; Joel<br />
&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>I am just going to comment here on some points (i know You&#8217;d prefer audio feedback, but for various reasons it is not possible atm).</p>
<p>On the topic of source controls:<br />
  I have not really used that as heavily, but from what I witnessed, I was also rather impressed by AccuRev source control system. It is a commercial source control system that is heavily optimized for massive branching and merging just as modern distributed scm&#8217;s but it is still a &#8220;traditional&#8221; client-server type system, so the mental leap from using CVS is not all that huge.</p>
<p>About using links for actions:<br />
  I would recommend investing some time in learning the RESTful architectural model (specially useful in the web development context) and understanding the main premise that everything on your site is a &#8220;resource&#8221; uniquely identified by it&#8217;s URL. You use this URL to access that resource and you use various HTTP methods (GET, POST, PUT and DELETE) for acting upon these resources:<br />
    GET: Reads the resource and is guaranteed to be nondestructive<br />
    PUT: Updates the resource<br />
    POST: Creates new resource<br />
    DELETE: Deletes the resource</p>
<p>  This way you can easily avoid the issue of &#8220;destuctive urls&#8221; being accidentally triggered by web crawlers, etc. without needing to resort to some artificial means of protection (e.g. robots.txt or some form of agent string parsing)</p>
<p>As a response to Abdu on searchability:<br />
  Make sure that your site is thoroughly searchable on the google first and if you must provide your own powerful customizable search, learn from Google &#8211; just give me the search box and if you offer some advanced stuff, allow me to specify all that on this search box in a text form instead of taking me to that unwieldy starship style searching control panel thingie&#8230;</p>
<p>  Also &#8211; if you have your own site wide search facility, make sure you expose it as an OpenSearch feed, so that not only big search engines can tap into that but also my firefox and/or IE could install your site as a search plug-in.</p>
<p>  Another good idea (while we&#8217;re at it) would be to allow me (as a registered user) to save my searches for later reuse and even provide an RSS feed to the search results. So if I am interested in certain topics, I could just set up a search, subscribe to the results of that search  and get notified as soon as someone post a question or an answer that pops up on that search.</p>
<p>Thanks for the podcasts and the blog and kep up the good work and I hope the stack overflow is everything You and I hope it will be :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hemal</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1718</link>
		<dc:creator>Hemal</dc:creator>
		<pubDate>Tue, 24 Jun 2008 11:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1718</guid>
		<description>Besides branch/merge another topic I find very appropriate for a beginner in CS is the concept of Regular Expressions. I think it has everything a young programmer needs to understand and aught to be CS 101, Chapter 1.</description>
		<content:encoded><![CDATA[<p>Besides branch/merge another topic I find very appropriate for a beginner in CS is the concept of Regular Expressions. I think it has everything a young programmer needs to understand and aught to be CS 101, Chapter 1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hemal</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1717</link>
		<dc:creator>Hemal</dc:creator>
		<pubDate>Tue, 24 Jun 2008 11:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1717</guid>
		<description>I think it was Joel who mentioned, in the context of version control, that your own machine is your padded wall. You checkout, change as you like and if you don&#039;t like the result then undo checkout. So you don&#039;t need a branch.

Unfortunately, it takes time to decide whether you like the end result or not. And without branch, all your changes are just one humongous bit, which is either on or off. It either all goes into the codeline or none does. 

That is why you need a branch. So you can have interim private checkins. 

Talking about checkins, do you think there should be a policy to allow only compilable code to be checked in?</description>
		<content:encoded><![CDATA[<p>I think it was Joel who mentioned, in the context of version control, that your own machine is your padded wall. You checkout, change as you like and if you don&#8217;t like the result then undo checkout. So you don&#8217;t need a branch.</p>
<p>Unfortunately, it takes time to decide whether you like the end result or not. And without branch, all your changes are just one humongous bit, which is either on or off. It either all goes into the codeline or none does. </p>
<p>That is why you need a branch. So you can have interim private checkins. </p>
<p>Talking about checkins, do you think there should be a policy to allow only compilable code to be checked in?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: svrist</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1715</link>
		<dc:creator>svrist</dc:creator>
		<pubDate>Tue, 24 Jun 2008 10:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1715</guid>
		<description>Hi.

Regarding expertsexchange I find that when i google for something and ExpertsExchange is on the list, I just use the google cache to see the content. That never failed for me</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>Regarding expertsexchange I find that when i google for something and ExpertsExchange is on the list, I just use the google cache to see the content. That never failed for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: macbirdie</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1665</link>
		<dc:creator>macbirdie</dc:creator>
		<pubDate>Mon, 23 Jun 2008 21:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1665</guid>
		<description>Instant rimshot - check.
Sad trombone - check.
Bubble wrap - check!
http://www.virtual-bubblewrap.com/bubble-wrap.swf</description>
		<content:encoded><![CDATA[<p>Instant rimshot &#8211; check.<br />
Sad trombone &#8211; check.<br />
Bubble wrap &#8211; check!<br />
<a href="http://www.virtual-bubblewrap.com/bubble-wrap.swf" rel="nofollow">http://www.virtual-bubblewrap.com/bubble-wrap.swf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean T. McBeth</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1655</link>
		<dc:creator>Sean T. McBeth</dc:creator>
		<pubDate>Mon, 23 Jun 2008 19:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1655</guid>
		<description>== *W*ine *I*s __*N*OT__ a god damn *E*mulator. :) -koreflaps

Yeah, we knowa, we&#039;ve heard plenty of times. And frankly, Scarlet, we don&#039;t give a damn.</description>
		<content:encoded><![CDATA[<p>== *W*ine *I*s __*N*OT__ a god damn *E*mulator. :) -koreflaps</p>
<p>Yeah, we knowa, we&#8217;ve heard plenty of times. And frankly, Scarlet, we don&#8217;t give a damn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean T. McBeth</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1654</link>
		<dc:creator>Sean T. McBeth</dc:creator>
		<pubDate>Mon, 23 Jun 2008 19:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1654</guid>
		<description>What are you talking about? Windows Mobile is a great platform. It becomes a shitty platform just like every other Windows OS when hardware vendors load it down with pre-installed crapware &quot;because it&#039;s the only way we can keep our costs down (*snicker snicker* can you believe people actually fall for that?)&quot;. WinMobile + .NET CF is just about the best thing since Boxed Awesome for Breakfast, which is pretty damn hard to do.</description>
		<content:encoded><![CDATA[<p>What are you talking about? Windows Mobile is a great platform. It becomes a shitty platform just like every other Windows OS when hardware vendors load it down with pre-installed crapware &#8220;because it&#8217;s the only way we can keep our costs down (*snicker snicker* can you believe people actually fall for that?)&#8221;. WinMobile + .NET CF is just about the best thing since Boxed Awesome for Breakfast, which is pretty damn hard to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [ICR]</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1640</link>
		<dc:creator>[ICR]</dc:creator>
		<pubDate>Mon, 23 Jun 2008 14:02:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1640</guid>
		<description>I&#039;d second the recommendation for dbPowerAmp.</description>
		<content:encoded><![CDATA[<p>I&#8217;d second the recommendation for dbPowerAmp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdu</title>
		<link>http://blog.stackoverflow.com/2008/06/podcast-10/#comment-1632</link>
		<dc:creator>Abdu</dc:creator>
		<pubDate>Mon, 23 Jun 2008 05:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=55#comment-1632</guid>
		<description>I mentioned the audio converter and then thought.. why bother? MP3 is the de facto standard and is playable on every OS and device and it&#039;s more than good enough for non music audio. There&#039;s no need to mess with Ogg Vorbis or any other format. Keep it simple.</description>
		<content:encoded><![CDATA[<p>I mentioned the audio converter and then thought.. why bother? MP3 is the de facto standard and is playable on every OS and device and it&#8217;s more than good enough for non music audio. There&#8217;s no need to mess with Ogg Vorbis or any other format. Keep it simple.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
