<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>agile developer</title>
	<atom:link href="http://agiledeveloper.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://agiledeveloper.wordpress.com</link>
	<description>over the waterfall into the agile pool</description>
	<lastBuildDate>Sun, 11 Oct 2009 11:58:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='agiledeveloper.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>agile developer</title>
		<link>http://agiledeveloper.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://agiledeveloper.wordpress.com/osd.xml" title="agile developer" />
	<atom:link rel='hub' href='http://agiledeveloper.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Arduino Communicating with PowerShell</title>
		<link>http://agiledeveloper.wordpress.com/2009/10/09/arduino-communicating-with-powershell/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/10/09/arduino-communicating-with-powershell/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 22:58:56 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2009/10/09/arduino-communicating-with-powershell/</guid>
		<description><![CDATA[I have recently started using an Arduino Deumilanove. It is an open source hardware&#160; platform with a microprocessor, a number of digital and analog inputs, some digital outputs and a USB connection. My five year-old, Aurora, and I put together the obligatory Blink sample yesterday and are due for some more ‘nventing tomorrow morning. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=176&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have recently started using an Arduino Deumilanove. It is an open source hardware&#160; platform with a microprocessor, a number of digital and analog inputs, some digital outputs and a USB connection. </p>
</p>
<p>My five year-old, Aurora, and I put together the obligatory Blink sample yesterday and are due for some more ‘<em>nventing </em>tomorrow morning. This evening, in preparation, I put together a more useful example. Not one but two LEDs!! </p>
<p>I wanted to have the PC send messages (in this example a byte) to the prototyping board and have a visible result. Eventually I chose to have a red and a green LED as the output and the microprocessor ‘listen’ for an ‘R’, ‘G’ or ‘O’ on the USB port. (O being to turn off all lights.) I can see my self using something for indicating status of the build or test results.</p>
<p>The eventual solution requires sending the byte message from the PC to the Arduino. Here, I will use PowerShell to ‘new up’ a System.IO.Ports.SerialPort and WriteLine the commands from the shell.</p>
<p>&#160;</p>
<p>Here is my sketch:</p>
<p>int redPin = 13;&#160;&#160;&#160; <br />int greenPin = 7;&#160;&#160;&#160; </p>
<p>void setup() { </p>
<p>&#160; // set all the other pins you&#8217;re using as outputs:   <br />&#160; pinMode(redPin, OUTPUT);    <br />&#160; pinMode(greenPin, OUTPUT);    <br />&#160; //the usb connection   <br />&#160; Serial.begin(9600);    <br />} </p>
<p>void loop() { </p>
<p> if (Serial.available())   <br /> {    <br />&#160;&#160; int c = Serial.read();    <br />&#160;&#160; switch (c)    <br />&#160;&#160; {    <br />&#160;&#160;&#160;&#160; case &#8216;R&#8217;:    <br />&#160;&#160;&#160;&#160;&#160;&#160; digitalWrite(redPin, HIGH);&#160;&#160;&#160;&#160;&#160;&#160; //Light Red    <br />&#160;&#160;&#160;&#160;&#160;&#160; break;    <br />&#160;&#160;&#160;&#160; case &#8216;G&#8217;:    <br />&#160;&#160;&#160;&#160;&#160;&#160; digitalWrite(greenPin, HIGH);&#160;&#160;&#160;&#160; //Light Green    <br />&#160;&#160;&#160;&#160;&#160;&#160; break;    <br />&#160;&#160;&#160;&#160; case &#8216;O&#8217;:    <br />&#160;&#160;&#160;&#160;&#160;&#160; digitalWrite(greenPin, LOW);&#160;&#160;&#160;&#160;&#160; //Lights out    <br />&#160;&#160;&#160;&#160;&#160;&#160; digitalWrite(redPin, LOW);    <br />&#160;&#160;&#160;&#160;&#160;&#160; break;    <br />&#160;&#160; }    <br /> } </p>
<p>}</p>
<p>After hooking the Arduino up, I keyed the following into PowerShell.</p>
<pre>$s = New-Object System.IO.Ports.SerialPort
$s.PortName = <span class="str">&quot;COM4&quot;</span>
$s.BaudRate = <span class="str">&quot;9600&quot;</span>
$s.Parity = <span class="str">&quot;None&quot;</span>
$s.WriteLine(<span class="str">'R'</span>)</pre>
<p>The green light came on and my inner geek roared! </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=176&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/10/09/arduino-communicating-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Housekeeping</title>
		<link>http://agiledeveloper.wordpress.com/2009/02/06/housekeeping/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/02/06/housekeeping/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 09:02:49 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/?p=173</guid>
		<description><![CDATA[Realised it&#8217;s Friday morning and I am doing something that I do most Fridays that I thought I&#8217;d share. Cleaning up my working copies. Whilst this should not ever be too much of an issue I am a bit retentive about being able to drop into any of our projects and be quickly up to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=173&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Realised it&#8217;s Friday morning and I am doing something that I do most Fridays that I thought I&#8217;d share. Cleaning up my working copies. Whilst this should not ever be too much of an issue I am a bit retentive about being able to drop into any of our projects and be quickly up to date.</p>
<p>Subversion is iterative about how it works; if you Update frequently they are short processes. If you have not touched the repository for a while and you have uncommitted changes they can take a while! The process never takes to long when I keep &#8220;my room&#8221; tidy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=173&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/02/06/housekeeping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Refactoring my tests.</title>
		<link>http://agiledeveloper.wordpress.com/2009/02/06/refactoring-my-tests/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/02/06/refactoring-my-tests/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 08:59:18 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Practices]]></category>
		<category><![CDATA[TDD]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/?p=171</guid>
		<description><![CDATA[My programming day is very rarely all success or all disappointments; in truth it probably looks like a sine wave with a very high frequency. Over the course of my career, I have become better at noticing and dealing with how these successes and disappointments affect me as a person. When I have taken a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=171&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My programming day is very rarely all success or all disappointments; in truth it probably looks like a sine wave with a very high frequency. Over the course of my career, I have become better at noticing and dealing with how these successes and disappointments affect me as a person.</p>
<p>When I have taken a few disappointments on the chin in any given period, I will often revisit my unit tests and refactor them to make them more clear and readable and then jump back at the task at hand. Sometimes I will notice how to improve the test to be more effective as well. I find this practice has two tangible benefits. Firstly, my tests across time become clearer, more concise and more effective as I tweak them. Secondly, the &#8220;refactor / run tests&#8221; cycle gives me some easy wins and set me back on my way in a much better frame of mind.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=171&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/02/06/refactoring-my-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>MVC Training Session: 9th February, Peterborough</title>
		<link>http://agiledeveloper.wordpress.com/2009/02/05/mvc-training-session-9th-february-peterborough/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/02/05/mvc-training-session-9th-february-peterborough/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:25:00 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2009/02/05/mvc-training-session-9th-february-peterborough/</guid>
		<description><![CDATA[I am giving a training session on the use of ASP.NET MVC to a group of developers in Peterborough on the 9th of this month. Hopefully the weather will co-operate as we have had a fair amount of snow this week, with more forecast for the weekend. It will nice to see John (a friend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=169&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://agiledeveloper.files.wordpress.com/2009/02/05022009300.jpg"><img title="05022009300" style="display:inline;margin-left:0;margin-right:0;border-width:0;" height="204" alt="05022009300" src="http://agiledeveloper.files.wordpress.com/2009/02/05022009300-thumb.jpg?w=268&#038;h=204" width="268" align="right" border="0" /></a>I am giving a training session on the use of ASP.NET MVC to a group of developers in Peterborough on the 9th of this month. Hopefully the weather will co-operate as we have had a fair amount of snow this week, with more forecast for the weekend.</p>
<p>It will nice to see John (a friend and ex-colleague) who works at the organisation where the training is being held. I find giving a training session on something enhances my understanding of the subject matter and the more training I conduct, the more I feel it might make up a bigger portion of my career down the line.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=169&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/02/05/mvc-training-session-9th-february-peterborough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>

		<media:content url="http://agiledeveloper.files.wordpress.com/2009/02/05022009300-thumb.jpg" medium="image">
			<media:title type="html">05022009300</media:title>
		</media:content>
	</item>
		<item>
		<title>Being a twit!</title>
		<link>http://agiledeveloper.wordpress.com/2009/02/05/being-a-twit/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/02/05/being-a-twit/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 09:49:14 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2009/02/05/being-a-twit/</guid>
		<description><![CDATA[Finally got on to twitter! Thanks very much to Scott Hanselman and his blog post here. I hope to put our build server on later in the day!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=165&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally got on to twitter! </p>
<p>Thanks very much to Scott Hanselman and his <a href="http://tinyurl.com/cd4s92">blog post here</a>. </p>
<p>I hope to put our build server on later in the day!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=165&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/02/05/being-a-twit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy; Like Sunday Morning.</title>
		<link>http://agiledeveloper.wordpress.com/2009/01/25/easy-like-sunday-morning/</link>
		<comments>http://agiledeveloper.wordpress.com/2009/01/25/easy-like-sunday-morning/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 10:06:30 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[TDD]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Workplace]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2009/01/25/easy-like-sunday-morning/</guid>
		<description><![CDATA[Visual Studio can be quite viral in my life. When I am “into” something or having to pick up a new technology or methodology, it is where I reside. This Sunday morning; it is a comfortable place to be! The new project I am working on and the Entity Framework, in particular, are the objects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=164&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Visual Studio can be quite viral in my life. When I am “into” something or having to pick up a new technology or methodology, it is where I reside. This Sunday morning; it is a comfortable place to be!</p>
<p>The new project I am working on and the Entity Framework, in particular, are the objects of my latest bout of obsession. </p>
<p>I have had a particularly good week; for the first time in my current role, I am writing tests prior to code. Logging in on the weekend when there is nothing that <em>has </em>to be done is a very good indication of my happiness in work. </p>
<p>Scoping a task in tests is one of my favorite elements of TDD (and software development as a whole.) The effort to make the test suite be the best documentation of the elements they test is one that makes perfect sense to me. Developers will write document business rules which will be validated each time the test suite is run. In addition, I like writing tests; they increase my understanding of what I am doing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=164&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2009/01/25/easy-like-sunday-morning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Escape to Victory! VPN Tunnelling to freedom.</title>
		<link>http://agiledeveloper.wordpress.com/2008/12/11/escape-to-victory-vpn-tunnelling-to-freedom/</link>
		<comments>http://agiledeveloper.wordpress.com/2008/12/11/escape-to-victory-vpn-tunnelling-to-freedom/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:32:39 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2008/12/11/escape-to-victory-vpn-tunnelling-to-freedom/</guid>
		<description><![CDATA[I had a torturous time trying to connect my new Windows Server 2008 (x64) install to the VPN at work. It just wouldn&#8217;t play dice. Thus far my best solution is an XP Pro (x86) VM. Whilst not being able to from the x64 box directly, I can still Remote Desktop the work box and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=162&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a torturous time trying to connect my new Windows Server 2008 (x64) install to the VPN at work. It just wouldn&#8217;t play dice. Thus far my best solution is an XP Pro (x86) VM. Whilst not being able to from the x64 box directly, I can still Remote Desktop the work box and mount network shares. Glad to be back in business (ED: Poor pun!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=162&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2008/12/11/escape-to-victory-vpn-tunnelling-to-freedom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Mingling in TeamCity</title>
		<link>http://agiledeveloper.wordpress.com/2008/11/30/mingling-in-teamcity/</link>
		<comments>http://agiledeveloper.wordpress.com/2008/11/30/mingling-in-teamcity/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 01:41:58 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[CI]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2008/11/30/mingling-in-teamcity/</guid>
		<description><![CDATA[I played with some new software development tools this weekend, TeamCity and Mingle. TeamCity is a build server by the wonderful folks at JetBrains. It is a package I have wanted to take a look at for a few moons after Roy Oshergrove mentioned it in his blog. Using it this weekend as the build [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=157&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I played with some new software development tools this weekend, TeamCity and Mingle.</p>
<p>TeamCity is a build server by the wonderful folks at JetBrains. It is a package I have wanted to take a look at for a few moons after Roy Oshergrove mentioned it in his blog. Using it this weekend as the build server for <a href="http://magoogames.com" target="_blank">GameProject (my XNA adventure!)</a> is the first time that I have put it through its paces. (More accurately I put it through a few baby steps!)</p>
<p>Mingle, is an agile planning &amp; tracking tool by ThoughtWorks and it comes with a year evaluation license for five seats. Again GameProject was my guinea pig. The software at first glance is a bit more than I need as the one guy on the project but it looks shiny nonetheless. The best implementation of &#8220;cards&#8221; on screen I have seen yet. I shall be sticking to a combination of Google Notebooks and RSS for now. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=157&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2008/11/30/mingling-in-teamcity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Game State Management and Bouncy</title>
		<link>http://agiledeveloper.wordpress.com/2008/11/24/game-state-management-and-bouncy/</link>
		<comments>http://agiledeveloper.wordpress.com/2008/11/24/game-state-management-and-bouncy/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 21:47:37 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Baby Computer Games]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Magoo Games]]></category>
		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2008/11/24/game-state-management-and-bouncy/</guid>
		<description><![CDATA[I decided to draw a line under the Bouncy game this evening. Then I decided to resurrect it and make it the subject of my base project for Windows games. The education section of XNA Creator&#8217;s page yielded my next evenings jaunt through the merry fields of XNA; I am going to use the Game [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=156&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I decided to draw a line under the <a href="http://www.magoogames.com" target="_blank">Bouncy</a> game this evening. Then I decided to resurrect it and make it the subject of my base project for Windows games. The education section of XNA Creator&#8217;s page yielded my next evenings jaunt through the merry fields of XNA; I am going to use the <a href="http://creators.xna.com/en-US/samples/gamestatemanagement" target="_blank">Game State Management example</a> as the inspiration (basis?) for my template project.</p>
<p>The actual game (GameplayScreen.cs) will be where Bouncy lives on!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=156&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2008/11/24/game-state-management-and-bouncy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekend Excursion into Game Development</title>
		<link>http://agiledeveloper.wordpress.com/2008/11/23/weekend-excursion-into-game-development/</link>
		<comments>http://agiledeveloper.wordpress.com/2008/11/23/weekend-excursion-into-game-development/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 15:31:03 +0000</pubDate>
		<dc:creator>Daniel Elliott</dc:creator>
				<category><![CDATA[Baby Computer Games]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Magoo Games]]></category>
		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://agiledeveloper.wordpress.com/2008/11/23/weekend-excursion-into-game-development/</guid>
		<description><![CDATA[Zara Grace is my youngest daughter. She is a bubbly, smiley six month old who loves sitting at daddy&#8217;s computer thumping his keyboard. With the release of the XNA Game Studio 3.0 in the last few weeks, I decided to spend my geek time this weekend putting her together a simple &#8220;bash the keyboard game.&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=155&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.magoogames.com" target="_blank"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;margin:0 25px 0 0;" height="148" alt="Star-128x128" src="http://agiledeveloper.files.wordpress.com/2008/11/star-128x128.png?w=148&#038;h=148" width="148" align="left" border="0"></a> Zara Grace is my youngest daughter. She is a bubbly, smiley six month old who loves sitting at daddy&#8217;s computer thumping his keyboard. With the release of the XNA Game Studio 3.0 in the last few weeks, I decided to spend my geek time this weekend putting her together a simple &#8220;bash the keyboard game.&#8221; And low, Bouncy was born!</p>
<p>Bouncy is a very simple 2d &#8220;game&#8221; which baby can interact with by hitting keys. It represent my first foray into game development with the XNA Framework and I am quite happy with it considering it is about a days worth of effort. For those who are new to XNA or have not tried it out yet, I hope this project will serve as a &#8220;quick start.&#8221; It demonstrates the rendering of a texture, sound effects and music, some simple physics and the handling of user input.</p>
<p>The binaries and source are available for <a href="http://www.magoogames.com/downloads/bouncy.zip" target="_blank">download at Magoo Games</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/agiledeveloper.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/agiledeveloper.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/agiledeveloper.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=agiledeveloper.wordpress.com&amp;blog=970038&amp;post=155&amp;subd=agiledeveloper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://agiledeveloper.wordpress.com/2008/11/23/weekend-excursion-into-game-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/12ef3a496ff73486069f54d1121b88e4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">agiledeveloper</media:title>
		</media:content>

		<media:content url="http://agiledeveloper.files.wordpress.com/2008/11/star-128x128.png" medium="image">
			<media:title type="html">Star-128x128</media:title>
		</media:content>
	</item>
	</channel>
</rss>
