<?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"
	>

<channel>
	<title>E. Huntley - Programming &#38; Development Blog</title>
	<atom:link href="http://www.ernesthuntley.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ernesthuntley.com/blog</link>
	<description>Projects and musings from yours truly</description>
	<pubDate>Fri, 20 Aug 2010 20:13:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Smooth keyboard input with GLUT</title>
		<link>http://www.ernesthuntley.com/blog/?p=26</link>
		<comments>http://www.ernesthuntley.com/blog/?p=26#comments</comments>
		<pubDate>Fri, 20 Aug 2010 20:09:36 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=26</guid>
		<description><![CDATA[Recently, I&#8217;ve been learning OpenGL in order to ramp up for the still-in-progress Android game mentioned in previous posts.
In my Jedi training I came across a rather annoying behavior of GLUT - slow response to keyboard input. Specifically, response to keys that are held down. The repeat time is like that of a standard Windows [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been learning OpenGL in order to ramp up for the still-in-progress Android game mentioned in previous posts.</p>
<p>In my Jedi training I came across a rather annoying behavior of GLUT - slow response to keyboard input. Specifically, response to keys that are held down. The repeat time is like that of a standard Windows app, i.e. in Notepad, press a letter key an hold it, the letter is displayed, there is a short delay, then the letter begins to repeat.<br />
Now, this is all fine and dandy for most every application because immediate responsiveness is usually not necessary. Although, in games, this is awful and just plain unacceptable.</p>
<p>When doing some research, I tended to find three solutions to the problem:<br />
1. Switch to normal Win32 development and use that message loop to handle input<br />
<em style="font-style: italic;">Ick&#8230; Nein! I simply want to learn OpenGL, not Win32 programming.<br />
<span style="font-style: normal;">2. That&#8217;s just a limitation of GLUT, live with it until you are ready to switch to #1.<br />
</span>Again, I say: nein! 容認できない!<br />
<span style="font-style: normal;">3. Use DirectInput, it&#8217;s much better for handling Input on Windows<br />
</span>Ok, granted. BUT, again, I want to learn OpenGL here&#8230; for an Android app, I&#8217;ll come back to DirectX when the project necessitates it.</em></p>
<p>Fortunately, there&#8217;s actually a very simple solution that allows those learning OpenGL to continue to use GLUT for its inherent benefits all while receiving silky-smooth keyboard input with the <strong style="font-weight: bold;">added bonus</strong> of handling multiple-key input:</p>
<p><strong style="font-weight: bold;">Use a flag variable on key-down to signal a press, swap the flag on key-up, update based upon that flag</strong></p>
<p>Here&#8217;s an example:</p>
<p><span style="text-decoration: underline;">In accessible scope</span></p>
<pre>GLboolean upPressed = false;</pre>
<p><span style="text-decoration: underline;">In our glutSpecialFunc()</span></p>
<pre>void SpecialKeys(int key, int x, int y)
{
   // ...
   // Stuff
   // ...
   if (GLUT_KEY_UP == key)
      upPressed = true;

   // More stuff ...
}</pre>
<p><span style="text-decoration: underline;">In our glutSpecialUpFunc()</span></p>
<pre>void SpecialKeysUp(int key, int x, int y)
{
   // ...
   // Stuff
   // ...
   if (GLUT_KEY_UP == key)
      upPressed = false;

   // More stuff ...
}</pre>
<p><span style="text-decoration: underline;">In our glutIdleFunc()</span></p>
<pre>void Update()
{
   // ...
   // Stuff
   // ...
   if (upPressed)
      // Movement kung-fu!

   // More stuff ...
}</pre>
<p>That&#8217;s it! Not too bad, right? Not only is the input smoothed out, but now you can handle multiple, simultaneous key presses! This works rather nicely and I&#8217;m sure it can be applied to any key (not just &#8220;special&#8221; keys) or mouse button.</p>
<p>Take that Win32!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=26</wfw:commentRss>
		</item>
		<item>
		<title>One more time with Tetris, then I&#8217;ll drop it&#8230; I promise!</title>
		<link>http://www.ernesthuntley.com/blog/?p=24</link>
		<comments>http://www.ernesthuntley.com/blog/?p=24#comments</comments>
		<pubDate>Tue, 18 May 2010 18:20:00 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=24</guid>
		<description><![CDATA[I can&#8217;t seem to stop adding features to my Tetris clone that I initially said I was going to leave out! It&#8217;s difficult to look at something you produce knowing that it is &#8220;missing&#8221; features that you know you could just take a few minutes to add. *sigh* The burdens of game development  
I [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t seem to stop adding features to my Tetris clone that I initially said I was going to leave out! It&#8217;s difficult to look at something you produce knowing that it is &#8220;missing&#8221; features that you know you could just take a few minutes to add. *sigh* The burdens of game development <img src='http://www.ernesthuntley.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I went ahead and added functionality to display the &#8220;next piece&#8221;. It was just too important to the Tetris gameplay experience that I couldn&#8217;t leave it out and still feel ok about it.</p>
<p>Anyway, the game is still available <a title="Tetris Clone" href="http://www.ernesthuntley.com/resources/TetrisClone_FULL.zip">here</a>.</p>
<p>On a quick side-note:<br />
The Android game project is still coming along. We are working on taking the existing game design doc and fleshing out a tech doc. After that step is complete we will begin coding the beast!<br />
Exciting stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>Ok, I lied&#8230;</title>
		<link>http://www.ernesthuntley.com/blog/?p=23</link>
		<comments>http://www.ernesthuntley.com/blog/?p=23#comments</comments>
		<pubDate>Thu, 08 Apr 2010 20:22:30 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=23</guid>
		<description><![CDATA[I did add a basic scoring system to my XNA Tetris clone and a system  to make the game speed increase as time goes by. It was way too easy to  play and play and play and play and never fail at the default speed, so  the gamer in me couldn&#8217;t accept [...]]]></description>
			<content:encoded><![CDATA[<p>I did add a basic scoring system to my XNA Tetris clone and a system  to make the game speed increase as time goes by. It was way too easy to  play and play and play and play and never fail at the default speed, so  the gamer in me couldn&#8217;t accept that.</p>
<p>With those additions, the game is essentially complete. There are  other features I might add in the future - next piece preview, set piece  &#8220;ghost&#8221;, quick-drop, speed increase based on score, etc.</p>
<p>Until then, enjoy the version I have and let me know if you have any  questions about my code or find any bugs. (Hint: there are at least two  minor bugs I know of, but we&#8217;ll keep that secret between us, right?)</p>
<p>Click <a href="http://www.ernesthuntley.com/resources/TetrisClone_FULL.zip">here</a> to download the full source and built executable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=23</wfw:commentRss>
		</item>
		<item>
		<title>XNA Tetris clone &#038; Mobile development update</title>
		<link>http://www.ernesthuntley.com/blog/?p=21</link>
		<comments>http://www.ernesthuntley.com/blog/?p=21#comments</comments>
		<pubDate>Wed, 07 Apr 2010 17:52:50 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=21</guid>
		<description><![CDATA[First thing&#8217;s first:
I&#8217;m about finished with my XNA Tetris clone. The only feature left to implement is the game-over state.
I don&#8217;t plan on making this a fully featured Tetris knock-off with special effects, scoring and multiple game modes. The objective with this project was really a proof-of-concept for me; verification that I could develop the [...]]]></description>
			<content:encoded><![CDATA[<p>First thing&#8217;s first:<br />
I&#8217;m about finished with my XNA Tetris clone. The only feature left to implement is the game-over state.<br />
I don&#8217;t plan on making this a fully featured Tetris knock-off with special effects, scoring and multiple game modes. The objective with this project was really a proof-of-concept for me; verification that I could develop the core gameplay mechanics and logic&#8230; the rest is fluff <img src='http://www.ernesthuntley.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Once I get that last part completed, I&#8217;ll upload the game and source for anyone interested in developing a Tetris-style game. I tried to keep it pretty thoroughly commented and clear.<br />
Here&#8217;s a preview of the game screen (note my incredible artistic talents):<br />
<img src="http://lh3.ggpht.com/_fKkT-QDjokU/S7zD_jgkgmI/AAAAAAAAFHs/qYtGa8IKS-E/s400/tetris-screenshot.PNG" alt="XNA Tetris" width="400" height="314" /></p>
<p>In other news:<br />
The iPhone game that I was slated to work on is going to be completed without me. Well, technically, it&#8217;s going to be completed without my friend (mentioned in the previous post) or myself. It turns out the developer who is currently working on it is only about 1 month from code-complete and my friend and I don&#8217;t feel that it&#8217;d be in our best interest to try to cram and learn Objective-C for this project if it&#8217;d be finished a week after we are ready to go!<br />
Instead, we are going to focus on Android as a development platform. The group that we are working with on this game plans on shifting to Android after this initial iPhone release anyway, so we are going to come in once they are ready for porting and future Android development.<br />
There are added benefits to developing for Android as opposed to iPhone that also influenced our decision. The primary ones are that a Mac is not required for development and there are Android phones across multiple providers. Now, I know that these hurdles can be overcome with some h@x0ring and unlocked phones, respectively - but we already run Windows/Linux and we want to target the mass market, not just tech-savvy mobile device users.<br />
Oh, and I already have an Android phone&#8230; so it&#8217;ll be easier to test our stuff on an actual device <img src='http://www.ernesthuntley.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, that&#8217;s all for today!<br />
Next post will have the source for my XNA Tetris clone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=21</wfw:commentRss>
		</item>
		<item>
		<title>Tetris-clone update and a bit more</title>
		<link>http://www.ernesthuntley.com/blog/?p=20</link>
		<comments>http://www.ernesthuntley.com/blog/?p=20#comments</comments>
		<pubDate>Tue, 16 Mar 2010 20:22:22 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=20</guid>
		<description><![CDATA[First of all, my Tetris-clone is still under development.
It&#8217;s coming along&#8230; slooooowly but surely. Free time to spend working on an personal game development project is hard to come by these days.
&#8230;and that is partly because I&#8217;ve become involved with a small, independent group of developers working on their first iPhone game. A college friend/developer [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, my Tetris-clone is still under development.<br />
It&#8217;s coming along&#8230; slooooowly but surely. Free time to spend working on an personal game development project is hard to come by these days.</p>
<p>&#8230;and that is partly because I&#8217;ve become involved with a small, independent group of developers working on their first iPhone game. A college friend/developer and I were looking to hop into Android development, then he talked to another friend of his who was part of this iPhone game development effort. It turns out that they were looking for some more programming support, so he and I decided this would be a good place to start our mobile application development journey.<br />
Yes, this is not an Android application, but plans to move to Android development - as well as iPhone development - are in place for the future.</p>
<p>After gathering some more information from this new group, I may or may not provide some details about the game. We haven&#8217;t discussed publicity yet, so I don&#8217;t want to reveal anything without consent.</p>
<p>Either way, it looks like I have a busy and exciting spring/summer ahead!</p>
<p>Until next time&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>Projects</title>
		<link>http://www.ernesthuntley.com/blog/?p=19</link>
		<comments>http://www.ernesthuntley.com/blog/?p=19#comments</comments>
		<pubDate>Fri, 12 Feb 2010 22:47:41 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=19</guid>
		<description><![CDATA[I&#8217;m starting a new &#8220;Projects&#8221; category for my blog. It&#8217;ll contain posts related to personal projects that I am working on.
First project to mention:
Tetris!
That&#8217;s right, I&#8217;ve decided to tackle a personal programming &#8220;unicorn&#8221; of mine, and attempt to put together a clone of the classic block-based puzzle game. When first getting into programming games, there [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m starting a new &#8220;Projects&#8221; category for my blog. It&#8217;ll contain posts related to personal projects that I am working on.</p>
<p>First project to mention:<br />
<strong>Tetris</strong>!</p>
<p>That&#8217;s right, I&#8217;ve decided to tackle a personal programming &#8220;unicorn&#8221; of mine, and attempt to put together a clone of the classic block-based puzzle game. When first getting into programming games, there were a couple times that I began throwing a Tetris clone together, but I could never quite finish it. I would get caught up with something like matrix rotation or handling the rows in the play grid.<br />
I think I&#8217;ve finally gotten to a point where I can handle the problems I previously stumbled upon.<br />
I&#8217;ll be using XNA for this project as it&#8217;s a solid framework with an easy to understand graphics system and many helpful libraries&#8230; plus, I haven&#8217;t gotten enough of a grip on DirectX yet! (That will be for version 2&#8230; ^_^ )</p>
<p>I&#8217;ll post the project on the &#8220;Projects/XNA&#8221; section of my site when it&#8217;s complete, and I&#8217;ll post status updates here when I can.</p>
<p>Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=19</wfw:commentRss>
		</item>
		<item>
		<title>Oh, what&#8217;s in a name?</title>
		<link>http://www.ernesthuntley.com/blog/?p=18</link>
		<comments>http://www.ernesthuntley.com/blog/?p=18#comments</comments>
		<pubDate>Wed, 03 Feb 2010 17:16:09 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Programming/Development]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=18</guid>
		<description><![CDATA[As time goes by, I realize how many holes there were in my college education. Indeed, part of me is very proud of my alma mater and satisfied with the outcome of my undergraduate efforts - that is, I was able to use that degree and education to land a solid job at a great [...]]]></description>
			<content:encoded><![CDATA[<p>As time goes by, I realize how many holes there were in my college education. Indeed, part of me is very proud of my alma mater and satisfied with the outcome of my undergraduate efforts - that is, I was able to use that degree and education to land a solid job at a great company. Unfortunately, another part of me is absolutely shocked that the school can label the degree, &#8220;Software Engineering&#8221;.</p>
<p>This brings to light the gross disservice that various colleges and universities are doing my using degree names interchangeably. Commonly, &#8220;Information Technology&#8221;, &#8220;Computer Programming&#8221;, &#8220;Computer Science&#8221;, &#8220;Software Engineering&#8221;, are all used to describe collegiate degrees involving the development of computer software. Sometimes a degree from one school called &#8220;Software Engineering&#8221; would be equivalent to another school&#8217;s &#8220;Computer Science&#8221; degree. Sometimes they are very different. Unfortunately, I don&#8217;t believe that the schools even know what to name the degrees.</p>
<p>For me, there is a big difference between computer programming and computer science. The former is more of a stereotypical &#8220;code-monkey&#8221; type of thing. A higher-level knowledge of programming, familiar with only the most common data structures, unconcerned with what is going on in memory and such. The latter is a lower-level study of programming and computer theory. Understanding how a language is built, how a compiler and linker work (and knowing that they exist in the first place!), how memory is managed, how and why certain data structures are implemented, etc.<br />
There are certainly benefits to producing &#8220;programmers&#8221; and &#8220;computer scientists&#8221;, and I am not going to discredit anyone who would prefer learning one or the other discipline. But again, I think there is a difference and a very important one.</p>
<p>As I mentioned earlier, it can be a hindrance to students and employers alike when schools use curriculum names interchangeably. It is very hard to know what you are getting without detailed descriptions of the courses involved. Even then, it is hard as a new student with little or no knowledge of terms or theory. And employers are left wasting time and money sifting through various candidates for a position to find out who has the skills needed for their positions, despite having a vaguely named degree.</p>
<p>I feel slightly gypped after completing my degree. In hindsight, I believe there should have been more classes on lower level studies (memory management, data structures and algorithms in depth, compiler/linker design, etc). Again, I definitely learned a lot and that knowledge was invaluable as far as getting my job, BUT it could have been better.</p>
<p>Fortunately, all it not lost to those of us yearning for more understanding and seeking true mastery of particular topics. Our industry is one that is overflowing with great learning resources. From books, to web sites, to experienced coworkers - there is never a shortage of resources to learn from.<br />
This is something that I embrace wholeheartedly. I am constantly taking in new and valuable information. Learning and growing from books and friends. I have determined not to limit myself to what was deemed sufficient by one school, but to constantly challenge myself with new material and projects.</p>
<p>For anyone else in my situation, here is a recommendation: set up for yourself a Personal Development Timeline and <strong>stick to it</strong>. Buy a few books, find some coursework, whatever will work for you, and write down what you will accomplish and by what time. I&#8217;ve done this myself and have found it incredibly useful. I have the next several months of my life planned out as far as personal development and education goes. It is encouraging to know that, just because I might have missed out on something, doesn&#8217;t mean that I have to accept it and move on.</p>
<p>As Mark Twain once said, &#8220;I have never let my schooling interfere with my education.&#8221;</p>
<p>I have the power and hunger to grow - and I will - and so does anyone else who wants to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=18</wfw:commentRss>
		</item>
		<item>
		<title>Continuing Engineering in a Nutshell</title>
		<link>http://www.ernesthuntley.com/blog/?p=16</link>
		<comments>http://www.ernesthuntley.com/blog/?p=16#comments</comments>
		<pubDate>Mon, 25 Jan 2010 00:35:53 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Programming/Development]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=16</guid>
		<description><![CDATA[If this doesn&#8217;t describe bug finding/fixing to a T, I don&#8217;t know what else can.
Enjoy:
As we know,
There are known knowns.
There are things we know we know.
We also know
There are known unknowns.
That is to say
We know there are some things
We do not know.
But there are also unknown unknowns,
The ones we don&#8217;t know
We don&#8217;t know.
Former Secretary of [...]]]></description>
			<content:encoded><![CDATA[<p>If this doesn&#8217;t describe bug finding/fixing to a T, I don&#8217;t know what else can.<br />
Enjoy:</p>
<blockquote><p>As we know,<br />
There are known knowns.<br />
There are things we know we know.<br />
We also know<br />
There are known unknowns.<br />
That is to say<br />
We know there are some things<br />
We do not know.<br />
But there are also unknown unknowns,<br />
The ones we don&#8217;t know<br />
We don&#8217;t know.</p></blockquote>
<p><em>Former Secretary of Confusing Poetry - er&#8230;- Defense, Donald Rumsfeld<br />
—Feb. 12, 2002, Department of Defense news briefing</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=16</wfw:commentRss>
		</item>
		<item>
		<title>Ref: Using C# For a Commercial Game</title>
		<link>http://www.ernesthuntley.com/blog/?p=15</link>
		<comments>http://www.ernesthuntley.com/blog/?p=15#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:25:24 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=15</guid>
		<description><![CDATA[Alistair Doulin has written a great article supporting something I&#8217;ve been behind for a while now - the viability of C# as a commercial game language.
Check it out here.
C# is becoming more and more powerful with each new version. The tools and libraries available to it are fantastic and would save tons of development time. [...]]]></description>
			<content:encoded><![CDATA[<p>Alistair Doulin has written a great article supporting something I&#8217;ve been behind for a while now - the viability of C# as a commercial game language.</p>
<p>Check it out <a title="Using C# for a commercial game" href="http://www.doolwind.com/blog/using-csharp-for-a-commercial-game/" target="_blank">here</a>.</p>
<p>C# is becoming more and more powerful with each new version. The tools and libraries available to it are fantastic and would save tons of development time. And the fact that it includes - <em>brace yourself, I&#8217;m about to go there! </em>- garbage collection - <em>gasp!</em> - saves you from those pesky memory leaks that can plague C &amp; C++.<br />
I know that garbage collection is a sensitive subject with a lot of developers when performance is on the line, but like Alistair mentions, like any other language &#8220;bad code will run slow&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=15</wfw:commentRss>
		</item>
		<item>
		<title>Dirty Coding Tricks</title>
		<link>http://www.ernesthuntley.com/blog/?p=14</link>
		<comments>http://www.ernesthuntley.com/blog/?p=14#comments</comments>
		<pubDate>Fri, 09 Oct 2009 16:05:44 +0000</pubDate>
		<dc:creator>ehuntley</dc:creator>
		
		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Programming/Development]]></category>

		<guid isPermaLink="false">http://www.ernesthuntley.com/blog/?p=14</guid>
		<description><![CDATA[I wanted to make a quick post referring to a great little article I just read on the superlative game design &#38; development site, Gamasutra.
Really, if you haven&#8217;t visited Gamasutra before, you are missing out.
The article is called Dirty Coding Tricks. It has several first-hand accounts of the not-so-pretty things that desperate developers do when [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to make a quick post referring to a great little article I just read on the <strong>superlative </strong>game design &amp; development site, <a title="Gamasutra home page" href="http://www.gamasutra.com" target="_blank">Gamasutra</a>.<br />
<em>Really, if you haven&#8217;t visited Gamasutra before, you are missing out.</em></p>
<p>The article is called <a title="Dirty Coding Tricks" href="http://www.gamasutra.com/view/feature/4111/dirty_coding_tricks.php" target="_blank">Dirty Coding Tricks</a>. It has several first-hand accounts of the not-so-pretty things that desperate developers do when crunch-time comes knocking. We&#8217;ve all seen things like this before and, in a strange way, it makes you feel better that you&#8217;re not the only one who&#8217;s had to stand behind a product that has some nasty bits of code in it.</p>
<p>Be sure to check it out! It&#8217;s a great read&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ernesthuntley.com/blog/?feed=rss2&amp;p=14</wfw:commentRss>
		</item>
	</channel>
</rss>
