<?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: Special Development Team Podcast</title>
	<atom:link href="http://blog.stackoverflow.com/2008/08/special-development-team-podcast/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/</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: Ian Anderson</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5638</link>
		<dc:creator>Ian Anderson</dc:creator>
		<pubDate>Thu, 14 Aug 2008 22:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5638</guid>
		<description>Nice to hear from Geoff and Jarrod on the podcast - thanks for an awesome app</description>
		<content:encoded><![CDATA[<p>Nice to hear from Geoff and Jarrod on the podcast &#8211; thanks for an awesome app</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Anderson</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5637</link>
		<dc:creator>Ian Anderson</dc:creator>
		<pubDate>Thu, 14 Aug 2008 22:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5637</guid>
		<description>@Daniel Schaffer

1. Yes, you branch _all_ the files in svn and it takes about an extra byte. Are you talking about having to create a working copy of the branch? Yes, this will take however long to create on your local machine but every operation after that will be incredibly cheap in bandwidth because svn does everything in diffs

2. You should post the .net part of that question on SO... :)</description>
		<content:encoded><![CDATA[<p>@Daniel Schaffer</p>
<p>1. Yes, you branch _all_ the files in svn and it takes about an extra byte. Are you talking about having to create a working copy of the branch? Yes, this will take however long to create on your local machine but every operation after that will be incredibly cheap in bandwidth because svn does everything in diffs</p>
<p>2. You should post the .net part of that question on SO&#8230; :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Anderson</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5569</link>
		<dc:creator>Ian Anderson</dc:creator>
		<pubDate>Wed, 13 Aug 2008 18:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5569</guid>
		<description>Where for the love of all that&#039;s holy did Geoff get that shirt? It&#039;s wearing him...</description>
		<content:encoded><![CDATA[<p>Where for the love of all that&#8217;s holy did Geoff get that shirt? It&#8217;s wearing him&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arron</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5568</link>
		<dc:creator>Arron</dc:creator>
		<pubDate>Wed, 13 Aug 2008 17:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5568</guid>
		<description>@Daniel Schaffer that&#039;s defiantly something that should be asked on the system not here.</description>
		<content:encoded><![CDATA[<p>@Daniel Schaffer that&#8217;s defiantly something that should be asked on the system not here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Schaffer</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5567</link>
		<dc:creator>Daniel Schaffer</dc:creator>
		<pubDate>Wed, 13 Aug 2008 17:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5567</guid>
		<description>I know you&#039;ve already recorded the podcast, but hopefully someone can comment on this anyways.

The team I&#039;m on recently switched our source control software from SourceGear&#039;s Vault to SVN, using Tortoise as the client. Everything I&#039;ve heard about .NET development and source control has been &quot;Use SVN! It&#039;s great!&quot;; unfortunately, our experience has been less than stellar - I might even call it excruciating.

First, you should know that our team is geographically separated. We have a headquarters in Washington, DC, and several remote developers that work from home around the country.

Second, we have a fairly extensive code base. Our main repository contains at least 60 dozen different projects. We have about 20-30 solutions, each of which have anywhere between 2-12 or so projects referenced. There are a handful of projects that are re-used in many of the solutions, and those solutions may not necessarily be part of the same product. By, the way, by &quot;solution&quot; and &quot;project&quot;, I am referring to the Visual Studio concept of those words.

For branching, the procedure we&#039;ve been following is this (a very succinct version):
1. At the start of a release, create a new branch.
2. Do your work, QA, etc
3. Merge the branch back into trunk and tag it

The problem here is that whenever we branch, we&#039;re branching about 30,000 files, most of which aren&#039;t actually needed by the solution. Unfortunately, there&#039;s no good way to just branch only the files we need. This doesn&#039;t impact our HQ folks so much, but it takes a long time for our remote developers who are going over the WAN.

On top of that, it seems like every time I do something more complicated that an update or a checkin, something gets corrupted and I need to do a &quot;clean up&quot;, or sometimes I even need to kill my entire working copy and update from scratch. Source control should not be this difficult.

So, I&#039;m wondering, is there something I don&#039;t know that would make this easier? Are there other solutions that are maybe designed specifically for .NET development teams? Please help!</description>
		<content:encoded><![CDATA[<p>I know you&#8217;ve already recorded the podcast, but hopefully someone can comment on this anyways.</p>
<p>The team I&#8217;m on recently switched our source control software from SourceGear&#8217;s Vault to SVN, using Tortoise as the client. Everything I&#8217;ve heard about .NET development and source control has been &#8220;Use SVN! It&#8217;s great!&#8221;; unfortunately, our experience has been less than stellar &#8211; I might even call it excruciating.</p>
<p>First, you should know that our team is geographically separated. We have a headquarters in Washington, DC, and several remote developers that work from home around the country.</p>
<p>Second, we have a fairly extensive code base. Our main repository contains at least 60 dozen different projects. We have about 20-30 solutions, each of which have anywhere between 2-12 or so projects referenced. There are a handful of projects that are re-used in many of the solutions, and those solutions may not necessarily be part of the same product. By, the way, by &#8220;solution&#8221; and &#8220;project&#8221;, I am referring to the Visual Studio concept of those words.</p>
<p>For branching, the procedure we&#8217;ve been following is this (a very succinct version):<br />
1. At the start of a release, create a new branch.<br />
2. Do your work, QA, etc<br />
3. Merge the branch back into trunk and tag it</p>
<p>The problem here is that whenever we branch, we&#8217;re branching about 30,000 files, most of which aren&#8217;t actually needed by the solution. Unfortunately, there&#8217;s no good way to just branch only the files we need. This doesn&#8217;t impact our HQ folks so much, but it takes a long time for our remote developers who are going over the WAN.</p>
<p>On top of that, it seems like every time I do something more complicated that an update or a checkin, something gets corrupted and I need to do a &#8220;clean up&#8221;, or sometimes I even need to kill my entire working copy and update from scratch. Source control should not be this difficult.</p>
<p>So, I&#8217;m wondering, is there something I don&#8217;t know that would make this easier? Are there other solutions that are maybe designed specifically for .NET development teams? Please help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Hill</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5555</link>
		<dc:creator>Stephen Hill</dc:creator>
		<pubDate>Wed, 13 Aug 2008 08:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5555</guid>
		<description>Ok, this question is for Geoff and Jarrod:

How do you feel living on what Jeff calls &quot;Salve Wages&quot; or is the pay really, not that bad?</description>
		<content:encoded><![CDATA[<p>Ok, this question is for Geoff and Jarrod:</p>
<p>How do you feel living on what Jeff calls &#8220;Salve Wages&#8221; or is the pay really, not that bad?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ceb</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5541</link>
		<dc:creator>Ceb</dc:creator>
		<pubDate>Wed, 13 Aug 2008 06:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5541</guid>
		<description>Damn, now I&#039;ll never find out what the real story is behind the Jeff, Joel, Geoff, Jarrod and Jeremy (the designer) name similarities (coincidence - I think not!)</description>
		<content:encoded><![CDATA[<p>Damn, now I&#8217;ll never find out what the real story is behind the Jeff, Joel, Geoff, Jarrod and Jeremy (the designer) name similarities (coincidence &#8211; I think not!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Atwood</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5537</link>
		<dc:creator>Jeff Atwood</dc:creator>
		<pubDate>Wed, 13 Aug 2008 03:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5537</guid>
		<description>ok, podcast is in the can! Thanks for all your questions!</description>
		<content:encoded><![CDATA[<p>ok, podcast is in the can! Thanks for all your questions!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timon</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5536</link>
		<dc:creator>Timon</dc:creator>
		<pubDate>Wed, 13 Aug 2008 02:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5536</guid>
		<description>Is the following idea crazy or unimplementable?:

A community-generated podcast consisting of: 1) audio questions posted to stackoverflow much like text submissions 2) user-submitted responses tied to the original questions and moderated by other users or the owner of the question, then 3) a periodic bundling of the best stuff into an audio podcast?

It seems hard to sustain a huge amount of podcast production with a small team.  I would think the only way to make participation sufficiently easy would be a phone number with a short menu like &quot;press 1 to reply, 2 to post a new question&quot;, etc.

Anyway, love the show</description>
		<content:encoded><![CDATA[<p>Is the following idea crazy or unimplementable?:</p>
<p>A community-generated podcast consisting of: 1) audio questions posted to stackoverflow much like text submissions 2) user-submitted responses tied to the original questions and moderated by other users or the owner of the question, then 3) a periodic bundling of the best stuff into an audio podcast?</p>
<p>It seems hard to sustain a huge amount of podcast production with a small team.  I would think the only way to make participation sufficiently easy would be a phone number with a short menu like &#8220;press 1 to reply, 2 to post a new question&#8221;, etc.</p>
<p>Anyway, love the show</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pradeep</title>
		<link>http://blog.stackoverflow.com/2008/08/special-development-team-podcast/#comment-5535</link>
		<dc:creator>Pradeep</dc:creator>
		<pubDate>Wed, 13 Aug 2008 02:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=85#comment-5535</guid>
		<description>Jeff was a firm believer of the Zengarden style design, and Joel in the podcast dismissed it as impossible in a real world application, and I see there are tables in the site markup.

What are the reasons, design challenges which forced you to relax the rule.

a.k.a Why did Jeff jump the shark?</description>
		<content:encoded><![CDATA[<p>Jeff was a firm believer of the Zengarden style design, and Joel in the podcast dismissed it as impossible in a real world application, and I see there are tables in the site markup.</p>
<p>What are the reasons, design challenges which forced you to relax the rule.</p>
<p>a.k.a Why did Jeff jump the shark?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
