<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>RepeatGeek</title>
	
	<link>http://repeatgeek.com</link>
	<description>Helping geeks achieve success</description>
	<lastBuildDate>Sat, 31 Jul 2010 15:28:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RepeatGeek" /><feedburner:info uri="repeatgeek" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>RepeatGeek</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How To View Inception Through Code</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/FhnUpBHqXBU/</link>
		<comments>http://repeatgeek.com/technical/how-to-view-inception-through-code/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 15:28:30 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Bubble]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[dream]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[FIFO]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[Inception]]></category>
		<category><![CDATA[Join]]></category>
		<category><![CDATA[Limbo]]></category>
		<category><![CDATA[Loop]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[Pushed]]></category>
		<category><![CDATA[Recursion]]></category>
		<category><![CDATA[Stack]]></category>
		<category><![CDATA[Thread]]></category>
		<category><![CDATA[Threading]]></category>
		<category><![CDATA[ThreadStart]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=529</guid>
		<description><![CDATA[If you have not seen Inception yet, I highly recommend doing so before reading this post. **** SPOILERS AHEAD **** Inception combines the best elements of movies in the Simulism genre; such as Dark City, eXistenZ, The Thirteenth Floor and The Maxtrix Trilogy; and creates an original, thought provoking film. Watching the film from the [...]]]></description>
			<content:encoded><![CDATA[<p>If you have not seen Inception yet, I highly recommend doing so before reading this post. </p>
<p><center><strong>**** SPOILERS AHEAD ****</strong></center></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/InceptionPoster-186x300.png" alt="Inception Movie Poster" title="InceptionPoster" width="186" height="300" class="aligncenter size-medium wp-image-535" /></p>
<p>Inception combines the best elements of movies in the <a href="http://www.simulism.org/Simulism_Home">Simulism</a> genre; such as <a href="http://www.imdb.com/title/tt0118929/">Dark City</a>, <a href="http://www.imdb.com/title/tt0120907/">eXistenZ</a>, <a href="http://www.imdb.com/title/tt0139809/">The Thirteenth Floor</a> and <a href="http://www.imdb.com/title/tt0133093/">The Maxtrix Trilogy</a>; and creates an original, thought provoking film. </p>
<p>Watching the film from the standpoint of a programmer, I could not help seeing the similarities between the plot devices and basic programming concepts. </p>
<h2>The Kick</h2>
<p><strong>The Kick</strong> is the concept they use in the movie to return to a dream level above the existing one. For example, if you perceive that you are falling in a dream, you have a tendency to wake up.</p>
<p>The Kick can be portrayed in programming in several different ways:</p>
<h3>Recursion</h3>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">bool</span> Dream<span class="br0">&#40;</span><span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp;kick <span class="sy0">=</span> CheckForKick<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;<span class="kw1">if</span><span class="br0">&#40;</span>kick<span class="br0">&#41;</span> <span class="kw1">return</span> true<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;<span class="kw1">return</span> Dream<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>* CheckForKick() implementation has been omitted.</p>
<p>In this recursion example, each call to function Dream() will call another sub-Dream &#8211; until the CheckForKick() function returns true, which can occur however many levels deep.   </p>
<h3>Exception Bubble</h3>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw4">bool</span> Dream<span class="br0">&#40;</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">try</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">try</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">try</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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> DreamException<span class="br0">&#40;</span><span class="st0">&quot;Receive Kick&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">catch</span><span class="br0">&#40;</span>DreamException dx<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">throw</span> dx<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">catch</span><span class="br0">&#40;</span>DreamException dx<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">throw</span> dx<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">catch</span><span class="br0">&#40;</span>DreamException dx<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Handle Kick thrown 3 levels deep.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.<span class="me1">WriteLine</span><span class="br0">&#40;</span>dx.<span class="me1">Message</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</div>
<p>In this Exception example, an exception is thrown within a nested try block. Rather than handling the exception at that level, it&#8217;s bubbled up until is (hopefully) handled gracefully.</p>
<h3>Stack</h3>
<p>This can best be represented by the following infographic, which I reconstructed to be a stack. Here is the <a href="http://geeksofdoom.com/2010/07/27/inception-infographics-explain-the-films-levels-kicks/2010-07-27-inception_levels/">original source</a>.</p>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/InceptionStack.png"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/InceptionStack-189x300.png" alt="Inception Stack" title="InceptionStack" width="189" height="300" class="aligncenter size-medium wp-image-536" /></a></p>
<p>A stack is one of the most fundamental data structures in computing. A stack operates in the following: items are added in a First-In, Last-Out (FIFO) manner. They are added via being &#8220;Pushed&#8221; onto the stack and removed via being &#8220;popped&#8221; from the Stack. </p>
<p>In the movie, each sub-dream is pushed onto the stack starting with reality. Our characters cannot return to a different dream level by popping the dream above off the stack.</p>
<h2>Sedation</h2>
<p>They use <strong>Sedation</strong> in the movie to prevent the dreamers from waking up any means other than &#8220;falling&#8221; on all dream levels above the first. At the first dream level, the only way to wake up is for the machine&#8217;s time to elapse. </p>
<p>Sedation in the movie can be explained through the use of Threading.</p>
<h3>Threading</h3>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw1">void</span> Inception<span class="br0">&#40;</span><span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp;Machine mach <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Machine<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;Sedation sed <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Sedation<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;Thread machineThread <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Thread<span class="br0">&#40;</span><a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> ThreadStart<span class="br0">&#40;</span>mach.<span class="me1">Start</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;Thread sedationThread <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Thread<span class="br0">&#40;</span><a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> ThreadStart<span class="br0">&#40;</span>sed.<span class="me1">Sedate</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;<span class="kw1">try</span><br />
&nbsp; &nbsp; &nbsp;<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sedationThread.<span class="me1">Start</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; machineThread.<span class="me1">Start</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sedationThread.<span class="me1">Join</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; machineThread.<span class="me1">Join</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ReturnToReality<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp;<span class="kw1">catch</span><span class="br0">&#40;</span>Exception ex<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp;<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Limbo ???</span><br />
&nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>* Machine implementation omitted. Sedation implementation below.</p>
<p>In this example, you can think of the sedation and starting the &#8220;dream machine&#8221; as being two separate threads &#8211; both induce unconsciousness, but in different ways.</p>
<p>The sedation occurs first as indicated by the sedationThread.Start(), followed by the machine start machineThread.Start(). The Sedation.Sedate() implementation may look like the following:</p>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">public</span> <span class="kw1">void</span> Sedate<span class="br0">&#40;</span><span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Thread.<span class="me1">Sleep</span><span class="br0">&#40;</span>36000000<span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// 10 Hours</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>By calling join on the threads, the ReturnToReality() function will not get called until both the sedation wears off or the machine time elapses. </p>
<h2>Limbo</h2>
<p><strong>Limbo</strong> is defined in the movie has a mental state where your mind doesn&#8217;t know if you are in reality or not. The only way out is to realize that Limbo is not reality.</p>
<p>I already hinted at how Limbo could be represented in code in the previous example &#8211; if there is an exception (i.e. death) during the running of the threads that does not allow them to complete. Also, Limbo could also be represented by the following:</p>
<h3>Infinite Loop or Infinite Recursion</h3>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">while</span><span class="br0">&#40;</span><span class="sy0">!</span>IsAwareOfReality<span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp;CreateBuildings<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;CreateFromMemories<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp;QuestionReality<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>Most of the time that we are programming and find ourselves in an infinite loop, we are not aware of it until we start to question:</p>
<ul>
<li>Why is this taking so long?</li>
<li>Why is my memory decreasing?</li>
<li>Why is my CPU pegged at 100%</li>
</ul>
<p>Fortunately in programming there are ways to identify that we are in an infinite loop state.</p>
<p>If you are not aware of these conditions, you will stay there until your program runs out of memory or crashes (dies) or you realize you are in a loop (meet a condition) &#8211; by calling the QuestionReality() function. </p>
<h2>Architect</h2>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/EllenPage.png" alt="Ellen Page" title="EllenPage" width="266" height="269" class="aligncenter size-full wp-image-534" /></p>
<p>The last item I will mention is the role of Architect. In the movie, Ariadne (Ellen Page) is responsible for creating the dreamscapes. This shares similarities with Software Architecture. As a software architect you responsible for knowing the systems (the main characters in movie) that you work with and to create the best solutions (e.g. Never Ending Staircase) to new problems that need to be solved (Inception).  Being able to see the world around you as objects with state and behavior is a useful skill for both understanding Object Oriented Design/Programming; and as a Software Architect.</p>
<p>I was surprised how many people shared similar thoughts with comparing the movie with programming. If you enjoyed my post, please read their perspectives:</p>
<ul>
<li><a href="http://walterh.posterous.com/inception-a-programmers-guide-spoiler-warning">Inception: A programmer&#8217;s guide (spoiler warning)</a></li>
<li><a href="http://veetrag.net/2010/07/19/a-programmers-explanation-to-inception/">A Programmer&#8217;s Explanation to Inception</a></li>
<li><a href="http://latestatic.com/what-a-programmer-sees-when-he-watches-incept">What a Programmer Sees When He Watches Inception</a></li>

<p><a href="http://feedads.g.doubleclick.net/~a/5dQMfAWrg4AlV4C3JmHZi5VljJA/0/da"><img src="http://feedads.g.doubleclick.net/~a/5dQMfAWrg4AlV4C3JmHZi5VljJA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5dQMfAWrg4AlV4C3JmHZi5VljJA/1/da"><img src="http://feedads.g.doubleclick.net/~a/5dQMfAWrg4AlV4C3JmHZi5VljJA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/FhnUpBHqXBU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/technical/how-to-view-inception-through-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/technical/how-to-view-inception-through-code/</feedburner:origLink></item>
		<item>
		<title>5 Types of Comments to Avoid Making in Your Code</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/asrSz9uzGw0/</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 [...]]]></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><a href="http://feedads.g.doubleclick.net/~a/r8JxmXkyI4myvwCsUd-Qf2ZhFX8/0/da"><img src="http://feedads.g.doubleclick.net/~a/r8JxmXkyI4myvwCsUd-Qf2ZhFX8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/r8JxmXkyI4myvwCsUd-Qf2ZhFX8/1/da"><img src="http://feedads.g.doubleclick.net/~a/r8JxmXkyI4myvwCsUd-Qf2ZhFX8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/asrSz9uzGw0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/career/5-types-of-comments-to-avoid-making-in-your-code/feed/</wfw:commentRss>
		<slash:comments>51</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/career/5-types-of-comments-to-avoid-making-in-your-code/</feedburner:origLink></item>
		<item>
		<title>ASP.NET – Access To Path is Denied</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/LeIRo4wm_qc/</link>
		<comments>http://repeatgeek.com/technical/asp-net-access-to-path-is-denied/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 02:29:11 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASPNET]]></category>
		<category><![CDATA[dened]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security settings]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=502</guid>
		<description><![CDATA[If your ASP.NET program is attempting to read, write and/or delete a fie it can display the error &#8220;Access to Path &#8230; is Denied&#8221;. If this is the case, the directory may have the incorrect security settings. Here are the steps to add the correct the user security settings on Windows Server 2003: 1. Find [...]]]></description>
			<content:encoded><![CDATA[<p>If your ASP.NET program is attempting to read, write and/or delete a fie it can display the error <strong>&#8220;Access to Path &#8230; is Denied&#8221;</strong>. If this is the case, the directory may have the incorrect security settings. </p>
<p>Here are the steps to add the correct the user security settings on Windows Server 2003:</p>
<p>1. Find the folder or file that you are trying to access.<br />
2. Right-click the folder<br />
3. Select <strong>Properties</strong><br />
4. Click the <strong>Security</strong> tab<br />
5. Click the <strong>Add</strong> button</p>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/Properties.png"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/Properties-150x150.png" alt="" title="Properties" width="150" height="150" class="aligncenter size-thumbnail wp-image-503" /></a></p>
<p>6. Enter the user: <strong><em>&lt;SERVERNAME&gt;</em>\IIS_WPG</strong><br />
7. Click <strong>Check Names </strong>button</p>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/SelectUsersorGroups.png"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/SelectUsersorGroups-150x150.png" alt="" title="SelectUsersorGroups" width="150" height="150" class="aligncenter size-thumbnail wp-image-504" /></a></p>
<p>8. Click <strong>OK</strong> button<br />
9. Verify user has correct permissions (Read/Write)</p>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/UserPermissions.png"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/UserPermissions-150x150.png" alt="" title="UserPermissions" width="150" height="150" class="aligncenter size-thumbnail wp-image-505" /></a></p>
<p>10. Click <strong>OK</strong> button</p>
<p>Other Windows operating systems (XP, Vista, 7) may require the user: <strong><em>&lt;SERVERNAME&gt;</em>\ASPNET</strong> to be added.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/GEEbjKEQScmJuXpEJ9Az-igUwG4/0/da"><img src="http://feedads.g.doubleclick.net/~a/GEEbjKEQScmJuXpEJ9Az-igUwG4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GEEbjKEQScmJuXpEJ9Az-igUwG4/1/da"><img src="http://feedads.g.doubleclick.net/~a/GEEbjKEQScmJuXpEJ9Az-igUwG4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/LeIRo4wm_qc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/technical/asp-net-access-to-path-is-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/technical/asp-net-access-to-path-is-denied/</feedburner:origLink></item>
		<item>
		<title>Do-It-Yourself Free XML Tool Suite</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/UT7WCSlz1Og/</link>
		<comments>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 19:16:14 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Schema]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XMLNotepad]]></category>
		<category><![CDATA[XPath]]></category>
		<category><![CDATA[XPathVisualizer]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=496</guid>
		<description><![CDATA[If you ever had to work with XML documents and XML schemas, it can be pretty challenging if you don&#8217;t have the right tools. If you are creating/modifying XML through code (e.g. XML Web Services), it can especially be difficult searching XML nodes or trying to create a validated XML document. Personally, I believe that [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever had to work with XML documents and XML schemas, it can be pretty challenging if you don&#8217;t have the right tools. If you are creating/modifying XML through code (e.g. XML Web Services), it can especially be difficult searching XML nodes or trying to create a validated XML document.</p>
<p>Personally, I believe that <a href="http://www.altova.com/download/xmlspy/xml_editor_enterprise.html">XMLSpy</a> from Altova Software is one of the best tools available if you are going to be dealing with a lot of XML documents. However, this tool does come at a price. A few years ago, they used to offer a free community edition of their software &#8211; this has since been discontinued.</p>
<p>I&#8217;ve recently needed to create and modify some XML and was searching for some tools that fit the criteria:</p>
<ul>
<li>Windows Based</li>
<li>Non-Trial Editions of Software</li>
<li><strong>Free</strong></li>
</ul>
<p>I have come up with a list of three tools that perform a majority of the tasks in commercial products like XMLSpy and are a good alternative.</p>
<h2>1. <a href="http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&#038;displaylang=en">XML Notepad</a></h2>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/XMLNotepad.png"></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/XMLNotepad-300x224.png" alt="XML Notepad 2007" title="XMLNotepad" width="300" height="224" class="aligncenter size-medium wp-image-499" /></a></p>
<p>XML notepad makes it easy to edit XML nodes without the need to edit the XML syntax directly. By attaching an XML Schema, your XML document is checked for validation as you input values. </p>
<p>Although this tool has not seen an update since 2007, it is still one of the better free XML editors with a simple, yet powerful interface.</p>
<h2>2. <a href="http://xpathvisualizer.codeplex.com/">XPath Visualizer</a></h2>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/XPathVisualizer.png"></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/XPathVisualizer-300x225.png" alt="XPath Visualizer" title="XPathVisualizer" width="300" height="225" class="aligncenter size-medium wp-image-500" /></a></p>
<p>If you&#8217;ve ever had the need to query XML to find specific nodes, XPath Visualizer provides a way to test XPath queries against an XML document. With the ability to include XML namespaces, the XPath expressions can easily be imported into code environments like Visual Studio. </p>
<h2>3. <a href="http://msdn.microsoft.com/en-us/library/aa302296.aspx">XML Sample Generator</a></h2>
<p>You have an XML Schema, but now you need to create an XML document based off this schema. If you don&#8217;t have a tool that helps you visualize a schema graphically, it can be a daunting task to traverse an XML Schema and create an XML document manually. Thanks to the XML Sample Generator, you can import your XML Schema and export a well-formed, validated, XML document. </p>
<p>XML Sample Generator provides a good starting point if you need to start from square one. </p>
<p>Do you have a free tool that you use? Please share in the comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/wZWFpnnTzg3JiewZN6l2o8nDSyk/0/da"><img src="http://feedads.g.doubleclick.net/~a/wZWFpnnTzg3JiewZN6l2o8nDSyk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wZWFpnnTzg3JiewZN6l2o8nDSyk/1/da"><img src="http://feedads.g.doubleclick.net/~a/wZWFpnnTzg3JiewZN6l2o8nDSyk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/UT7WCSlz1Og" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/</feedburner:origLink></item>
		<item>
		<title>SharePoint 2010 Development Resources</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/vfQpe6yP-JI/</link>
		<comments>http://repeatgeek.com/technical/sharepoint-2010-development-resources/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 16:50:13 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[development resources]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Professional]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=487</guid>
		<description><![CDATA[Implementing SharePoint 2010 is an idea that is being thrown around at my place of employment right now. As a developer, there seems to be some significant differences between WSS 3.0/MOSS 2007 and SharePoint 2010 (SharePoint 2010 Sandbox Environment) and I wanted to make sure that my skills were updated for the latest release of [...]]]></description>
			<content:encoded><![CDATA[<p>Implementing SharePoint 2010 is an idea that is being thrown around at my place of employment right now. As a developer, there seems to be some significant differences between WSS 3.0/MOSS 2007 and SharePoint 2010 (<a href="http://klopmp.com/2010/sharepoint/standing-up-a-sharepoint-2010-sandbox-environment">SharePoint 2010 Sandbox Environment</a>) and I wanted to make sure that my skills were updated for the latest release of SharePoint.</p>
<p>For everyone who is already developing or those who will start, I put together this list of resources that are available.</p>
<h2>Videos</h2>
<p>There are a few hands-on videos if you are a visual learner.</p>
<ul>
<li> <a href="http://msdn.microsoft.com/en-us/library/ff770300.aspx">Microsoft Patterns and Practices &#8211; Developing Applications for SharePoint 2010</a></li>
<li> <a href="http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx">MSDN &#8211; Get Started Developing on SharePoint 2010</a></li>
</ul>
<h2>Books</h2>
<p>If you prefer to learn from a book, there are many more resources available for SharePoint 2010 than there were previously for WSS 3.0 or MOSS 2007.</p>
<h3>Pro SharePoint 2010 Solution Development: Combining .NET, SharePoint, and Office</h3>
<h4>Ed Hild and Chad Wach</h4>
<p><a href="http://www.amazon.com/gp/product/1430227818?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430227818"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/ProSharePoint2010.jpg" border="0" alt="" /></a></p>
<hr/>
<h3>SharePoint 2010 as a Development Platform</h3>
<h4>Joerg Krause, Martin Daring, Christian Langhirt, Bernd Pehlke, Alexander Sterff</h4>
<p><a href="http://www.amazon.com/gp/product/1430227060?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430227060"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/SharePointDevelopmentPlatform.jpg" border="0" alt="" /></a></p>
<hr/>
<h3>SharePoint 2010 Development with Visual Studio 2010</h3>
<h4>Eric Carter, Boris Scholl, Peter Jausovec</h4>
<p><a href="http://www.amazon.com/gp/product/0321718313?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0321718313"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/SharePointVisualStudio.jpg" border="0" alt="" /></a></p>
<hr/>
<h3>Beginning SharePoint 2010 Development</h3>
<h4>Steve Fox</h4>
<p><a href="http://www.amazon.com/gp/product/0470584637?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0470584637"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/BeginningSharePoint.jpg" border="0" alt="" /></a></p>
<hr/>
<h3>Professional SharePoint 2010 Development</h3>
<h4>Tom Rizzo, Reza Alirezaei, Jeff Fried, Paul Swider, Scot Hillier, Kenneth Schaefer</h4>
<p><a href="http://www.amazon.com/gp/product/0470529423?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0470529423"><img src="http://repeatgeek.com/wp-content/uploads/2010/07/ProfessionalSharePoint.jpg" border="0" alt="" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/E5F7JaPQDRBiiKLrdVrEO7A9Shk/0/da"><img src="http://feedads.g.doubleclick.net/~a/E5F7JaPQDRBiiKLrdVrEO7A9Shk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/E5F7JaPQDRBiiKLrdVrEO7A9Shk/1/da"><img src="http://feedads.g.doubleclick.net/~a/E5F7JaPQDRBiiKLrdVrEO7A9Shk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/vfQpe6yP-JI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/technical/sharepoint-2010-development-resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/technical/sharepoint-2010-development-resources/</feedburner:origLink></item>
		<item>
		<title>My Experience at Orlando Code Camp 2010</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/Jy-81pkGZR8/</link>
		<comments>http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2010/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 18:08:58 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Adam Jorgensen]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[David Silverlight]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Jeremy Groves]]></category>
		<category><![CDATA[Kevin Rohling]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Orlando]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[SASS]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Sql]]></category>
		<category><![CDATA[Warehouse]]></category>
		<category><![CDATA[Wes Dumey]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=479</guid>
		<description><![CDATA[This post is long overdue but I thought I would share my experiences with attending my first code camp: Orlando Code Camp 2010. Code Camp is something that always interested me, I thought it would be cool to experience some of the bleeding-edge technology and also receive some &#8220;free&#8221; training in the process. If you [...]]]></description>
			<content:encoded><![CDATA[<p>This post is long overdue but I thought I would share my experiences with attending my first code camp: <a href="http://orlandocodecamp.com/">Orlando Code Camp 2010</a>.</p>
<p>Code Camp is something that always interested me, I thought it would be cool to experience some of the bleeding-edge technology and also receive some &#8220;free&#8221; training in the process. </p>
<p>If you are not aware of what a Code Camp is, it is an event where developers volunteer their time to present on several different topics &#8211; typically related to Microsoft products and technology and is sponsored by local technology companies.</p>
<p>Here is a breakdown of each session I attended:</p>
<h2>Session 1</h2>
<h3>What to Know About WF 4.0</h3>
<h4>Presented by: Bayer White</h4>
<p>I have just introduced myself to Windows Workflow Foundation (WF) since I have been teaching myself <a href="http://repeatgeek.com/career/how-to-get-started-with-windows-sharepoint-application-development/">Windows SharePoint Services</a> &#8211; so I thought I would get some exposure to what&#8217;s new in WF 4.0. </p>
<p><strong>Take Away:</strong> WF 4.0 is significantly different from it&#8217;s predecessors, but there are some features that make it more productive: activities. A lot of the information was a bit over my head for being a novice at WF; however, once I get a good understanding of WF 3.0, I will migrate my skills to WF 4.0.</p>
<p><strong>Links:</strong><br />
<a href="http://www.humanworkflow.net">www.humanworkflow.net</a><br />
<a href="http://www.flowfocus.com">www.flowfocus.com</a></p>
<hr/>
<h2>Session 2</h2>
<h3>Building a Data Warehouse Using Sql Server 2008</h3>
<h4>Presented by Wes Dumey</h4>
<p>The topic of Building a Data Warehouse is not new to me. I have taken graduate-level classes on the subject and actually built a Data Warehouse for a hospital as a team project &#8211; back in the days of Sql Server 2000. However, since taking this class, I have not had much exposure to the topic and the tools from Microsoft have changed significantly.</p>
<p>In the week previous to Orlando Code Camp I had attended several webinars by <a href="http://pragmaticworks.com/">Pragmatic Works</a> on Business Intelligence, so a lot of the information was review.</p>
<p><strong>Take Away:</strong> Wes shared some &#8216;best practices&#8217; that his firm adopted, such as storing the extracts after each step of the ETL process to verify the data.</p>
<p><strong>Links:</strong><br />
<a href="http://www.durableimpact.com">Durable Impact Consulting</a><br />
<a href="http://www.dayofdata.com">www.dayofdata.com</a></p>
<hr/>
<h2>Session 3</h2>
<h3>Developing OLAP Solutions with SASS 2008</h3>
<h4>Presented by: Adam Jorgensen</h4>
<p>One of the webinar sessions I missed with Pragmatic Works, was this very same presentation with Adam. So it was a treat to see Adam present this in person and demo the BI tools in Sql Server 2008.</p>
<p><strong>Take Away:</strong> Since I have not used Sql Server 2008 BI Tools or even Sql Server 2005 BI Tools for that matter, I think there was an assumption that the audience had prior exposure. Adam frequently referred to the differences between 2005 and 2008 and also shared his pet peeve of naming dimensions with underscores. </p>
<p><strong>Links:</strong><br />
<a href="http://pragmaticworks.com/">Pragmatic Works</a></p>
<hr/>
<h2>Session 4</h2>
<h3>Getting Started with WPF</h3>
<h4>Presented by: Shervin Shakibi</h4>
<p>I haven&#8217;t had much exposure to WPF, so I thought I would check out this session for beginners. The presenter Shervin Shakibi is very comical and made the session pretty enjoyable. </p>
<p><strong>Take Away:</strong><br />
From what I understand about WPF, is that it add additional functionality to creating Windows Forms and is primarily driven by XAML. It is possible to create web apps using WPF, but Shervin suggested to use Silverlight for that purpose.</p>
<p><strong>Links:</strong><br />
<a href="http://www.computerways.com">www.computerways.com</a></p>
<hr/>
<h2>Session 5</h2>
<h3>Silverlight Viewer for Reporting Services</h3>
<h4>Presented by: Jeremy Groves</h4>
<p>This had to be the most unproductive session that I attended. It seemed as if the presenter was there against his will  &#8211; the session only lasted about 10 minutes. </p>
<p><strong>Take Away:</strong><br />
Silverlight Viewer for Reporting Services is actually a product by Perpetuumsoft and this session was nothing more than a marketing presentation to buy their product.</p>
<p><strong>Links:</strong><br />
<a href="http://www.perpetuumsoft.com">www.perpetuumsoft.com</a></p>
<hr/>
<h2>Session 5.5</h2>
<h3>Stream It! Live + HD + Silverlight</h3>
<h4>Presented by Kevin Rohling</h4>
<p>Since I had some time to kill, I went to this session since it was the location for Session 6. </p>
<p><strong>Take Away:</strong><br />
Kevin Rohling made note of a video (that I had never heard of before) that is available in the public domain: Big Buck Bunny.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/allOsEHARo8&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/allOsEHARo8&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p><strong>Links:</strong><br />
<a href="http://www.perpetuumsoft.com">www.perpetuumsoft.com</a></p>
<hr/>
<h2>Session 6</h2>
<h3>Dissecting a Real-World Silverlight 4 Application</h3>
<h4>David Silverlight</h4>
<p>I really wanted to see Silverlight development in action and I was provided this opportunity in David Silverlight&#8217;s session. </p>
<p>Note: I have to admit I once thought that Silverlight was named after him.</p>
<p><strong>Take Away:</strong><br />
David presented a User Group Website Starter Kit software package that was developed using Silverlight, and is available to download via CodePlex.</p>
<p><strong>Links:</strong><br />
<a href="http://silverlightugstarter.codeplex.com/">Silverlight User Group Website Starter Kit</a><br />
<a href="http://www.perpetuumsoft.com">www.perpetuumsoft.com</a></p>
<hr/>
<p>Overall, I was exposed to a lot of new technology at Orlando Code Camp. I look forward to attending Tampa Code Camp later this year.</p>
<p>More Blogs about Orlando Code Camp:</p>
<ul>
<li><a href="http://estebanfg.blogspot.com/2010/04/orlando-code-camp-2010.html">Orlando Code Camp 2010</a></li>
<li><a href="http://www.russtoolshed.net/videos.aspx">Speaker Idol Florida Finals 2010</a></li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/CuAg5n6ByNlCMkSKZ5jeLmWiJag/0/da"><img src="http://feedads.g.doubleclick.net/~a/CuAg5n6ByNlCMkSKZ5jeLmWiJag/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CuAg5n6ByNlCMkSKZ5jeLmWiJag/1/da"><img src="http://feedads.g.doubleclick.net/~a/CuAg5n6ByNlCMkSKZ5jeLmWiJag/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/Jy-81pkGZR8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/technical/my-experience-at-orlando-code-camp-2010/</feedburner:origLink></item>
		<item>
		<title>How to Network in the Information Age</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/v6Wmv5wt1Zo/</link>
		<comments>http://repeatgeek.com/social/how-to-network-in-the-information-age/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 05:00:34 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[business card]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[friendship]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[information age networking]]></category>
		<category><![CDATA[information tools]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[professional reference]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=474</guid>
		<description><![CDATA[Have you networked with individuals at a conference or some other event (e.g. Code Camp, User Group, etc.)? If you have, were you able to follow up the people that you met? The means of following up with a network contact have changed. You can start networking in the information age by using many of [...]]]></description>
			<content:encoded><![CDATA[<p>Have you networked with individuals at a conference or some other event (e.g. Code Camp, User Group, etc.)? </p>
<p>If you have, were you able to follow up the people that you met? </p>
<p>The means of following up with a network contact have changed. You can start networking in the information age by using many of the tools that you probably already use today.</p>
<h2>Constants</h2>
<p>The process and purpose of networking has remained pretty much the same over time. </p>
<p>1. We attend venues for conferences, training or seminars.<br />
2. We use our social skills to speak with and interact with others at these venues.<br />
3. We hope we can use our new networking contact for a new job reference, professional reference or friendship. </p>
<p>What has changed in networking &#8211; is the way that we follow up with our contacts.</p>
<h2>The Old Way (Dark Age Networking)</h2>
<p>Before the information age how did people follow up with their networking contacts? Most likely, it was done by snail-mail, e-mail or telephone. </p>
<p>Let me put into perspective how effective these means of follow up are. Say you receive one business card for every business card that you hand out. Unless, you have either a unique business card or an unforgettable personality &#8211; people are going to have a difficult time remembering you based on your name. </p>
<p>I suppose you could but your picture on your business card, but that is something that is probably best left to real estate agents.</p>
<h2>The New Way (Information Age Networking)</h2>
<p>In the information age, you will still give out business cards, but the contents of those business cards will be &#8220;links&#8221; to your contact information. The information on your business card is a way for your contacts to remember who you are without having to make an impression based on personality. </p>
<p><strong>Contact Information Tools</strong></p>
<p>There are many tools that you can use for your contact information. I recommend at least these three:</p>
<p>1. <a href="http://www.linkedin.com">LinkedIn</a></p>
<p>Posting a link to your LinkedIn profile is probably the best tool that you can provide to your networking contacts. Especially if you are looking for a new job or to validate your background. LinkedIn provides the following:</p>
<ul>
<li>Allows contacts to see your professional job history and projects</li>
<li>Allows contacts to see any recommendations you&#8217;ve given or received</li>
<li>Allows contacts to see a profile picture to put a face with a name</li>
</ul>
<p>2. <a href="http://www.facebook.com">Facebook</a></p>
<p>Facebook can be used for the right reasons and the wrong reasons. If you currently use Facebook for the wrong reasons (e.g. posting drunk pictures, complaining about work, etc.) &#8211; I suggest that you don&#8217;t use Facebook as a networking tool. </p>
<p>However, Facebook can be used for the right reasons &#8211; to provide an insight into your personal life. </p>
<p>By sharing the following on Facebook, a networking contact may find out more about you on on a personal level:</p>
<ul>
<li>Interests</li>
<li>Hobbies</li>
<li>Events in your life</li>
</ul>
<p>I would also suggest using Facebook&#8217;s privacy settings, in case someone else posts a picture or writes something inappropriate to you.</p>
<p>3. <a href="http://www.twitter.com">Twitter</a></p>
<p>Most new users of Twitter don&#8217;t see the value of it. What Twitter can provide is a way to share daily information with your followers both professionally and personally.</p>
<p>Nobody wants to follow someone who posts mundane posts that add little value (e.g. &#8220;Just woke up&#8221;, &#8220;Eating breakfast&#8221;, &#8220;Showering&#8221;). Instead, use Twitter as follows:</p>
<ul>
<li>Posting insights on life</li>
<li>Posting links to interesting articles or web sites</li>
<li>Conversing with others on a particular subject</li>
</ul>
<p>All of these tools allow for continuous networking beyond the initial connection. </p>
<h2>How to Get Started?</h2>
<p>1. Create a profile on each one of these networks.</p>
<p>2. Create two sets of business cards</p>
<ul>
<li><strong>Sales Business Card</strong> &#8211; These will be the typical business cards with name, email, and phone number</li>
<li><strong>Networking Business Card</strong> &#8211; This will only contain your name and links to your profiles (LinkedIn, Facebook, Twitter)</li>
</ul>
<p>3. Start attending events and networking!</p>
<p>* Picture courtesy of <a href="http://www.flickr.com/photos/joepemberton/">Joe Pemberton</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/AoOfhf2KIIf7z_QLtYUVo1krNQ4/0/da"><img src="http://feedads.g.doubleclick.net/~a/AoOfhf2KIIf7z_QLtYUVo1krNQ4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AoOfhf2KIIf7z_QLtYUVo1krNQ4/1/da"><img src="http://feedads.g.doubleclick.net/~a/AoOfhf2KIIf7z_QLtYUVo1krNQ4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/v6Wmv5wt1Zo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/social/how-to-network-in-the-information-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/social/how-to-network-in-the-information-age/</feedburner:origLink></item>
		<item>
		<title>The Presentation Secrets of Steve Jobs: Video Reference</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/b62BGbFGD1Q/</link>
		<comments>http://repeatgeek.com/social/the-presentation-secrets-of-steve-jobs-video-reference/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:32:46 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[presentation skills]]></category>
		<category><![CDATA[public speaking skills]]></category>
		<category><![CDATA[secrets]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=468</guid>
		<description><![CDATA[I just finished reading The Presentation Secrets of Steve Jobs: How to Be Insanely Great in Front of Any Audience by Carmine Gallo &#8211; this book is ideal for anyone who regularly delivers presentations, speaks for a living or wants to become a better speaker. The Book The book was filled with tips to help [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished reading <strong>The Presentation Secrets of Steve Jobs: How to Be Insanely Great in Front of Any Audience</strong> by <a href="http://carminegallo.com/">Carmine Gallo</a> &#8211; this book is ideal for anyone who regularly delivers presentations, speaks for a living or wants to become a better speaker.</p>
<h2>The Book</h2>
<p>The book was filled with tips to help you develop and enhance your public speaking skills. Carmine Gallo effectively points out the techniques used by Steve Jobs that make his presentations both entertaining and effective.</p>
<h3>The Presentation Secrets of Steve Jobs</h3>
<h3><em>How To Be Insanely Great in Front of Any Audience</em></h3>
<h4>Carmine Gallo</h4>
<p><a href="http://www.amazon.com/gp/product/0071636080?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0071636080"><img src="http://repeatgeek.com/wp-content/uploads/2010/02/SteveJobsBook.jpg" border="0" alt="" /></a></p>
<h2>The Videos</h2>
<p>Gallo references several notable speeches and presentations by Steve Jobs to illustrate his points. While Gallo does provide links to the videos in the book&#8217;s reference &#8211; I thought it would be helpful to provide direct links to the videos.</p>
<ul>
<li><a href="http://repeatgeek.com/social/steve-jobs-macworld-keynote-speeches/">Steve Jobs&#8217; Macworld Keynote Speeches</a></li>
<li><a href="http://repeatgeek.com/social/steve-jobs-wwdc-keynote-speeches/">Steve Jobs&#8217; WWDC Keynote Speeches</a></li>
<li><a href="http://repeatgeek.com/social/miscellaneous-steve-jobs-presentations/">Miscellaneous Steve Jobs Presentations</a></li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/z7NyXV1LssE_jea-7eYAPN70qko/0/da"><img src="http://feedads.g.doubleclick.net/~a/z7NyXV1LssE_jea-7eYAPN70qko/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/z7NyXV1LssE_jea-7eYAPN70qko/1/da"><img src="http://feedads.g.doubleclick.net/~a/z7NyXV1LssE_jea-7eYAPN70qko/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/b62BGbFGD1Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/social/the-presentation-secrets-of-steve-jobs-video-reference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/social/the-presentation-secrets-of-steve-jobs-video-reference/</feedburner:origLink></item>
		<item>
		<title>Miscellaneous Steve Jobs’ Presentations</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/9COkMvL1Dic/</link>
		<comments>http://repeatgeek.com/social/miscellaneous-steve-jobs-presentations/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 13:05:49 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[1984]]></category>
		<category><![CDATA[CNBC]]></category>
		<category><![CDATA[Commencement]]></category>
		<category><![CDATA[Commercial]]></category>
		<category><![CDATA[macworld]]></category>
		<category><![CDATA[Special Event]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[stanford university]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=462</guid>
		<description><![CDATA[Computers Are Like Bicycles for Our Minds]]></description>
			<content:encoded><![CDATA[<h3>Computers Are Like Bicycles for Our Minds</h3>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ob_GX50Za6c&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/ob_GX50Za6c&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Ukf5tWN540Lkv4wpjSgIN7wKgI4/0/da"><img src="http://feedads.g.doubleclick.net/~a/Ukf5tWN540Lkv4wpjSgIN7wKgI4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Ukf5tWN540Lkv4wpjSgIN7wKgI4/1/da"><img src="http://feedads.g.doubleclick.net/~a/Ukf5tWN540Lkv4wpjSgIN7wKgI4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/9COkMvL1Dic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/social/miscellaneous-steve-jobs-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://repeatgeek.com/social/miscellaneous-steve-jobs-presentations/</feedburner:origLink></item>
		<item>
		<title>How to Get Started with Windows SharePoint Application Development</title>
		<link>http://feedproxy.google.com/~r/RepeatGeek/~3/it3nUkLVZ4Y/</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 [...]]]></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><a href="http://feedads.g.doubleclick.net/~a/llS67Aq_5hy0EetgvkNynoq3CIw/0/da"><img src="http://feedads.g.doubleclick.net/~a/llS67Aq_5hy0EetgvkNynoq3CIw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/llS67Aq_5hy0EetgvkNynoq3CIw/1/da"><img src="http://feedads.g.doubleclick.net/~a/llS67Aq_5hy0EetgvkNynoq3CIw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RepeatGeek/~4/it3nUkLVZ4Y" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://repeatgeek.com/career/how-to-get-started-with-windows-sharepoint-application-development/</feedburner:origLink></item>
	</channel>
</rss>
