<?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 #15</title>
	<atom:link href="http://blog.stackoverflow.com/2008/07/podcast-15/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/07/podcast-15/</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: iHeartDucks</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-40856</link>
		<dc:creator>iHeartDucks</dc:creator>
		<pubDate>Thu, 29 Oct 2009 13:29:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-40856</guid>
		<description>Disappointed with Wall-E!!!! I thought people who love Flight of the Concords can never disagree on something!!!!
I have been listening to this podcast from Episode 1 but... Did you say Disappointed with Wall-E????</description>
		<content:encoded><![CDATA[<p>Disappointed with Wall-E!!!! I thought people who love Flight of the Concords can never disagree on something!!!!<br />
I have been listening to this podcast from Episode 1 but&#8230; Did you say Disappointed with Wall-E????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yuval</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-5563</link>
		<dc:creator>Yuval</dc:creator>
		<pubDate>Wed, 13 Aug 2008 14:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-5563</guid>
		<description>Just a quick note about the Israeli IT market...

I&#039;m an Israeli Java programmer, and I can attest to the fact that there is in fact, as Joel said, a very dynamic spirit of entrepreneurship and the number of start-up companies in Israel is far from proportional to the number of IT working force here. These companies usually hire programmers directly, and because starting a new company is somewhat risky and demanding, programmers in start-up companies are usually highly compensated.

Then again, most large IT companies (Amdocs, Comverse, Microsoft, Intel, HP...) have R&amp;D centers here, and they need masses of programmers. These are usually programmers with less experience or not enough technical background, and they work less hours for less money.

These programmers are sometimes hired directly, but the large companies usually prefer to take on armies of outsourcing workers, mostly for budget reasons, but also because it&#039;s convenient. Of course, off-shoring is also a popular option, but Israeli workers are still preferred.

The point is that while there is a strong initiative spirit in Israel, it isn&#039;t that different than the rest of the world in that a great deal of programmers still work through outsourcing companies.

Having said this, I&#039;ll say that outsourcing is not always that bad... when projects are short-term, one can meet a lot of interesting people, be exposed to a wide variety of technologies, and learn from the mistakes of many other programmers. It can serve as a good stepping stone in a programmer&#039;s career.</description>
		<content:encoded><![CDATA[<p>Just a quick note about the Israeli IT market&#8230;</p>
<p>I&#8217;m an Israeli Java programmer, and I can attest to the fact that there is in fact, as Joel said, a very dynamic spirit of entrepreneurship and the number of start-up companies in Israel is far from proportional to the number of IT working force here. These companies usually hire programmers directly, and because starting a new company is somewhat risky and demanding, programmers in start-up companies are usually highly compensated.</p>
<p>Then again, most large IT companies (Amdocs, Comverse, Microsoft, Intel, HP&#8230;) have R&amp;D centers here, and they need masses of programmers. These are usually programmers with less experience or not enough technical background, and they work less hours for less money.</p>
<p>These programmers are sometimes hired directly, but the large companies usually prefer to take on armies of outsourcing workers, mostly for budget reasons, but also because it&#8217;s convenient. Of course, off-shoring is also a popular option, but Israeli workers are still preferred.</p>
<p>The point is that while there is a strong initiative spirit in Israel, it isn&#8217;t that different than the rest of the world in that a great deal of programmers still work through outsourcing companies.</p>
<p>Having said this, I&#8217;ll say that outsourcing is not always that bad&#8230; when projects are short-term, one can meet a lot of interesting people, be exposed to a wide variety of technologies, and learn from the mistakes of many other programmers. It can serve as a good stepping stone in a programmer&#8217;s career.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Carver</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-4344</link>
		<dc:creator>Frank Carver</dc:creator>
		<pubDate>Mon, 28 Jul 2008 11:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-4344</guid>
		<description>During a longer discussion about languages and blocks/functions, Joel opined that there may never be a reason to pass more than one function/block to a method. I&#039;d like to offer a situation in which I felt strongly that I needed two function/block arguments.

Consider a typical database query which selects some columns from some table or combination of tables resulting in an arbitrary number of rows. During such database access from an OO language, there are typically two code chunks which vary according to the purpose of the database access. 

The first chunk is to convert the input values to the appropriate SQL (either by supplying parameters to a pre-compiled SQL statement with placeholders, or by building some literal SQL as a string.

The second chunk is to process each returned row of data. This may involve creating or populating some row object, directly calling out to some business logic  in a &quot;streaming&quot; manner, or whatever.

In the low-level database access tools I typically use from Java, each of these two steps can be provided as a &quot;functor&quot;. This allows the basic database access code (connection opening, error handling, connection closing, etc.) to be completely generic.

When I first experimented with Ruby I found the popular way of accessing databases (ActiveRecord) limiting in that it did not really support arbitrary queries or streamed result processing, so I considered porting the ideas from the Java implementation.

I immediately bumped into the &quot;only one block&quot; limitation, as I needed tow bloks. For this and several other reasons, I am now spending most of my learn-a-new-language time on Python.</description>
		<content:encoded><![CDATA[<p>During a longer discussion about languages and blocks/functions, Joel opined that there may never be a reason to pass more than one function/block to a method. I&#8217;d like to offer a situation in which I felt strongly that I needed two function/block arguments.</p>
<p>Consider a typical database query which selects some columns from some table or combination of tables resulting in an arbitrary number of rows. During such database access from an OO language, there are typically two code chunks which vary according to the purpose of the database access. </p>
<p>The first chunk is to convert the input values to the appropriate SQL (either by supplying parameters to a pre-compiled SQL statement with placeholders, or by building some literal SQL as a string.</p>
<p>The second chunk is to process each returned row of data. This may involve creating or populating some row object, directly calling out to some business logic  in a &#8220;streaming&#8221; manner, or whatever.</p>
<p>In the low-level database access tools I typically use from Java, each of these two steps can be provided as a &#8220;functor&#8221;. This allows the basic database access code (connection opening, error handling, connection closing, etc.) to be completely generic.</p>
<p>When I first experimented with Ruby I found the popular way of accessing databases (ActiveRecord) limiting in that it did not really support arbitrary queries or streamed result processing, so I considered porting the ideas from the Java implementation.</p>
<p>I immediately bumped into the &#8220;only one block&#8221; limitation, as I needed tow bloks. For this and several other reasons, I am now spending most of my learn-a-new-language time on Python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charles</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-4308</link>
		<dc:creator>charles</dc:creator>
		<pubDate>Mon, 28 Jul 2008 02:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-4308</guid>
		<description>Ya, the tickling method Joel described is far superior than trying to do some weird voodoo with the cache.

On another note, I don&#039;t want to be a jerk about this, I realy don&#039;t but ...

I&#039;m not trying to pick on Jeff but please stop abusing the word &quot;pathology.&quot;

Similar things could be said about all Web/Tech bloggers I guess. All their &quot;meta this and meta that&quot; gets a little silly. If I had to pic on Joel to be fair, although he isn&#039;t *that* bad about it, I would say: 

&quot;Joel, yes many of us have been to college and took Psychology 101 too.&quot;  =)</description>
		<content:encoded><![CDATA[<p>Ya, the tickling method Joel described is far superior than trying to do some weird voodoo with the cache.</p>
<p>On another note, I don&#8217;t want to be a jerk about this, I realy don&#8217;t but &#8230;</p>
<p>I&#8217;m not trying to pick on Jeff but please stop abusing the word &#8220;pathology.&#8221;</p>
<p>Similar things could be said about all Web/Tech bloggers I guess. All their &#8220;meta this and meta that&#8221; gets a little silly. If I had to pic on Joel to be fair, although he isn&#8217;t *that* bad about it, I would say: </p>
<p>&#8220;Joel, yes many of us have been to college and took Psychology 101 too.&#8221;  =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Herron</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3968</link>
		<dc:creator>Andrew Herron</dc:creator>
		<pubDate>Fri, 25 Jul 2008 08:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3968</guid>
		<description>Regarding background tasks:


Didn&#039;t you say you are using crystaltech for hosting?  In the web control center, under the site menu is &quot;scheduled tasks&quot;.  Crystaltech will ping any URL on your site at schedules as small as every hour :)</description>
		<content:encoded><![CDATA[<p>Regarding background tasks:</p>
<p>Didn&#8217;t you say you are using crystaltech for hosting?  In the web control center, under the site menu is &#8220;scheduled tasks&#8221;.  Crystaltech will ping any URL on your site at schedules as small as every hour :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donal</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3942</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Thu, 24 Jul 2008 23:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3942</guid>
		<description>On the subject of developers moving into management, it takes an effort to solve the people problem rather than the technical problem, and this unfortunately is  especially true for very good developers, for whom the quickest way of solving any problem is to crank up the IDE and fix all their subordinates&#039; mistakes themselves. A friend of mine went cold turkey on coding when he was promoted, because he knew he&#039;d never develop as a real manager otherwise. I&#039;d recommend reading &quot;Soul of a New Machine&quot;: it&#039;s a 1982 book about a team of hardware developers, but the geek types in it can be recognised by any contemporary software developer. There are a couple of engineers turned managers in it who struggle with suppressing and rechanneling their geekish tendencies, because it&#039;s not about how clever and producive they are as engineers any more, it&#039;s about their ability to get cleverness and productivity out of all the engineers working for them.</description>
		<content:encoded><![CDATA[<p>On the subject of developers moving into management, it takes an effort to solve the people problem rather than the technical problem, and this unfortunately is  especially true for very good developers, for whom the quickest way of solving any problem is to crank up the IDE and fix all their subordinates&#8217; mistakes themselves. A friend of mine went cold turkey on coding when he was promoted, because he knew he&#8217;d never develop as a real manager otherwise. I&#8217;d recommend reading &#8220;Soul of a New Machine&#8221;: it&#8217;s a 1982 book about a team of hardware developers, but the geek types in it can be recognised by any contemporary software developer. There are a couple of engineers turned managers in it who struggle with suppressing and rechanneling their geekish tendencies, because it&#8217;s not about how clever and producive they are as engineers any more, it&#8217;s about their ability to get cleverness and productivity out of all the engineers working for them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3938</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3938</guid>
		<description>Thanks, Jeff. It works for me now.</description>
		<content:encoded><![CDATA[<p>Thanks, Jeff. It works for me now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Atwood</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3934</link>
		<dc:creator>Jeff Atwood</dc:creator>
		<pubDate>Thu, 24 Jul 2008 20:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3934</guid>
		<description>&gt; My stupid Windows Mediaplayer wont play this episode. It says that it might be the codex?!

If you had trouble playing back this episode (or the previous one), it may have been due to issues with the way the ID3 tags were stored on the file. The ITConversations folks are on it, and have re-rendered the episodes with a fix.

Sorry about that!</description>
		<content:encoded><![CDATA[<p>> My stupid Windows Mediaplayer wont play this episode. It says that it might be the codex?!</p>
<p>If you had trouble playing back this episode (or the previous one), it may have been due to issues with the way the ID3 tags were stored on the file. The ITConversations folks are on it, and have re-rendered the episodes with a fix.</p>
<p>Sorry about that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zainy</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3930</link>
		<dc:creator>zainy</dc:creator>
		<pubDate>Thu, 24 Jul 2008 20:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3930</guid>
		<description>How does one get into the beta?</description>
		<content:encoded><![CDATA[<p>How does one get into the beta?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David B</title>
		<link>http://blog.stackoverflow.com/2008/07/podcast-15/#comment-3912</link>
		<dc:creator>David B</dc:creator>
		<pubDate>Thu, 24 Jul 2008 18:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=72#comment-3912</guid>
		<description>For method referencing, there is also Action, Func and Expression</description>
		<content:encoded><![CDATA[<p>For method referencing, there is also Action, Func and Expression</p>
]]></content:encoded>
	</item>
</channel>
</rss>
