<?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/"
		>
<channel>
	<title>Comments for Mark Gregory Turansky</title>
	<atom:link href="http://blog.markturansky.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.markturansky.com</link>
	<description>software architecture &#38; engineering, code hints, sometimes philosophy, photography, life, etc.</description>
	<lastBuildDate>Sun, 20 Jun 2010 07:51:38 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Linux is killing Solaris by abe</title>
		<link>http://blog.markturansky.com/archives/49/comment-page-1#comment-1347</link>
		<dc:creator>abe</dc:creator>
		<pubDate>Sun, 20 Jun 2010 07:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/49#comment-1347</guid>
		<description>hello everybody,

i am running now solaris 10 after toying with 5.8 and 5.9.
IMHO: i too miss htop on my solaris! hard to believe that there are even no source-codes to compile on solaris...
@ Randall: since years i&#039;ve been always looking for SYSV. now it may seem as a rookie question, but i wonder where to get it? can you advise?
many thanks
-abe-</description>
		<content:encoded><![CDATA[<p>hello everybody,</p>
<p>i am running now solaris 10 after toying with 5.8 and 5.9.<br />
IMHO: i too miss htop on my solaris! hard to believe that there are even no source-codes to compile on solaris&#8230;<br />
@ Randall: since years i&#8217;ve been always looking for SYSV. now it may seem as a rookie question, but i wonder where to get it? can you advise?<br />
many thanks<br />
-abe-</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Arvel Peterson</title>
		<link>http://blog.markturansky.com/about-me/comment-page-1#comment-1346</link>
		<dc:creator>Arvel Peterson</dc:creator>
		<pubDate>Wed, 02 Jun 2010 20:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/about-me#comment-1346</guid>
		<description>&lt;i&gt;I stumbled across your page searching for Java Script templates (thanks for the info.!). I&#8217;m a web newbie, trying to learn web development (ameteur level for now; possibly professional in the future). Right now I most interested in client side web development. I&#8217;m taking a HTML/CSS class at my local community college. As a professional developer, do you  have advice on best ways to learn web development? I&#8217;m thinking of taking a begining java script and/or PHP course. I&#8217;ve also heard Python is good to learn. I appreciate any advice you have based on your experience.&lt;/i&gt;
+1</description>
		<content:encoded><![CDATA[<p><i>I stumbled across your page searching for Java Script templates (thanks for the info.!). I&#8217;m a web newbie, trying to learn web development (ameteur level for now; possibly professional in the future). Right now I most interested in client side web development. I&#8217;m taking a HTML/CSS class at my local community college. As a professional developer, do you  have advice on best ways to learn web development? I&#8217;m thinking of taking a begining java script and/or PHP course. I&#8217;ve also heard Python is good to learn. I appreciate any advice you have based on your experience.</i><br />
+1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some wheels need reinventing by maramirezc</title>
		<link>http://blog.markturansky.com/archives/45/comment-page-1#comment-1339</link>
		<dc:creator>maramirezc</dc:creator>
		<pubDate>Fri, 07 May 2010 18:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/45#comment-1339</guid>
		<description>Found your blog, looking on the net for this concept, &amp; also applied to software development. Sometimes we have to &quot;reinvent the wheel&quot;, because &quot;they give me a squared wheel&quot;, &amp; I need a &quot;Round wheel&quot;...</description>
		<content:encoded><![CDATA[<p>Found your blog, looking on the net for this concept, &amp; also applied to software development. Sometimes we have to &#8220;reinvent the wheel&#8221;, because &#8220;they give me a squared wheel&#8221;, &amp; I need a &#8220;Round wheel&#8221;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOW TO: Better JavaScript Templates by Marco</title>
		<link>http://blog.markturansky.com/archives/47/comment-page-1#comment-1338</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Sun, 02 May 2010 12:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/47#comment-1338</guid>
		<description>hmm, the textarea html tag was stripped when posting the comment above. it should be between the quotes in the append call. let me know if you whant the whole source.</description>
		<content:encoded><![CDATA[<p>hmm, the textarea html tag was stripped when posting the comment above. it should be between the quotes in the append call. let me know if you whant the whole source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOW TO: Better JavaScript Templates by Marco</title>
		<link>http://blog.markturansky.com/archives/47/comment-page-1#comment-1337</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Sun, 02 May 2010 12:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/47#comment-1337</guid>
		<description>Works great! I use it in combination with Jquery and added the option to download and cache the templates:

In the evaluate function:

        // check if template already loaded before
		if(Jst.templates[src] != true)
		{
			// load the template synchronous
			$.ajaxSetup({async:false});
			$.get(Jst.templateRoot + src +&#039;.jst.html&#039;, function(data)
			{
				// create the textarea container and add the loaded template
				$(&quot;body&quot;).append(&#039;&#039;+ data +&#039;&#039;);

				// update the templates status array
				Jst.templates[src] = true;
			});

			// set the global ajax setup back to asynchronous
			$.ajaxSetup({async:true});
		}

		// parse the data with the template
        var script = Jst.parse($(&quot;#jst_&quot;+ src).text());
        eval(script);

Extra helper var&#039;s:


  // the folder where the templates are located
  templateRoot:&quot;&quot;,

  // status array keeping track if templates were loaded before
  templates:{}</description>
		<content:encoded><![CDATA[<p>Works great! I use it in combination with Jquery and added the option to download and cache the templates:</p>
<p>In the evaluate function:</p>
<p>        // check if template already loaded before<br />
		if(Jst.templates[src] != true)<br />
		{<br />
			// load the template synchronous<br />
			$.ajaxSetup({async:false});<br />
			$.get(Jst.templateRoot + src +&#8217;.jst.html&#8217;, function(data)<br />
			{<br />
				// create the textarea container and add the loaded template<br />
				$(&#8221;body&#8221;).append(&#8221;+ data +&#8221;);</p>
<p>				// update the templates status array<br />
				Jst.templates[src] = true;<br />
			});</p>
<p>			// set the global ajax setup back to asynchronous<br />
			$.ajaxSetup({async:true});<br />
		}</p>
<p>		// parse the data with the template<br />
        var script = Jst.parse($(&#8221;#jst_&#8221;+ src).text());<br />
        eval(script);</p>
<p>Extra helper var&#8217;s:</p>
<p>  // the folder where the templates are located<br />
  templateRoot:&#8221;",</p>
<p>  // status array keeping track if templates were loaded before<br />
  templates:{}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make your own seedling pots from newspaper by skelter</title>
		<link>http://blog.markturansky.com/archives/183/comment-page-1#comment-1332</link>
		<dc:creator>skelter</dc:creator>
		<pubDate>Tue, 20 Apr 2010 03:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/?p=183#comment-1332</guid>
		<description>What&#039;s a news paper?</description>
		<content:encoded><![CDATA[<p>What&#8217;s a news paper?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make your own seedling pots from newspaper by Christopher Vigliotti</title>
		<link>http://blog.markturansky.com/archives/183/comment-page-1#comment-1324</link>
		<dc:creator>Christopher Vigliotti</dc:creator>
		<pubDate>Mon, 29 Mar 2010 17:40:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/?p=183#comment-1324</guid>
		<description>I&#039;m doing this next year for sure.</description>
		<content:encoded><![CDATA[<p>I&#8217;m doing this next year for sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Great Indian Outsourcing is over by Philam</title>
		<link>http://blog.markturansky.com/archives/48/comment-page-1#comment-1313</link>
		<dc:creator>Philam</dc:creator>
		<pubDate>Mon, 15 Mar 2010 08:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/48#comment-1313</guid>
		<description>Outsourcing businesses have experienced a massive increase and still expanding globally not just in India. Companies would still choose to outsource jobs to save money and for them to  focus on doing other more important tasks.

Phil</description>
		<content:encoded><![CDATA[<p>Outsourcing businesses have experienced a massive increase and still expanding globally not just in India. Companies would still choose to outsource jobs to save money and for them to  focus on doing other more important tasks.</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Colin</title>
		<link>http://blog.markturansky.com/about-me/comment-page-1#comment-1294</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Wed, 10 Feb 2010 04:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/about-me#comment-1294</guid>
		<description>Hi Mark,

I stumbled across your page searching for Java Script templates (thanks for the info.!). I&#039;m a web newbie, trying to learn web development (ameteur level for now; possibly professional in the future). Right now I most interested in client side web development. I&#039;m taking a HTML/CSS class at my local community college. As a professional developer, do you  have advice on best ways to learn web development? I&#039;m thinking of taking a begining java script and/or PHP course. I&#039;ve also heard Python is good to learn. I appreciate any advice you have based on your experience.

Thanks

Colin</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>I stumbled across your page searching for Java Script templates (thanks for the info.!). I&#8217;m a web newbie, trying to learn web development (ameteur level for now; possibly professional in the future). Right now I most interested in client side web development. I&#8217;m taking a HTML/CSS class at my local community college. As a professional developer, do you  have advice on best ways to learn web development? I&#8217;m thinking of taking a begining java script and/or PHP course. I&#8217;ve also heard Python is good to learn. I appreciate any advice you have based on your experience.</p>
<p>Thanks</p>
<p>Colin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux is killing Solaris by Paul</title>
		<link>http://blog.markturansky.com/archives/49/comment-page-1#comment-1279</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 29 Jan 2010 11:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/49#comment-1279</guid>
		<description>&lt;a href=&quot;#comment-277&quot; rel=&quot;nofollow&quot;&gt;@foosel &lt;/a&gt; 
&quot;Solaris feels evil: Behaving and looking similar enough to suggest being what you know and are used 
to, but then throwing your ?du -h? or ?ps axvf? right back into your face in the worst of moments&quot;

du -h works fine for me. I try to make my PATH as POSIX as possible, using &#039;getconf PATH&#039;, so du picks up /usr/xpg4/bin/du.

To be honest, if I were too dim to be able to set my PATH properly, I think I&#039;d lay of any sort of posting of this nature until I&#039;d figured it out.

As for &quot;ps axvf?, what an abomination! This is Linux trying to be POSIX, BSD and Uncle Tom Cobbley wrt standards. Solaris has /usr/ucb/ps for BSD style ps and /usr/bin/ps for POSIX ps. Neither is a mish-mash of both standards, and neither supports the tree formatting. And what do you know, Linux ps doesn&#039;t support -Z, so it must be just as bad.</description>
		<content:encoded><![CDATA[<p><a href="#comment-277" rel="nofollow">@foosel </a><br />
&#8220;Solaris feels evil: Behaving and looking similar enough to suggest being what you know and are used<br />
to, but then throwing your ?du -h? or ?ps axvf? right back into your face in the worst of moments&#8221;</p>
<p>du -h works fine for me. I try to make my PATH as POSIX as possible, using &#8216;getconf PATH&#8217;, so du picks up /usr/xpg4/bin/du.</p>
<p>To be honest, if I were too dim to be able to set my PATH properly, I think I&#8217;d lay of any sort of posting of this nature until I&#8217;d figured it out.</p>
<p>As for &#8220;ps axvf?, what an abomination! This is Linux trying to be POSIX, BSD and Uncle Tom Cobbley wrt standards. Solaris has /usr/ucb/ps for BSD style ps and /usr/bin/ps for POSIX ps. Neither is a mish-mash of both standards, and neither supports the tree formatting. And what do you know, Linux ps doesn&#8217;t support -Z, so it must be just as bad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux is killing Solaris by Paul</title>
		<link>http://blog.markturansky.com/archives/49/comment-page-1#comment-1278</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 29 Jan 2010 10:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/49#comment-1278</guid>
		<description>&lt;a href=&quot;#comment-984&quot; rel=&quot;nofollow&quot;&gt;@sunny &lt;/a&gt; 
What a remarkably stupid and ignorant person you are.</description>
		<content:encoded><![CDATA[<p><a href="#comment-984" rel="nofollow">@sunny </a><br />
What a remarkably stupid and ignorant person you are.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Global Economy is a Ponzi Scheme by Mark Gregory Turansky &#187; The Global Ponzi Scheme revisited</title>
		<link>http://blog.markturansky.com/archives/156/comment-page-1#comment-1276</link>
		<dc:creator>Mark Gregory Turansky &#187; The Global Ponzi Scheme revisited</dc:creator>
		<pubDate>Mon, 25 Jan 2010 01:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/156#comment-1276</guid>
		<description>[...] The Economist has an interesting article talking about the true cost of goods and services we take for granted when the environmental impact is measured and accounted for.  This is also Lester Brown&#8217;s argument, which I wrote about recently.  Mr. Brown calls it a Global Ponzi scheme. [...]</description>
		<content:encoded><![CDATA[<p>[...] The Economist has an interesting article talking about the true cost of goods and services we take for granted when the environmental impact is measured and accounted for.  This is also Lester Brown&#8217;s argument, which I wrote about recently.  Mr. Brown calls it a Global Ponzi scheme. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Terracotta Server as a Message Bus by Ronald Kurr</title>
		<link>http://blog.markturansky.com/archives/26/comment-page-1#comment-1262</link>
		<dc:creator>Ronald Kurr</dc:creator>
		<pubDate>Sat, 19 Dec 2009 17:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/26#comment-1262</guid>
		<description>Mark, the idea of adding a simple command socket to a headless application is brilliant.  An embarrassingly simple idea that I can&#039;t believe I never thought of myself!  Many Thanks.</description>
		<content:encoded><![CDATA[<p>Mark, the idea of adding a simple command socket to a headless application is brilliant.  An embarrassingly simple idea that I can&#8217;t believe I never thought of myself!  Many Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOW TO:  Bootstrap Java programs in isolated classloaders by Ronald Kurr</title>
		<link>http://blog.markturansky.com/archives/21/comment-page-1#comment-1261</link>
		<dc:creator>Ronald Kurr</dc:creator>
		<pubDate>Sat, 19 Dec 2009 17:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/21#comment-1261</guid>
		<description>Mark, I found your post interesting and thought provoking.  Although many Java applications are web-based and run inside a servlet container, I&#039;ve also seen the need for standalone headless Spring-based apps.  The ability to simplify the launching program&#039;s classpath is worth the price of admission alone.  Moving the burden of creating a proper classpath from the installer into the application itself minimizes certain types of errors -- &quot;I swear didn&#039;t touch anything.  Well, I did make a minor tweek to the launch script but what harm could that do?&quot;  Kudos.</description>
		<content:encoded><![CDATA[<p>Mark, I found your post interesting and thought provoking.  Although many Java applications are web-based and run inside a servlet container, I&#8217;ve also seen the need for standalone headless Spring-based apps.  The ability to simplify the launching program&#8217;s classpath is worth the price of admission alone.  Moving the burden of creating a proper classpath from the installer into the application itself minimizes certain types of errors &#8212; &#8220;I swear didn&#8217;t touch anything.  Well, I did make a minor tweek to the launch script but what harm could that do?&#8221;  Kudos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Perils of Joel Spolsky by Mark Turansky</title>
		<link>http://blog.markturansky.com/archives/38/comment-page-1#comment-1259</link>
		<dc:creator>Mark Turansky</dc:creator>
		<pubDate>Fri, 11 Dec 2009 03:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/38#comment-1259</guid>
		<description>@Chris,

“continues to ding Java whenever the opportunity arises” is accurate.

Spolsky is so anti-Java that when needing a cross platform language like Java, he chose to implement &quot;wasabi&quot; which is a vbscript hack to generate ASP and PHP versions of a bug tracker so he could sell copies to unix shops.  Selling cross platform products is smart business, but writing and supporting your own cross platform language when that&#039;s been a long solved problem?  </description>
		<content:encoded><![CDATA[<p>@Chris,</p>
<p>“continues to ding Java whenever the opportunity arises” is accurate.</p>
<p>Spolsky is so anti-Java that when needing a cross platform language like Java, he chose to implement &#8220;wasabi&#8221; which is a vbscript hack to generate ASP and PHP versions of a bug tracker so he could sell copies to unix shops.  Selling cross platform products is smart business, but writing and supporting your own cross platform language when that&#8217;s been a long solved problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Perils of Joel Spolsky by Chris</title>
		<link>http://blog.markturansky.com/archives/38/comment-page-1#comment-1258</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 11 Dec 2009 03:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/38#comment-1258</guid>
		<description>Mark, I don&#039;t even think you&#039;ve ever *really* read a Joel post.  I&#039;ve never met either one of you, I&#039;ve never worked for either of you as well... but when you write, [Joel ] &quot;continues to ding Java whenever the opportunity arises&quot; well, that&#039;s just a bunch of baloney!

Joel is NOT attacking Java, he&#039;s attacking what has happened to contemporary computer science curriculum -- BIG difference there Mark.  Java is the the vehicle for the concerns Joel addresses.  The implementation of Java is not necessarily the problem.

Go back, read his posts again, clear your mind, and take a deep breath.  

I have the exact same frustrations as Joel does.  I interview kids all the time fresh out of college and while they are good students, colleges aren&#039;t getting it done.  They don&#039;t teach things like pointers or managing resources... and why would one have to?  The common refrain I get all the time is the JVM or garbage collection takes care of it.  Why would a developer concern themselves with such things?  Ugh!  When I asked someone recently why they used a string instead of using StringBuilder, they told me my suggestion was stupid because when a desktop comes with 3 - 4 GB or RAM, why worry about memory or performance?  Where did this person go to school?  A Java school.

I&#039;m tired of giving them simple problems, in an exercise to gauge how they get things done, and seeing 400 lines of code in main().  But since that&#039;s how the Deitel &amp; Deitel books show it, that&#039;s what these kids learn.  They are basically memorizing the examples they download or see in a textbook and thus really have no clue what they are doing otherwise.

Unfortunately, this phenomenon has become widespread, and the Java schools are definitely to blame for it.

Heck, I love Java.  I&#039;ve worked in C++, C#, and Delphi shops too.  But for reasons based upon my work, I prefer Java.  And as much of a Java sock-puppet I am, I have never read one of Joel&#039;s articles and thought, wow, this guy has it out for the language.  Joel is rightfully ticked at the state of contemporary eduction.</description>
		<content:encoded><![CDATA[<p>Mark, I don&#8217;t even think you&#8217;ve ever *really* read a Joel post.  I&#8217;ve never met either one of you, I&#8217;ve never worked for either of you as well&#8230; but when you write, [Joel ] &#8220;continues to ding Java whenever the opportunity arises&#8221; well, that&#8217;s just a bunch of baloney!</p>
<p>Joel is NOT attacking Java, he&#8217;s attacking what has happened to contemporary computer science curriculum &#8212; BIG difference there Mark.  Java is the the vehicle for the concerns Joel addresses.  The implementation of Java is not necessarily the problem.</p>
<p>Go back, read his posts again, clear your mind, and take a deep breath.  </p>
<p>I have the exact same frustrations as Joel does.  I interview kids all the time fresh out of college and while they are good students, colleges aren&#8217;t getting it done.  They don&#8217;t teach things like pointers or managing resources&#8230; and why would one have to?  The common refrain I get all the time is the JVM or garbage collection takes care of it.  Why would a developer concern themselves with such things?  Ugh!  When I asked someone recently why they used a string instead of using StringBuilder, they told me my suggestion was stupid because when a desktop comes with 3 &#8211; 4 GB or RAM, why worry about memory or performance?  Where did this person go to school?  A Java school.</p>
<p>I&#8217;m tired of giving them simple problems, in an exercise to gauge how they get things done, and seeing 400 lines of code in main().  But since that&#8217;s how the Deitel &amp; Deitel books show it, that&#8217;s what these kids learn.  They are basically memorizing the examples they download or see in a textbook and thus really have no clue what they are doing otherwise.</p>
<p>Unfortunately, this phenomenon has become widespread, and the Java schools are definitely to blame for it.</p>
<p>Heck, I love Java.  I&#8217;ve worked in C++, C#, and Delphi shops too.  But for reasons based upon my work, I prefer Java.  And as much of a Java sock-puppet I am, I have never read one of Joel&#8217;s articles and thought, wow, this guy has it out for the language.  Joel is rightfully ticked at the state of contemporary eduction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We&#8217;re not &#8220;resources&#8221; by Steve Walter</title>
		<link>http://blog.markturansky.com/archives/95/comment-page-1#comment-1256</link>
		<dc:creator>Steve Walter</dc:creator>
		<pubDate>Thu, 03 Dec 2009 14:20:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/95#comment-1256</guid>
		<description>Sounds like Mr. Turansky doesn&#039;t want to learn anything new.  Too bad.  Sometimes teams are built by making project assignments that encourage cross-functionality.   What&#039;s wrong with trying to encourage cross functionality by giving stretch assignments and trying to give skilled and talented developers experience in unfamiliar areas?  Doesn&#039;t that make the team stronger?  Isn&#039;t flexibility a good goal, and isn&#039;t that achieved by cross functionality?
Stop perpetuating the stereotype of the &#039;smarter than everyone else&#039; developer who hides in his office, refusing to share his knowledge and skills with less experienced folks.  It&#039;s one of the reasons software engineers get such a bad rap outside of their own circles.
Talent does matter.   Part of being talented is becoming skilled in as many areas as possible, so your team can be flexible and performing.  A good manager will encourage that, and will try to spread the habits of a good team around.</description>
		<content:encoded><![CDATA[<p>Sounds like Mr. Turansky doesn&#8217;t want to learn anything new.  Too bad.  Sometimes teams are built by making project assignments that encourage cross-functionality.   What&#8217;s wrong with trying to encourage cross functionality by giving stretch assignments and trying to give skilled and talented developers experience in unfamiliar areas?  Doesn&#8217;t that make the team stronger?  Isn&#8217;t flexibility a good goal, and isn&#8217;t that achieved by cross functionality?<br />
Stop perpetuating the stereotype of the &#8217;smarter than everyone else&#8217; developer who hides in his office, refusing to share his knowledge and skills with less experienced folks.  It&#8217;s one of the reasons software engineers get such a bad rap outside of their own circles.<br />
Talent does matter.   Part of being talented is becoming skilled in as many areas as possible, so your team can be flexible and performing.  A good manager will encourage that, and will try to spread the habits of a good team around.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mr. President, please, raise my taxes by Small Business Tax Guru</title>
		<link>http://blog.markturansky.com/archives/145/comment-page-1#comment-1245</link>
		<dc:creator>Small Business Tax Guru</dc:creator>
		<pubDate>Mon, 23 Nov 2009 03:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/145#comment-1245</guid>
		<description>I&#039;ve been included in taxes for longer then I care to acknowledge, both on the personal side (all my employed life-time!!) and from a legal point of view since satisfying the bar and following up on tax law. I&#039;ve put up a lot of advice and rectified a lot of wrongs, and I must say that what you&#039;ve put up makes perfect sense. Please continue the good work - the more people know the better they&#039;ll be armed to handle with the tax man, and that&#039;s what it&#039;s all about.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been included in taxes for longer then I care to acknowledge, both on the personal side (all my employed life-time!!) and from a legal point of view since satisfying the bar and following up on tax law. I&#8217;ve put up a lot of advice and rectified a lot of wrongs, and I must say that what you&#8217;ve put up makes perfect sense. Please continue the good work &#8211; the more people know the better they&#8217;ll be armed to handle with the tax man, and that&#8217;s what it&#8217;s all about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Global Economy is a Ponzi Scheme by David</title>
		<link>http://blog.markturansky.com/archives/156/comment-page-1#comment-1244</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 17 Nov 2009 21:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/156#comment-1244</guid>
		<description>Life is a Ponzi scheme.  Some things more than others, but most everything is like that.  Matter cannot be created or destroyed, nor can wealth.</description>
		<content:encoded><![CDATA[<p>Life is a Ponzi scheme.  Some things more than others, but most everything is like that.  Matter cannot be created or destroyed, nor can wealth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to recapitalize the banks without handing them money outright by Frank Manning</title>
		<link>http://blog.markturansky.com/archives/126/comment-page-1#comment-1239</link>
		<dc:creator>Frank Manning</dc:creator>
		<pubDate>Thu, 05 Nov 2009 21:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/126#comment-1239</guid>
		<description>great stuff here</description>
		<content:encoded><![CDATA[<p>great stuff here</p>
]]></content:encoded>
	</item>
</channel>
</rss>
