<?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>CODING INTENT</title>
	<atom:link href="http://darrencamp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://darrencamp.wordpress.com</link>
	<description>PIE Principle - Program Intently and Expressivley</description>
	<lastBuildDate>Wed, 15 Jun 2011 23:33:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='darrencamp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CODING INTENT</title>
		<link>http://darrencamp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://darrencamp.wordpress.com/osd.xml" title="CODING INTENT" />
	<atom:link rel='hub' href='http://darrencamp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>WiX on the build server</title>
		<link>http://darrencamp.wordpress.com/2011/05/18/wix-on-the-build-server/</link>
		<comments>http://darrencamp.wordpress.com/2011/05/18/wix-on-the-build-server/#comments</comments>
		<pubDate>Wed, 18 May 2011 08:22:36 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Build]]></category>
		<category><![CDATA[CI]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[WiX]]></category>

		<guid isPermaLink="false">http://codingintent.com/?p=56</guid>
		<description><![CDATA[First post in a long while and its about WiX. I was trying to get a WiX project to build without having to install it on the build server. First off I followed this . I had to conditionally set the $(SourceCodeControlRoot) like so However when building the project it crashed visual studio with a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=56&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First post in a long while and its about WiX. I was trying to get a WiX project to build without having to install it on the build server. First off I followed this <a href="http://wix.sourceforge.net/manual-wix3/daily_builds.htm" title="Integrating WiX Projects into Daily Builds"></a>. I had to conditionally set the $(SourceCodeControlRoot) like so</p>
<pre class="brush: xml;">
&lt;PropertyGroup&gt;
  &lt;SourcesDirectory Condition=&quot; $(SourcesDirectory) == ''&quot;&gt;$(MSBuildProjectDirectory)\..\&lt;/SourcesDirectory&gt;
  &lt;WixToolPath&gt;$(SourcesDirectory)tools\wix\3.5\&lt;/WixToolPath&gt;
  &lt;WixTargetsPath&gt;$(WixToolPath)Wix.targets&lt;/WixTargetsPath&gt;
  &lt;WixTasksPath&gt;$(WixToolPath)wixtasks.dll&lt;/WixTasksPath&gt;
&lt;/PropertyGroup&gt;
</pre>
<p>However when building the project it crashed visual studio with a help error message like </p>
<blockquote><p>&#8220;could not load Candle.exe or one of its dependencies, Operation Not Supported&#8221;.</p></blockquote>
<p>Googling turned up a bunch of issues around 64bit image formats which didn&#8217;t apply. Digging a little deeper revealed this error message </p>
<blockquote><p>&#8220;An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework. This release of the .NET Framework does not enable CAS policy by default, so this load may be dangerous. If this load is not intended to sandbox the assembly, please enable the loadFromRemoteSources switch. See http://go.microsoft.com/fwlink/?LinkId=155569 for more information.&#8221;</p></blockquote>
<p>I wasn&#8217;t loading it from a network location it was right there on the local file system. I had downloaded the latest binaries zip file for WiX 3.5 and unzipped it straight into the directory like the above link mentions. Since it was download from the interwebs the files had been marked as blocked.</p>
<div id="attachment_65" class="wp-caption alignleft" style="width: 310px"><br />
<a href="http://darrencamp.files.wordpress.com/2011/05/blockedfile1.png"><img src="http://darrencamp.files.wordpress.com/2011/05/blockedfile1.png?w=300&#038;h=153" alt="Blocked file message" title="BlockedFile" width="300" height="153" class="size-medium wp-image-65" /></a><br />
<p class="wp-caption-text">Blocked File Message</p></div>
<p>Now what I needed was a way to remove the blocked attribute from all the files, there was no way I wanted to do it manually. Luckily SysInternals has a tool called <a href="http://technet.microsoft.com/en-us/sysinternals/bb897440" title="Streams">Streams</a> which will clear that attribute from all files in a directory. </p>
<p>How I got those files into that state in the first place I&#8217;m not sure because I tried it again and the files weren&#8217;t blocked. At least I managed to figure it out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=56&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2011/05/18/wix-on-the-build-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>

		<media:content url="http://darrencamp.files.wordpress.com/2011/05/blockedfile1.png?w=300" medium="image">
			<media:title type="html">BlockedFile</media:title>
		</media:content>
	</item>
		<item>
		<title>Professionalism</title>
		<link>http://darrencamp.wordpress.com/2009/05/15/professionalism/</link>
		<comments>http://darrencamp.wordpress.com/2009/05/15/professionalism/#comments</comments>
		<pubDate>Fri, 15 May 2009 00:35:48 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=f61fe2c2-b0a9-440f-bc85-69a39ac4ab3d</guid>
		<description><![CDATA[RailsConf 09 &#8211; Robert Martin &#8211; What killed smalltalk could kill ruby, too If you take anything at all away from this talk its Robert Martin’s answer to the last question, which boiled down to this: “Professionalism is honour, honesty with yourself and disciplined in your approach and not succumbing to fear and throwing away [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=7&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>RailsConf 09 &#8211; Robert Martin &#8211; <a href="http://www.youtube.com/watch?v=YX3iRjKj7C0">What killed smalltalk could kill ruby, too</a></p>
<p>If you take anything at all away from this talk its Robert Martin’s answer to the last question, which boiled down to this: “Professionalism is honour, honesty with yourself and disciplined in your approach and not succumbing to fear and throwing away all your techniques in the face of a deadline.”</p>
<p>The last attribute reminds me of another quote “Anger, fear, aggression. The dark side are they. Once you start down the dark path, forever will it dominate your destiny.” &#8211; Yoda</p>
<p>This struck a chord with me, Am I being professional?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=7&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2009/05/15/professionalism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>Where’s the code?</title>
		<link>http://darrencamp.wordpress.com/2009/05/04/wheres-the-code/</link>
		<comments>http://darrencamp.wordpress.com/2009/05/04/wheres-the-code/#comments</comments>
		<pubDate>Mon, 04 May 2009 03:35:52 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=05254f07-44ea-4cc5-a40a-c7778f652629</guid>
		<description><![CDATA[I should probably post some code based stories in this blog at some stage. I have one more post in the works about teams and communication and then I’ll start to post some code oriented entries, maybe some rails stuff.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=8&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I should probably post some code based stories in this blog at some stage. I have one more post in the works about teams and communication and then I’ll start to post some code oriented entries, maybe some rails stuff.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=8&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2009/05/04/wheres-the-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>Decisions in isolation</title>
		<link>http://darrencamp.wordpress.com/2009/05/04/decisions-in-isolation/</link>
		<comments>http://darrencamp.wordpress.com/2009/05/04/decisions-in-isolation/#comments</comments>
		<pubDate>Mon, 04 May 2009 03:30:38 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Agile]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=acee8aa5-65ea-40fd-9816-29a89763cedd</guid>
		<description><![CDATA[Decisions made in isolation are often wrong. I’ve been told on occasion that I don’t give enough information and that I’m too optimistic. Both are a fair call and I’ve tried to address those in what I do. It’s good to have feed back because changes cannot be made in an insular environment. The same [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=9&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Decisions made in isolation are often wrong. I’ve been told on occasion that I don’t give enough information and that I’m too optimistic. Both are a fair call and I’ve tried to address those in what I do. It’s good to have feed back because changes cannot be made in an insular environment. </p>
<p>The same rules apply when trying to effect change in a team environment. A team needs to be able to look at the practices and process that are being used and be able to critique them, it’s a vital skill to learn. When decisions are made without input from the team and then forced on them its bound to fail. I realize that not all decisions can be voted on and that someone has to make the decision but that decision needs to be made with all the information.</p>
<p>When making decision make sure that you have ALL the information that you can get.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=9&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2009/05/04/decisions-in-isolation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>Debugging Euphoria</title>
		<link>http://darrencamp.wordpress.com/2008/10/02/debugging-euphoria/</link>
		<comments>http://darrencamp.wordpress.com/2008/10/02/debugging-euphoria/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 02:49:49 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=f455eb54-3efd-4bbe-b0b4-1914393c7163</guid>
		<description><![CDATA[This is what coding is all about, searching and searching for that elusive bug and finally terminating it. Coding is a strange game but one I do love. I hold a senior position at work and consequently I seem to be doing more of the things that don&#8217;t including coding but this week I was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=10&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is what coding is all about, searching and searching for that elusive bug and finally terminating it. </p>
<p>Coding is a strange game but one I do love. I hold a senior position at work and consequently I seem to be doing more of the things that don&#8217;t including coding but this week I was neck deep into debugging. We&#8217;ve been trying to tack down a performance related bug way down in the comms layer and not haveing much luck. I was thinking that this coding caper runs you through an emotional rollercoaster. It started with frustration and self doubt about not being able to locate this persistent little creature. Next it was depression and the question of &#8220;Why am I doing this, I don&#8217;t need it&#8221;. After a bit of wallowing in the depression the &#8220;I can do this, it can&#8217;t be that hard&#8221; kicks in and you try to pull yourself out of the depression pit. Hope and the light at the end of the tunnel is next and finally, finally the euphoria of success. That euphoria when the bug is finally nailed makes it all worth while and all the bad times seem like a distant memory. </p>
<p>I really do enjoy coding.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=10&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2008/10/02/debugging-euphoria/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>A day at a time</title>
		<link>http://darrencamp.wordpress.com/2008/09/12/a-day-at-a-time/</link>
		<comments>http://darrencamp.wordpress.com/2008/09/12/a-day-at-a-time/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 03:04:43 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=267e8582-d9fd-4d4a-9358-0b0c32d235a8</guid>
		<description><![CDATA[What kind of company do I want to create: Everyone should enjoy what they do, they should feel empowered by what they accomplish not belittled Flexible (family oriented) Work with like minded people No company politics Innovative enthusiastic coding environment Think Readify+37Signals = great place to work.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=11&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What kind of company do I want to create:</p>
<ul>
<li>Everyone should enjoy what they do, they should feel empowered by what they accomplish not belittled
<li>Flexible (family oriented)
<li>Work with like minded people
<li>No company politics
<li>Innovative
<li>enthusiastic coding environment</li>
</ul>
<p>Think Readify+37Signals = great place to work.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/darrencamp.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/darrencamp.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=11&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2008/09/12/a-day-at-a-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>The balancing act</title>
		<link>http://darrencamp.wordpress.com/2008/04/29/the-balancing-act/</link>
		<comments>http://darrencamp.wordpress.com/2008/04/29/the-balancing-act/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 01:58:37 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=f5b58d1a-2dd0-4518-8e75-8091a3ab5190</guid>
		<description><![CDATA[I&#8217;ve been reading and hearing bits and pieces of late and it&#8217;s all resonating with me. Since the birth of my son my priorities have significantly changed and I can no longer work the hours I used to. A post by Andrew Stopford really clicked with me. The choice is to spend time with my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=12&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.37signals.com/svn/posts/996-why-i-love-working-with-family-people" href="http://www.37signals.com/svn/posts/996-why-i-love-working-with-family-people"></a></p>
<p>I&#8217;ve been reading and hearing bits and pieces of late and it&#8217;s all resonating with me. Since the birth of my son my priorities have significantly changed and I can no longer work the hours I used to. A post by <a href="http://weblogs.asp.net/astopford/archive/2008/04/24/the-work-life-balance-and-my-absence-of-late.aspx">Andrew Stopford</a> really clicked with me. The choice is to spend time with my child as he&#8217;s growing up and being a big part of his life or continue to work the way I have been. There is no choice, my son wins hands down.</p>
<p>The difficult part for me at the moment is that I&#8217;m feeling ineffectual at work and guilty because I can&#8217;t put in the hours I used to. The culture that I&#8217;m working in at the moment is one of if your seen to be putting in the long hours your doing your bit for the company irrespective of how effective you are. I&#8217;ve almost come to the conclusion that its time for a change at work as well. This is a little harder choice to make as the fear of not providing for my family scares me. I wish I could find an employer like <a href="http://www.37signals.com/svn/posts/996-why-i-love-working-with-family-people">37 Signals</a>, maybe its time to branch out on my own and create such a company.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/darrencamp.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/darrencamp.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=12&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2008/04/29/the-balancing-act/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
		<item>
		<title>My Son</title>
		<link>http://darrencamp.wordpress.com/2007/06/26/my-son/</link>
		<comments>http://darrencamp.wordpress.com/2007/06/26/my-son/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 01:19:04 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://codingintent.com/PermaLink.aspx?guid=884e2b38-6467-4b6a-9dfe-9739be761b9d</guid>
		<description><![CDATA[I just had to post this, my five month old son. I adore this little person and cant imagine my life without him.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=13&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://darrencamp.files.wordpress.com/2010/08/22062007019.jpg"><img class="size-medium wp-image-47 alignnone" title="22062007019" src="http://darrencamp.files.wordpress.com/2010/08/22062007019.jpg?w=240&#038;h=180" alt="" width="240" height="180" /></a></p>
<p>I just had to post this, my five month old son. I adore this little person and cant imagine my life without him.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/darrencamp.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/darrencamp.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=13&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2007/06/26/my-son/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>

		<media:content url="http://darrencamp.files.wordpress.com/2010/08/22062007019.jpg?w=300" medium="image">
			<media:title type="html">22062007019</media:title>
		</media:content>
	</item>
		<item>
		<title>Inaugral Post</title>
		<link>http://darrencamp.wordpress.com/2007/05/31/inaugral-post/</link>
		<comments>http://darrencamp.wordpress.com/2007/05/31/inaugral-post/#comments</comments>
		<pubDate>Thu, 31 May 2007 11:51:45 +0000</pubDate>
		<dc:creator>Darren Camp</dc:creator>
				<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://darrencamp.wordpress.com/?p=20</guid>
		<description><![CDATA[Over the last year or two I&#8217;ve learnt alot. It&#8217;s been a broad learning experience as well. It has seen the birth of my son, the death of my father and changes at work. Its made me realize that if there is something you want to do then you might as well do everything you can to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=20&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:Tahoma;">Over the last year or two I&#8217;ve learnt alot. It&#8217;s been a broad learning experience as well. It has seen the birth of my son, the death of my father and changes at work. Its made me realize that if there is something you want to do then you might as well do everything you can to make it happen. Its all about the journey and what you learn along the way.</span></p>
<p><span style="font-family:Tahoma;">Before parenthood life used to be so easy but now its alot more complicated. The time before kids the only thing that I had to worry about was me, my decisions only affected me. Now I&#8217;ve become alot more unsure about the decisions I do make, they affect alot more people now. I guess all I can do is make the best decision I can and realize that making mistakes is how we learn. </span></p>
<p><span style="font-family:Tahoma;">My father&#8217;s (actually my step-father) death affected me like nothing I&#8217;ve gone through before. It made me question what I was doing. He was the sort of person who followed his dreams and everything he did was a step closer to that goal. I looked at my life and thought &#8220;Where am I&#8217;m going&#8221;. The answer was nowhere. I either didn&#8217;t have a goal to chase or didn&#8217;t know what I wanted, I had to answer that question. </span><span style="font-family:Tahoma;">I was almost at the point of giving software development away, but I do enjoy developing but at that point in time I hated it. I started reading blogs and found that there were people out there who were passionate about software. Reading others&#8217; thoughts and views on different topics made me realize that the only way to get out of the rut I was in was to start to do something, anything. This is where this blog comes in. I&#8217;m going to use this forum to get my thoughts and passions out there, be a part of the community instead of isolating myself.</span></p>
<p><span style="font-family:Tahoma;">Who knows I might even be able to improve my writing skills  <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span><span style="font-family:Tahoma;">So there it is, short and sweet.<br />
</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/darrencamp.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/darrencamp.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrencamp.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrencamp.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrencamp.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrencamp.wordpress.com&amp;blog=14873975&amp;post=20&amp;subd=darrencamp&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://darrencamp.wordpress.com/2007/05/31/inaugral-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c18f383ab0673577ba916ba713df335?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">darrencamp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
