<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RepeatGeek &#187; Career</title>
	<atom:link href="http://repeatgeek.com/category/career/feed/" rel="self" type="application/rss+xml" />
	<link>http://repeatgeek.com</link>
	<description>Helping geeks achieve success</description>
	<lastBuildDate>Mon, 19 Dec 2011 22:30:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<meta name="generator" content="deStyle 0.9.3" />
		<item>
		<title>5 Types of Comments to Avoid Making in Your Code</title>
		<link>http://repeatgeek.com/career/5-types-of-comments-to-avoid-making-in-your-code/</link>
		<comments>http://repeatgeek.com/career/5-types-of-comments-to-avoid-making-in-your-code/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:19:16 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[annoy]]></category>
		<category><![CDATA[challenge]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[readability]]></category>
		<category><![CDATA[revision]]></category>
		<category><![CDATA[TODO]]></category>
		<category><![CDATA[VCS]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=511</guid>
		<description><![CDATA[Have you ever been reviewing code and come across a comment that you deemed was unnecessary? Commenting your code is meant to improve the readability of your code and make it more understandable to someone other than the original developer. I have identified 5 types of comments that really annoy me and the types of [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2011/' rel='bookmark' title='My Experience at Orlando Code Camp 2011'>My Experience at Orlando Code Camp 2011</a></li>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-view-inception-through-code/' rel='bookmark' title='How To View Inception Through Code'>How To View Inception Through Code</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Have you ever been reviewing code and come across a comment that you deemed was unnecessary? Commenting your code is meant to improve the readability of your code and make it more understandable to someone other than the original developer. </p>
<p>I have identified 5 types of comments that really annoy me and the types of programmers who make them. I hope after reading this you won&#8217;t be one who falls into one of these categories. As a challenge, you can try to match up these comment programmers with <a href="http://stevenbenner.com/2010/07/the-5-types-of-programmers/">the 5 types of programmers</a>.</p>
<h2>1. The Proud Programmer </h2>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">class</span> Program<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">static</span> <span class="kw1">void</span> Main<span class="br0">&#40;</span><span class="kw4">string</span><span class="br0">&#91;</span><span class="br0">&#93;</span> args<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">string</span> message <span class="sy0">=</span> <span class="st0">&quot;Hello World!&quot;</span><span class="sy0">;</span> &nbsp;<span class="co1">// 07/24/2010 Bob</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>message<span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// 07/24/2010 Bob</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; message <span class="sy0">=</span> <span class="st0">&quot;I am so proud of this code!&quot;</span><span class="sy0">;</span> <span class="co1">// 07/24/2010 Bob</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>message<span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// 07/24/2010 Bob</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>
This programmer is so proud of his code that he feels the need to tag every line of code with his initials. Implementing a version control system (VCS) allows for accountability in code changes, but at first glance it won&#8217;t be so obvious who is responsible.
</p>
<h2>2. The Obsolete Programmer</h2>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">class</span> Program<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">static</span> <span class="kw1">void</span> Main<span class="br0">&#40;</span><span class="kw4">string</span><span class="br0">&#91;</span><span class="br0">&#93;</span> args<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="coMULTI">/* This block of code is no longer needed<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* because we found out that Y2K was a hoax<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* and our systems did not roll over to 1/1/1900 */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">//DateTime today = DateTime.Today;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">//if (today == new DateTime(1900, 1, 1))</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">//{</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// &nbsp; &nbsp;today = today.AddYears(100);</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// &nbsp; &nbsp;string message = &quot;The date has been fixed for Y2K.&quot;;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// &nbsp; &nbsp;Console.WriteLine(message);</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">//}</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>
If a piece of code is no longer used (i.e. Obsolete), delete it &#8211; don&#8217;t clutter your working code with several lines of unnecessary comments. Besides if you ever need to replicate this deleted code you have a version control system, so you can recover the code from an earlier revision.
</p>
<h2>3. The Obvious Programmer</h2>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">class</span> Program<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">static</span> <span class="kw1">void</span> Main<span class="br0">&#40;</span><span class="kw4">string</span><span class="br0">&#91;</span><span class="br0">&#93;</span> args<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="coMULTI">/* This is a for loop that prints the <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* words &quot;I Rule!&quot; to the console screen <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* 1 million times, each on its own line. It<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* accomplishes this by starting at 0 and <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* incrementing by 1. If the value of the <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* counter equals 1 million the for loop<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;* stops executing.*/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">for</span> <span class="br0">&#40;</span><span class="kw4">int</span> i <span class="sy0">=</span> <span class="nu0">0</span><span class="sy0">;</span> i <span class="sy0">&lt;</span> <span class="nu0">1000000</span><span class="sy0">;</span> i<span class="sy0">++</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span><span class="st0">&quot;I Rule!&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>
We all know how basic programming logic works &#8211; this is not &#8220;Introduction to Programming.&#8221; You don&#8217;t need to waste time explaining how the obvious works, and we&#8217;re glad you can explain how your code functions &#8211; but it&#8217;s a waste of space.
</p>
<h2>4. The Life Story Programmer</h2>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">class</span> Program<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">static</span> <span class="kw1">void</span> Main<span class="br0">&#40;</span><span class="kw4">string</span><span class="br0">&#91;</span><span class="br0">&#93;</span> args<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="coMULTI">/* I discussed with Jim from Sales over coffee <br />
&nbsp; &nbsp; &nbsp; &nbsp; * at the Starbucks on main street one day and he<br />
&nbsp; &nbsp; &nbsp; &nbsp; * told me that Sales Reps receive commission <br />
&nbsp; &nbsp; &nbsp; &nbsp; * based upon the following structure. <br />
&nbsp; &nbsp; &nbsp; &nbsp; * Friday: 25%<br />
&nbsp; &nbsp; &nbsp; &nbsp; * Wednesday: 15%<br />
&nbsp; &nbsp; &nbsp; &nbsp; * All Other Days: 5%<br />
&nbsp; &nbsp; &nbsp; &nbsp; * Did I mention that I ordered the Caramel Latte with<br />
&nbsp; &nbsp; &nbsp; &nbsp; * a double shot of Espresso? <br />
&nbsp; &nbsp; &nbsp; &nbsp;*/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">double</span> price <span class="sy0">=</span> <span class="nu0">5.00</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">double</span> commissionRate<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">double</span> commission<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span>DateTime.<span class="me1">Today</span>.<span class="me1">DayOfWeek</span> <span class="sy0">==</span> DayOfWeek.<span class="me1">Friday</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; commissionRate <span class="sy0">=</span> .25<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span> <span class="kw1">if</span> <span class="br0">&#40;</span>DateTime.<span class="me1">Today</span>.<span class="me1">DayOfWeek</span> <span class="sy0">==</span> DayOfWeek.<span class="me1">Wednesday</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; commissionRate <span class="sy0">=</span> .15<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; commissionRate <span class="sy0">=</span> .05<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; commission <span class="sy0">=</span> price <span class="sy0">*</span> commissionRate<span class="sy0">;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>
If you have to mention requirements in your comments, don&#8217;t mention people&#8217;s names. Jim from sales probably moved on from the company and most likely the programmers reading this won&#8217;t know who he is. Not to mention the fact that it everything else in the comment is irrelevant.
</p>
<h2>5. The Someday Programmer</h2>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">class</span> Program<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">static</span> <span class="kw1">void</span> Main<span class="br0">&#40;</span><span class="kw4">string</span><span class="br0">&#91;</span><span class="br0">&#93;</span> args<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="co1">//TODO: I need to fix this someday &#8211; 07/24/1995 Bob</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="coMULTI">/* I know this error message is hard coded and<br />
&nbsp; &nbsp; &nbsp; &nbsp; * I am relying on a Contains function, but <br />
&nbsp; &nbsp; &nbsp; &nbsp; * someday I will make this code print a <br />
&nbsp; &nbsp; &nbsp; &nbsp; * meaningful error message and exit gracefully.<br />
&nbsp; &nbsp; &nbsp; &nbsp; * I just don&#8217;t have the time right now.<br />
&nbsp; &nbsp; &nbsp; &nbsp;*/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="kw4">string</span> message <span class="sy0">=</span> <span class="st0">&quot;An error has occurred&quot;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">if</span><span class="br0">&#40;</span>message.<span class="me1">Contains</span><span class="br0">&#40;</span><span class="st0">&quot;error&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">throw</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Exception<span class="br0">&#40;</span>message<span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>
This type of comment is sort of a catch-all it combines all the other types. The TODO comment can be very useful when you are in the initial development stages of your project, but if this appears several years later in your production code &#8211; it can spell problems. If something needs to be fixed, fix it now and do not put it off until later.
</p>
<p><a href="http://www.amazon.com/gp/product/0735619670?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0735619670"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2009/11/CodeComplete2.jpg"></a></p>
<p>
If you are one who makes these types of comments or would like to learn best practices in comment usage, I recommend reading a book like <em>Code Complete</em> by Steve McConnell. This is one of the <a href="http://repeatgeek.com/tools/6-books-every-programmer-should-own/">books that I recommend all programmers should own</a>.  </p>
<p>Or Perhaps you can learn how to <a href="http://richard.dallaway.com/please-stop-commenting-your-code">stop commenting your code</a> altogether.
</p>
<p>
Do you see any other unnecessary or annoying comments in your code? Please feel free to share.
</p>
<p>
Update (11/11/11): I found some additional funny code comments: <a href="http://aboukone.com/2011/11/08/10-best-code-comments/">10 &#8220;Best&#8221; Code Comments</a></p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2011/' rel='bookmark' title='My Experience at Orlando Code Camp 2011'>My Experience at Orlando Code Camp 2011</a></li>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-view-inception-through-code/' rel='bookmark' title='How To View Inception Through Code'>How To View Inception Through Code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/5-types-of-comments-to-avoid-making-in-your-code/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>How to Get Started with Windows SharePoint Application Development</title>
		<link>http://repeatgeek.com/career/how-to-get-started-with-windows-sharepoint-application-development/</link>
		<comments>http://repeatgeek.com/career/how-to-get-started-with-windows-sharepoint-application-development/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:16:25 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[DreamSpark]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=458</guid>
		<description><![CDATA[I&#8217;ve made it a goal to become certified in Windows SharePoint Services 3.0 &#8211; Application Development by the end of the month. MCTS Exam 70-541 The Setup I am fortunate to have access to Microsoft DreamSpark, which provides students access to full versions of the latest Microsoft development tools. I believe the only requirement is [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/sharepoint-2010-development-resources/' rel='bookmark' title='SharePoint 2010 Development Resources'>SharePoint 2010 Development Resources</a></li>
<li><a href='http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2010/' rel='bookmark' title='My Experience at Orlando Code Camp 2010'>My Experience at Orlando Code Camp 2010</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-ii/' rel='bookmark' title='How To Master a Programming Language II'>How To Master a Programming Language II</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made it a goal to become certified in Windows SharePoint Services 3.0 &#8211; Application Development by the end of the month.</p>
<p><a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-541">MCTS Exam 70-541</a></p>
<h3>The Setup</h3>
<p>I am fortunate to have access to <a href="https://www.dreamspark.com/default.aspx">Microsoft DreamSpark</a>, which provides students access to full versions of the latest Microsoft development tools. I believe the only requirement is that you have an active student email address. </p>
<p>To setup my environment, I installed the following:</p>
<ul>
<li><a href="http://www.microsoft.com/windowsserver2003/default.mspx">Microsoft Windows Server 2003</a></li>
<li><a href="http://www.microsoft.com/windowsserver2003/techinfo/overview/iis.mspx">Internet Information Services (IIS)</a></li>
<li><a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx">Microsoft Visual Studio 2008</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=EF93E453-75F1-45DF-8C6F-4565E8549C2A&#038;displaylang=en">Windows SharePoint Services 3.0 with SP2</a></li>
</ul>
<h3>Learning</h3>
<p>My primary source of learning will be reading the following book (available via Amazon.com and through <a href="http://www.acm.org/">ACM</a> subscription:</p>
<h3>Inside Microsoft Windows SharePoint Services 3.0</h3>
<h4>Ted Pattison and Daniel Larson</h4>
<p><a href="http://www.amazon.com/gp/product/0735623201?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0735623201"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/02/InsideWSS30.jpg"></a></p>
<p>The book also contains a companion CD with examples. </p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/sharepoint-2010-development-resources/' rel='bookmark' title='SharePoint 2010 Development Resources'>SharePoint 2010 Development Resources</a></li>
<li><a href='http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2010/' rel='bookmark' title='My Experience at Orlando Code Camp 2010'>My Experience at Orlando Code Camp 2010</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-ii/' rel='bookmark' title='How To Master a Programming Language II'>How To Master a Programming Language II</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/how-to-get-started-with-windows-sharepoint-application-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get Hired By Solving Programming Puzzles</title>
		<link>http://repeatgeek.com/career/get-hired-by-solving-programming-puzzles/</link>
		<comments>http://repeatgeek.com/career/get-hired-by-solving-programming-puzzles/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 03:00:34 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Cambridge]]></category>
		<category><![CDATA[Contests]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Puzzles]]></category>
		<category><![CDATA[Recruiting]]></category>
		<category><![CDATA[Refining]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=355</guid>
		<description><![CDATA[When it comes to down to it practice makes perfect. In order to become a successful programmer you need to keep your skills up-to-date and work on problems outside of those faced at work. Luckily, there are numerous websites that provide the opportunity to practice. The following blogs comprehensively list most of the puzzle websites [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-v/' rel='bookmark' title='How To Master a Programming Language V'>How To Master a Programming Language V</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When it comes to down to it practice makes perfect. In order to become a successful programmer you need to keep your skills up-to-date and work on problems outside of those faced at work. </p>
<p>Luckily, there are numerous websites that provide the opportunity to practice. The following blogs comprehensively list most of the puzzle websites that are available to help you practice your skills.</p>
<ul>
<li><a href="http://www.rbright.net/2009/10/5-resources-for-refining-your-programming-skills/">5 Resources for Refining Your Programming Skills</a> (via rbright.net)</li>
<li><a href="http://grok-code.com/214/practice-your-code-fu-programming-contests-and-puzzles-online/">Practice Your Code-Fu: Programming Contests and Puzzles Online</a> (via grok-code.com)</li>
<li><a href="http://sixrevisions.com/resources/10-puzzle-websites-to-sharpen-your-programming-skills/">10 Puzzle Websites to Sharpen Your Programming Skills</a> (via sixrevisions.com)
</li>
<li><a href="http://www.coderholic.com/10-more-puzzle-websites-to-sharpen-your-programming-skills/">10 More Puzzle Websites to Sharpen Your Programming Skills</a> (via coderholic.com)</li>
</ul>
<p>There is one other website that is absent from the lists above that provides programming puzzles. </p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2009/12/ITA.png" alt="ITA" title="ITA" width="283" height="155" class="alignleft size-full wp-image-357" /></p>
<p><a href="http://www.itasoftware.com/index.html">ITA Software</a> is a company based out of Cambridge, MA that specializes in the development of airline and travel software. They use programming puzzles to attract and recruit new employees. </p>
<p>They won&#8217;t grade your solution if aren&#8217;t considering working for them, but that doesn&#8217;t mean that you can&#8217;t at least try implementing a solution. The puzzles are designed for those looking for a challenge. </p>
<p>If you are ready for the challenge, ITA has two sets of puzzles:</p>
<ul>
<li><a href="http://www.itasoftware.com/careers/hiringpuzzles.html?catid=114">ITA Software Current Hiring Puzzles</a></li>
<li><a href="http://itasoftware.com/careers/puzzle_archive.html">ITA Software Puzzle Archive (Not Eligible For Recruiting)</a></li>
</ul>
<p>If you have attempted these problems or have been hired as a result of completing one of the problems, please share your experiences.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-v/' rel='bookmark' title='How To Master a Programming Language V'>How To Master a Programming Language V</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/get-hired-by-solving-programming-puzzles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Programmers Can Learn From Salespeople</title>
		<link>http://repeatgeek.com/career/what-programmers-can-learn-from-salespeople/</link>
		<comments>http://repeatgeek.com/career/what-programmers-can-learn-from-salespeople/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:00:21 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Cold-calling]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[junk]]></category>
		<category><![CDATA[Negotiation]]></category>
		<category><![CDATA[Pressure]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[relationship]]></category>
		<category><![CDATA[salespeople]]></category>
		<category><![CDATA[Salesperson]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Telemarketing]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=339</guid>
		<description><![CDATA[Screenshot courtesy of: The Secret of Monkey Islandâ„¢ What comes to mind when you hear the terms: &#8216;Salesman&#8217;, &#8216;Salesperson&#8217; or &#8216;Sales&#8217; ? High-Pressure Negotiation Cold-calling Telemarketing Spam If these are the type of words that come to mind, you have probably been dealing with some bad salespeople. What is Sales? I do not work nor [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/leadership/write-your-own-programmers-credo/' rel='bookmark' title='Write Your Own Programmers Credo'>Write Your Own Programmers Credo</a></li>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/technical/10-resources-for-design-challenged-programmers/' rel='bookmark' title='10 Resources for Design-Challenged Programmers'>10 Resources for Design-Challenged Programmers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://repeatgeek.com/wp-content/uploads/2009/12/Stans_Ships.jpg" alt="Stans Used Ships" title="Stans Used Ships" width="500" height="223" class="aligncenter size-full wp-image-342" /></p>
<p>Screenshot courtesy of: <a href="http://store.steampowered.com/app/32360/">The Secret of Monkey Islandâ„¢</a></p>
<p>What comes to mind when you hear the terms: &#8216;Salesman&#8217;, &#8216;Salesperson&#8217; or &#8216;Sales&#8217; ?</p>
<ul>
<li>High-Pressure</li>
<li>Negotiation</li>
<li>Cold-calling</li>
<li>Telemarketing</li>
<li>Spam</li>
</ul>
<p>If these are the type of words that come to mind, you have probably been dealing with some bad salespeople. </p>
<h2>What is Sales?</h2>
<p>I do not work nor have I ever worked in sales, but I have taken sales classes offered by my employer. </p>
<p>If there was one thing I learned about sales, it&#8217;s that the sales process is more about having a conversation than it is about buying or selling something. </p>
<h2>How does this relate to programming?</h2>
<p>Before you see how to this relates to programming, you must be able to think like someone who is motivated more by helping people rather than by money. </p>
<h3>The Financial Planner</h3>
<p>The scenario to understanding genuine salespeople is to look at a financial planners. If you are unaware of what financial planners do &#8211; they advise individuals in making major financial decisions such as retirement, taxes, investing, etc. </p>
<p>When you visit a financial planner, you could tell him or her that you want to retire by age 50 and you want to invest $100 per month. Without any further discussion, a financial planner could come up with a solution for your retirement, but is it going to be the best solution?</p>
<h3>The Programmer</h3>
<p>Any good programmer can take requirements and a design and develop a solution that meets the needs that are laid out. But is this what the end-user really wanted? </p>
<p>What if you actually sat down with the end-user and had a conversation with him or her rather than rely on some specs that a business analyst obtained? </p>
<p>You might be thinking to yourself, isn&#8217;t that the job of the business analyst? In an ideal world it would be, but like the Game of Telephone (or <a href="http://en.wikipedia.org/wiki/Telephone_game">Chinese Whispers</a>) something is going to get lost in translation going from end-user -> Business Analyst -> Programmer. </p>
<p>If you have the opportunity to have a conversation with the end-user, take it. Establish a relationship, listen to them to find out what they really need, negotiate possible solutions and close by building them a solution.</p>
<h2>Listen Carefully</h2>
<p>The most important part about sales and also with programming is: <strong>listening</strong>. </p>
<p>Don&#8217;t be the used-car salesperson who wants to sell the heap of junk on the lot, without understanding the true needs of the customer.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/leadership/write-your-own-programmers-credo/' rel='bookmark' title='Write Your Own Programmers Credo'>Write Your Own Programmers Credo</a></li>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/technical/10-resources-for-design-challenged-programmers/' rel='bookmark' title='10 Resources for Design-Challenged Programmers'>10 Resources for Design-Challenged Programmers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/what-programmers-can-learn-from-salespeople/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve Learned from Teaching Programming</title>
		<link>http://repeatgeek.com/career/what-ive-learned-from-teaching-programming/</link>
		<comments>http://repeatgeek.com/career/what-ive-learned-from-teaching-programming/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 22:00:17 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[co workers]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[lesson planning]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[object oriented programming]]></category>
		<category><![CDATA[self paced training]]></category>
		<category><![CDATA[technical difficulties]]></category>
		<category><![CDATA[web conference]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=191</guid>
		<description><![CDATA[I am not a teacher, professor, trainer, etc. but I recently was afforded the opportunity to teach programming to my co-workers. At work we started doing more and more development in .NET. I previously acquired skills in .NET from a previous employer. My co-workers had minimal exposure to .NET and object-oriented programming. My boss approached [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iii/' rel='bookmark' title='How To Master a Programming Language III'>How To Master a Programming Language III</a></li>
<li><a href='http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/' rel='bookmark' title='More Programming Books Recommended By Readers'>More Programming Books Recommended By Readers</a></li>
<li><a href='http://repeatgeek.com/career/get-hired-by-solving-programming-puzzles/' rel='bookmark' title='Get Hired By Solving Programming Puzzles'>Get Hired By Solving Programming Puzzles</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I am not a teacher, professor, trainer, etc. but I recently was afforded the opportunity to teach programming to my co-workers.</p>
<p>At work we started doing more and more development in .NET. I previously acquired skills in .NET from a previous employer. My co-workers had minimal exposure to .NET and object-oriented programming.</p>
<p>My boss approached me to ask if I&#8217;d liked to teach ASP.NET to the rest of my co-workers. Naturally, I accepted because I thought teaching would help reinforce my skills.</p>
<h2>The Setup</h2>
<h3>Lesson Planning</h3>
<p>I got started learning .NET from studying for my MCTS, so I decided to prepare 10 one-hour lessons based on topics from the Microsoft Press books:</p>
<h4>MCTS Self-Paced Training Kit (Exam 70-562): MicrosoftÂ® .NET Framework 3.5 ASP.NET Application Development</h4>
<p><a href="http://www.amazon.com/gp/product/073562562X?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=073562562X"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/MCTSWeb.jpg" border="0" alt="" /></a><img class=" iymbytnvwmtuqdlpclzy iymbytnvwmtuqdlpclzy" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=073562562X" border="0" alt="" width="1" height="1" /></p>
<h4>MCTS Self-Paced Training Kit (Exam 70-536): MicrosoftÂ® .NET Framework Application Development Foundation</h4>
<p><a href="http://www.amazon.com/gp/product/0735626197?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735626197"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/MCTSFoundation.jpg" border="0" alt="" /></a><img class=" iymbytnvwmtuqdlpclzy iymbytnvwmtuqdlpclzy" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0735626197" border="0" alt="" width="1" height="1" /></p>
<p>Since many of my co-workers had not been exposed to object-oriented programming, I made the first lesson an overview. I knew that this would be vital to understanding the .NET framework. For this I just used <a href="http://en.wikipedia.org/wiki/Object-oriented_programming">Wikipedia </a>as a resource.</p>
<p>The conclusion of each lesson was a &#8220;homework&#8221; problem using the techniques explained in the lesson.</p>
<h3>Teaching Environment</h3>
<p>Many of my co-workers work remotely, so teaching via the web was the best means. To facilitate this, I used the services of <a href="http://www.dimdim.com/">Dimdim </a>for web conferencing in combination with a teleconference bridge.</p>
<h2>Successful or Not?</h2>
<p>I ended up delivering teaching all of my lessons. There were times where I had technical difficulties where the web conference experience lag time or my lesson samples wouldn&#8217;t produce the expected results. Through preparing each week&#8217;s lessons I reinforced my .NET knowledge and studied beyond what I was teaching to make sure I could explain any questions that may have been asked.</p>
<p>So my delivery was (mostly) successful and I learned a lot, but are these the criteria in which to measure success?</p>
<h3>Feedback</h3>
<p>What was missing from my teaching methods was the feedback of my co-workers. I never took it upon myself to ask them if they were learning. When you are teaching in a corporate environment it is difficult to gauge the progress of your &#8220;students&#8221;.</p>
<p>It would&#8217;ve helped me if I knew my lessons were heading in the right direction. I&#8217;ve asked my co-workers at the end of all the lessons what they got from my teaching, but by that time it was too late.</p>
<p>A couple of the responses I received were:</p>
<blockquote><p>It&#8217;s difficult to learn a new programming language unless I&#8217;m using it for a project.</p></blockquote>
<blockquote><p>I tend to get distracted when learning via webinar.</p></blockquote>
<h2>Things I Would Do Differently</h2>
<p>I think a classroom setting would be the ideal environment for teaching/learning. This may be costly especially if you have remote employees. Given this experience with teaching via webinar, I sometimes wonder about the quality of some online degree programs.</p>
<p>I also could have given an exam to ensure my co-workers were paying attention and/or grasping what I was teaching, but I think asking a more effective way would be to get them involved by asking specific questions or having them work hands-on in a classroom.</p>
<p>By becoming a teacher (if only through work), I know understand the importance of feedback/evaluation. In academia, most teachers and professors will require an evaluation at the conclusion of a class, but I think continual evaluation would be most beneficial for the student and the teacher.</p>
<p>The teacher can adjust his/her teaching style to adapt to the students and the students will be able to comprehend what they are learning.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iii/' rel='bookmark' title='How To Master a Programming Language III'>How To Master a Programming Language III</a></li>
<li><a href='http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/' rel='bookmark' title='More Programming Books Recommended By Readers'>More Programming Books Recommended By Readers</a></li>
<li><a href='http://repeatgeek.com/career/get-hired-by-solving-programming-puzzles/' rel='bookmark' title='Get Hired By Solving Programming Puzzles'>Get Hired By Solving Programming Puzzles</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/what-ive-learned-from-teaching-programming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What Programming Language Should I Learn Next?</title>
		<link>http://repeatgeek.com/career/what-programming-language-should-i-learn-next/</link>
		<comments>http://repeatgeek.com/career/what-programming-language-should-i-learn-next/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:00:49 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[cutting edge technology]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[new language]]></category>
		<category><![CDATA[programming experience]]></category>
		<category><![CDATA[programming languages]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[technical discipline]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=138</guid>
		<description><![CDATA[I am a big fan of reddit and it is usually my primary source of reading what&#8217;s new. There is a sub-category (sub-reddit) on Reddit for Programming and one question that is posed very frequently is: What programming language should I learn next? If your purpose for learning a new language is career motivated, I [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-v/' rel='bookmark' title='How To Master a Programming Language V'>How To Master a Programming Language V</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iii/' rel='bookmark' title='How To Master a Programming Language III'>How To Master a Programming Language III</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I am a big fan of <a href="http://www.reddit.com">reddit</a> and it is usually my primary source of reading what&#8217;s new.</p>
<p>There is a sub-category (sub-reddit) on Reddit for Programming and one question that is posed very frequently is: <em>What programming language should I learn next? </em></p>
<p>If your purpose for learning a new language is career motivated, I recommend that you start your quest looking at what what top companies are searching for in candidates. Companies such as Microsoft, Google and and Apple will generally seek individuals who have knowledge of the core programming languages such as C, C++, Java and will mix in some of the more cutting-edge technology such such as AJAX or jQuery.</p>
<p>Here are some sample job requirements from Google, Microsoft, Facebook and Apple.</p>
<blockquote><p><strong>Google </strong>- <em>Software Engineer</em></p>
<ul>
<li>BS, MS, or PhD in Computer Science or related technical discipline (or equivalent).</li>
<li>A solid foundation in computer science, with strong competencies in data structures, algorithms, and software design.</li>
<li>Extensive programming experience in C/C++ and/or Java (strong OO skills preferred).</li>
<li> Several years of large systems software design and development experience, with extensive knowledge of Unix/Linux.</li>
<li>Coding skills in Python or Javascript/AJAX, database design and SQL, and/or knowledge of TCP/IP and network programming are a plus.</li>
</ul>
</blockquote>
<blockquote><p><strong>Facebook</strong> &#8211; <em>Front-End Engineer</em></p>
<ul>
<li>A passion for performance debugging and benchmarking Experience building JavaScript/HTML/CSS applications and frameworks</li>
<li>Experience working with JavaScript/HTML/CSS in high-performance environments</li>
<li>Knowledge of but not reliant on Prototype JS, MooTools, Dojo, jQuery</li>
<li>Identify performance bottlenecks in JavaScript applications</li>
<li> Build performance minded front end abstractions and systems</li>
<li>Provide code optimization recommendations</li>
<li>Prototype and implement optimization techniques</li>
<li>Benchmark existing code and enhancements</li>
<li>Participate in design and code reviews</li>
<li>Code primarily in JavaScript, HTML &amp; CSS</li>
<li>Interface with other team members to incorporate their innovations and vice versa</li>
<li>Identify and communicate best practices interpersonal and communication skills, and proven ability to work effectively with all organizational levels</li>
<li>BS or MS degree in Computer Science or Engineering preferred</li>
</ul>
</blockquote>
<blockquote><p><strong>Microsoft</strong> &#8211; <em>Software Development Engineer (SDE)</em></p>
<ul>
<li>Pursuing a B.S./M.S. or Ph.D. degree in Engineering, Computer Science, or related field</li>
<li>1-2 years experience programming in C/C++/C#, Java, and/or other computer programming languages preferred</li>
<li>Ability to derive creative and innovative solutions by thinking â€œoutside the boxâ€</li>
<li>Expertise in feature definition, design, and feasibility</li>
<li>Demonstrated skill in estimating development time</li>
</ul>
</blockquote>
<blockquote><p><strong>Apple </strong>- <em>Application Software Engineer</em></p>
<p>Key Requirements:</p>
<ul>
<li>BS CS/CE or equivalent</li>
<li>Strong programming skills, preferably with C, Objective-C, and/or C++</li>
<li> Excellent communication and collaborative skills</li>
<li>Excitement and passion to work on amazing products</li>
<li>Deep understanding of performance assessment and optimization</li>
<li> Proven ability to excel in a fast-paced development team</li>
</ul>
<p>Preferred skills:</p>
<ul>
<li>Mac OS X and/or iPhone OS programming experience</li>
<li>User-interface programming experience</li>
<li>Familiarity with web technologies and XML</li>
</ul>
</blockquote>
<p>By reviewing the job postings of the leaders in technology, you should be able to get a good idea of what is in demand these days. </p>
<p>I know from past experience when I looking for a job, I often saw postings that listed every programming language known to man: Cobol, Fortran, Pascal, QBasic, C, C++, C#, VB, VB.NET, Java, PHP, Perl, Python, Ruby, etc. Any not only that, they were looking for 10+ years experience in each one. These types of postings are unrealistic, not to mention ridiculous &#8211; it is highly unlikely that anyone has all the required experience (especially 10 years of .NET). </p>
<p>There is nothing wrong with learning an outdated or obsolete programming language for fun &#8211; I encourage it, if you have the time to learn it. But for advancing your career, a solid understanding of a core language is key.</p>
<p>Beyond programming skills, you might decide to acquire skills in another area such as development estimation, code design, or something non-technical such as communication skills. </p>
<p>How do you decide what you are going to learn next? </p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-v/' rel='bookmark' title='How To Master a Programming Language V'>How To Master a Programming Language V</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iii/' rel='bookmark' title='How To Master a Programming Language III'>How To Master a Programming Language III</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/what-programming-language-should-i-learn-next/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

