<?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>Global Nerdy &#187; puzzles</title>
	<atom:link href="http://www.globalnerdy.com/tag/puzzles/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.globalnerdy.com</link>
	<description>Tech Evangelist Joey deVilla on software development, tech news and other nerdy stuff</description>
	<lastBuildDate>Thu, 19 Nov 2009 02:16:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Toughest Developer Puzzle Ever</title>
		<link>http://www.globalnerdy.com/2009/07/02/the-toughest-developer-puzzle-ever/</link>
		<comments>http://www.globalnerdy.com/2009/07/02/the-toughest-developer-puzzle-ever/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 13:25:50 +0000</pubDate>
		<dc:creator>Joey deVilla</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Jeff Blankenburg]]></category>
		<category><![CDATA[puzzles]]></category>

		<guid isPermaLink="false">http://www.globalnerdy.com/2009/07/02/the-toughest-developer-puzzle-ever/</guid>
		<description><![CDATA[This article also appears in Canadian Developer Connection.
 
The Toughest Developer Puzzle Ever is a new puzzle site aimed at programmers in the same vein as web-based puzzle challenges such as notpron, Rankk and Python Challenge. Created by Microsoft Developer Evangelist Jeff Blankenburg, “TDPE” consists of a sequence of 30 web pages, each one with [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="alert"><a href="http://blogs.msdn.com/cdndevs/archive/2009/07/02/the-toughest-developer-puzzle-ever.aspx">This article also appears in <em>Canadian Developer Connection</em>.</a></p>
<p><a href="http://www.toughestdeveloperpuzzleever.com/"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Montage of images from the &quot;Toughest Developer Puzzle Ever&quot; site" border="0" alt="Montage of images from the &quot;Toughest Developer Puzzle Ever&quot; site" src="http://www.globalnerdy.com/wordpress/wp-content/uploads/2009/07/tdpe.jpg" width="600" height="321" /></a> </p>
<p><strong><a href="http://www.toughestdeveloperpuzzleever.com/">The Toughest Developer Puzzle Ever</a> is a new puzzle site aimed at programmers</strong> in the same vein as web-based puzzle challenges such as <a href="http://deathball.net/notpron/"><em>notpron</em></a>, <a href="http://www.rankk.org/"><em>Rankk</em></a> and <a href="http://www.pythonchallenge.com/"><em>Python Challenge</em></a>. Created by Microsoft Developer Evangelist <a href="http://jeffblankenburg.com/">Jeff Blankenburg</a>, “TDPE” consists of a sequence of 30 web pages, each one with a puzzle that when solved will take you to the next one. Each puzzle provides the necessary hints to solve it, although some of the hints are tucked away in not-so-obvious places. Some puzzles can be solved with a little programming skill, some require a little knowledge of computer programming theory (although a little Binging will do) and some can be solved with a little logic and lateral thinking.</p>
<p><strong>Jeff has offered a prize to the first fifteen people who complete the The Toughest Developer Puzzle Ever</strong> (only those who complete it will know how to prove it). Judging from <a href="http://twitter.com/tdpe">the Twitter account for “TDPE”</a> and <a href="http://twitter.com/home#search?q=tdpe">tweets with the #TDPE hashtag</a>, not all the prizes have been claimed yet. </p>
<p>I managed to power through the first 29 puzzles while watching <em>Ghostbusters</em> on TV yesterday, but the very last one has me stumped. As others who’ve been flummoxed by this problem have said on Twitter, I’m sure I’m overthinking it.</p>
<p><a href="http://www.toughestdeveloperpuzzleever.com/">Can you beat the Toughest Developer Puzzle Ever?</a> I’m sure you can, but you might want to do it after work. Let me know how you’re doing in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.globalnerdy.com/2009/07/02/the-toughest-developer-puzzle-ever/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why Does This C# Code Compile?</title>
		<link>http://www.globalnerdy.com/2008/11/28/why-does-this-c-code-compile/</link>
		<comments>http://www.globalnerdy.com/2008/11/28/why-does-this-c-code-compile/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 23:27:41 +0000</pubDate>
		<dc:creator>Joey deVilla</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[puzzles]]></category>

		<guid isPermaLink="false">http://www.globalnerdy.com/2008/11/28/why-does-this-c-code-compile/</guid>
		<description><![CDATA[Here&#8217;s a cute little puzzler I got from the blog hackification &#8212; why the does code below compile? 
using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
       [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here&#8217;s a cute little puzzler I got from the blog <em><a href="http://www.hackification.com/">hackification</a></em> &#8212; why the does code below compile? <code></code></p>
<pre>using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            http://www.globalnerdy.com
            System.Console.WriteLine(&quot;Hello from Global Nerdy!&quot;);
            System.Console.WriteLine(&quot;(Press ENTER to continue)&quot;);
            System.Console.ReadLine();
        }
    }
}</pre>
</p>
<p>Here’s what the output of the program looks like:</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Console output: &quot;Hello from Global Nerdy! (Press ENTER to continue)&quot;" border="0" alt="Console output: &quot;Hello from Global Nerdy! (Press ENTER to continue)&quot;" src="http://www.globalnerdy.com/wordpress/wp-content/uploads/2008/11/hello-from-global-nerdy.gif" width="436" height="177" /> </p>
<p>Why does the program compile even though the first line of the <code>Main()</code> method is a “bareword” URL? See if you can figure it out on your own rather than running it through the compiler – doing that gives away the answer.</p>
<p>I’ll post the answer in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.globalnerdy.com/2008/11/28/why-does-this-c-code-compile/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
