<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Damian Brady's Blog &#187; General</title>
	<atom:link href="http://blog.damianbrady.com.au/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.damianbrady.com.au</link>
	<description>ramblings of a late 20s IT nerd / volleyball junkie / semi-professional drinker</description>
	<lastBuildDate>Wed, 14 Jul 2010 06:49:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>LINQ-to-Entities Date Comparison Gotcha</title>
		<link>http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/</link>
		<comments>http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 01:12:30 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=146</guid>
		<description><![CDATA[I came across this problem very recently while trying to deploy a working product to a new server.  There&#8217;s more information in this StackOverflow question I posted, but here&#8217;s a summary. When you do a date comparison with DateTime.Now using LINQ-to-Entities against a SQL Server database, the engine translates DateTime.Now to GetDate(). For example: var [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this problem very recently while trying to deploy a working product to a new server.  There&#8217;s more information in <a title="Stack Overflow - Linq to entities date comparison problem" href="http://stackoverflow.com/questions/2323951/how-do-linq-queries-against-the-entity-framework-communicate-dates-to-a-sql-serve/" target="_blank">this StackOverflow question</a> I posted, but here&#8217;s a summary.</p>
<p>When you do a date comparison with DateTime.Now using LINQ-to-Entities against a SQL Server database, the engine translates DateTime.Now to GetDate().</p>
<p>For example:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">var items <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>from t <span style="color: #0600FF;">in</span> context.<span style="color: #0000FF;">Token</span>
             where t.<span style="color: #0000FF;">Expiry</span> <span style="color: #008000;">&gt;</span> DateTime.<span style="color: #0000FF;">Now</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">ToList</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

<p>will ultimately generate SQL that says:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #66cc66;">...</span>
<span style="color: #993333; font-weight: bold;">WHERE</span> Token<span style="color: #66cc66;">.</span>Expiry <span style="color: #66cc66;">&gt;</span> GetDate<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">...</span></pre></div></div>

<p>This can cause some significant (and subtle) problems:</p>
<p><strong>If the application running this code is on a different server to the SQL database, any time differences can break code</strong>.</p>
<p>This is what happened to me.  There was a one minute time difference between the web service running this code and the SQL Server machine.  I was using the Entity Framework to set the expiry date to DateTime.Now.AddSeconds(60), and retrieving it later by comparing it to DateTime.Now.  Despite this, I was effectively setting the expiry using the web server&#8217;s time, and comparing it using the SQL Server&#8217;s time.</p>
<p>If you&#8217;re having a similar problem, I hope you stumble across this post.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=LINQ-to-Entities+Date+Comparison+Gotcha+-+http://tinyurl.com/yzmfjq8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;t=LINQ-to-Entities+Date+Comparison+Gotcha" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;title=LINQ-to-Entities+Date+Comparison+Gotcha" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;title=LINQ-to-Entities+Date+Comparison+Gotcha" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=LINQ-to-Entities+Date+Comparison+Gotcha&amp;body=Link: http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20came%20across%20this%20problem%20very%20recently%20while%20trying%20to%20deploy%20a%20working%20product%20to%20a%20new%20server.%20%C2%A0There%27s%20more%20information%20in%20this%20StackOverflow%20question%20I%20posted%2C%20but%20here%27s%20a%20summary.%0D%0A%0D%0AWhen%20you%20do%20a%20date%20comparison%20with%20DateTime.Now%20using%20LINQ-to-Entities%20against%20a%20SQL%20Server%20database%2C%20the%20en" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;title=LINQ-to-Entities+Date+Comparison+Gotcha" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;title=LINQ-to-Entities+Date+Comparison+Gotcha&amp;summary=I%20came%20across%20this%20problem%20very%20recently%20while%20trying%20to%20deploy%20a%20working%20product%20to%20a%20new%20server.%20%C2%A0There%27s%20more%20information%20in%20this%20StackOverflow%20question%20I%20posted%2C%20but%20here%27s%20a%20summary.%0D%0A%0D%0AWhen%20you%20do%20a%20date%20comparison%20with%20DateTime.Now%20using%20LINQ-to-Entities%20against%20a%20SQL%20Server%20database%2C%20the%20en&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/&amp;title=LINQ-to-Entities+Date+Comparison+Gotcha" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2010/02/25/linq-to-entities-date-comparison-gotcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a quick Kentico menu solution</title>
		<link>http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/</link>
		<comments>http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 06:01:56 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=118</guid>
		<description><![CDATA[Thought I&#8217;d post this solution to what I would have thought was a fairly common problem with this product. I&#8217;m using an ASP.Net CMS called Kentico CMS.  It is quite good &#8211; much more friendly than some others I&#8217;ve used recently.  I&#8217;ve been trying to get the CSS Menu control set up so that it [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I&#8217;d post this solution to what I would have thought was a fairly common problem with this product.</p>
<p>I&#8217;m using an ASP.Net CMS called <a title="Kentico CMS" href="http://www.kentico.net/">Kentico CMS</a>.  It is quite good &#8211; much more friendly than some others I&#8217;ve used recently.  I&#8217;ve been trying to get the CSS Menu control set up so that it will always show root pages, and also the pages beneath the current page.  It wasn&#8217;t as easy as I thought.</p>
<p>For example:</p>
<pre>Home
About
 - Our Products
 - Our Services
    - Programming
    - Design
Links
 - Friends
Contact</pre>
<p>In the example above, no matter where I was on the site, I wanted to see <em>Home</em>, <em>About</em>, <em>Links</em>, and <em>Contact</em> on the menu.  If I was on the <em>About </em>page, then the <em>Our Products</em> and <em>Our Services</em> links should be shown as well.  <strong>So I&#8217;m looking for the root pages and the children of the current page</strong>.  I thought this was pretty standard menu behaviour, but it took me a couple of hours to figure out.</p>
<p><strong>Here&#8217;s the solution:</strong></p>
<p>In the design view, edit the properties of the menu by clicking on its gears icon, go to the <strong>Content Filter</strong> section and put the following query in the <strong>WHERE condition</strong> field:</p>
<blockquote><p>NodeAliasPath LIKE &#8216;{&amp;/{0}/%&amp;}&#8217; OR NOT NodeAliasPath LIKE &#8216;/%/%&#8217;</p></blockquote>
<p>This gets all items under the current one {0}, or anything that&#8217;s not a root element.  You&#8217;ll have to make sure the Maximum nesting level is set appropriately, but that&#8217;s it.</p>
<p>Hopefully someone else with the same problem will stumble across this and save themselves an hour or two.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Just+a+quick+Kentico+menu+solution+-+http://tinyurl.com/kmox5k&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;t=Just+a+quick+Kentico+menu+solution" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;title=Just+a+quick+Kentico+menu+solution" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;title=Just+a+quick+Kentico+menu+solution" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Just+a+quick+Kentico+menu+solution&amp;body=Link: http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Thought%20I%27d%20post%20this%20solution%20to%20what%20I%20would%20have%20thought%20was%20a%20fairly%20common%20problem%20with%20this%20product.%0D%0A%0D%0AI%27m%20using%20an%20ASP.Net%20CMS%20called%20Kentico%20CMS.%20%C2%A0It%20is%20quite%20good%20-%20much%20more%20friendly%20than%20some%20others%20I%27ve%20used%20recently.%20%C2%A0I%27ve%20been%20trying%20to%20get%20the%20CSS%20Menu%20control%20set%20up%20so%20that%20it%20wil" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;title=Just+a+quick+Kentico+menu+solution" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;title=Just+a+quick+Kentico+menu+solution&amp;summary=Thought%20I%27d%20post%20this%20solution%20to%20what%20I%20would%20have%20thought%20was%20a%20fairly%20common%20problem%20with%20this%20product.%0D%0A%0D%0AI%27m%20using%20an%20ASP.Net%20CMS%20called%20Kentico%20CMS.%20%C2%A0It%20is%20quite%20good%20-%20much%20more%20friendly%20than%20some%20others%20I%27ve%20used%20recently.%20%C2%A0I%27ve%20been%20trying%20to%20get%20the%20CSS%20Menu%20control%20set%20up%20so%20that%20it%20wil&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/&amp;title=Just+a+quick+Kentico+menu+solution" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2009/09/04/just-a-quick-kentico-menu-solution/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free Electricity</title>
		<link>http://blog.damianbrady.com.au/2008/12/09/free-electricity/</link>
		<comments>http://blog.damianbrady.com.au/2008/12/09/free-electricity/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 06:48:15 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=93</guid>
		<description><![CDATA[I stumbled across this Slashdot post the other day which talks about the potential for mobile phones to generate enough power to run by using piezoelectric materials.  In short, the vibrations you and those around you make when you talk could generate enough electricity to keep your phone going. Now here&#8217;s the point in this [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled across this <a href="http://hardware.slashdot.org/article.pl?sid=08/12/03/2320200">Slashdot post</a> the other day which talks about the potential for mobile phones to generate enough power to run by using piezoelectric materials.  In short, the vibrations you and those around you make when you talk could generate enough electricity to keep your phone going.</p>
<p>Now here&#8217;s the point in this post where I really wish I could remember the word I want to use.  You know when you hear about something for the first time in your life, then amazingly you hear about it several times in the next short while?  You wonder how you&#8217;re suddenly being bombarded with this new concept when you only just found out about it?  Yeah, there&#8217;s a word for that and I&#8217;ve forgotten what it is.  That word goes here.</p>
<p>I picked up a Popular Science magazine a few days before I found this Slashdot post and amazingly, there was a whole section in it about &#8220;free&#8221; energy.  Awesome concept.</p>
<p>There&#8217;s a whole host of low-powered devices in common use today, and there&#8217;s superfluous energy being expended everywhere.  Surely this energy can be used to power these low-powered devices?</p>
<p>The simplest example in the Popsci magazine was the humble light switch.  When you wire up a house, you have wire for power going to the actual light, as well as wire for control going from the light to the light switch.  When you flick the switch to turn the light on, you&#8217;re expending energy.  Not much, granted, put apparently enough to send a wireless signal to the light (or a controller next to it) to tell it to turn on.  With a setup like this, there&#8217;s no need for wire to run down the walls to the switches.  Yeah, it&#8217;s not much of a power saving and it&#8217;s probably not worth the extra initial cost right now, but in the future it could, and combining a few dozen simple ideas like this in every house could surely save some energy.</p>
<p>The fact is, we expend a lot of energy when we do anything.  There&#8217;s also ambient energy all over the place &#8211; the obvious ones like wind and light, but also vibrations and body heat.  If we could capture a fraction of that energy and put it to use, we&#8217;d have much less need for power plants.</p>
<p>There are thousands of options out there.  If you go for a walk, chuck your mobile phone in the little holster on your belt, and as you walk, the up-down motion of your steps can charge it.  Or maybe the energy absorbed when rain lands on your car roof could be enough to power your windscreen wipers.</p>
<p>Perhaps after a time, when it becomes cheap enough, device manufacturers may get into the habit of building these &#8220;free&#8221; power sources into their devices.  A mobile you didn&#8217;t have to plug into a wall or a sound-powered LED light you could just stick onto a ceiling would certainly have a market.</p>
<p>Clearly this stuff interests me.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/12/09/free-electricity/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Free+Electricity+-+http://tinyurl.com/qqe6cc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;t=Free+Electricity" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;title=Free+Electricity" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;title=Free+Electricity" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Free+Electricity&amp;body=Link: http://blog.damianbrady.com.au/2008/12/09/free-electricity/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20stumbled%20across%20this%20Slashdot%20post%20the%20other%20day%20which%20talks%20about%20the%20potential%20for%20mobile%20phones%20to%20generate%20enough%20power%20to%20run%20by%20using%20piezoelectric%20materials.%20%C2%A0In%20short%2C%20the%20vibrations%20you%20and%20those%20around%20you%20make%20when%20you%20talk%20could%20generate%20enough%20electricity%20to%20keep%20your%20phone%20going.%0D%0A%0D" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;title=Free+Electricity" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;title=Free+Electricity&amp;summary=I%20stumbled%20across%20this%20Slashdot%20post%20the%20other%20day%20which%20talks%20about%20the%20potential%20for%20mobile%20phones%20to%20generate%20enough%20power%20to%20run%20by%20using%20piezoelectric%20materials.%20%C2%A0In%20short%2C%20the%20vibrations%20you%20and%20those%20around%20you%20make%20when%20you%20talk%20could%20generate%20enough%20electricity%20to%20keep%20your%20phone%20going.%0D%0A%0D&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/12/09/free-electricity/&amp;title=Free+Electricity" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/12/09/free-electricity/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/12/09/free-electricity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>News</title>
		<link>http://blog.damianbrady.com.au/2008/11/18/news/</link>
		<comments>http://blog.damianbrady.com.au/2008/11/18/news/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 22:28:21 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=92</guid>
		<description><![CDATA[So it&#8217;s been a long time since posts but I have an excuse.  Every time I thought about throwing up a new post, it occured to me that there&#8217;s only one thing I really want to write about, and I couldn&#8217;t.  Until now. I&#8217;m moving on from my current job. I won&#8217;t delve too deeply [...]]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been a long time since posts but I have an excuse.  Every time I thought about throwing up a new post, it occured to me that there&#8217;s only one thing I really want to write about, and I couldn&#8217;t.  Until now.</p>
<p>I&#8217;m moving on from my current job.</p>
<p>I won&#8217;t delve too deeply into the reasons, but the short version is that I&#8217;ve really done all I can for my career at Global MoneyLine at the moment.  I assume it&#8217;s the same with most financial institutions, but times are tough and the emphasis is understandably not on exciting new projects and new technologies.  Consequently, I&#8217;m not really learning new things and expanding myself any more and for me, that means its time to go.  It will turn around, sure, but I guess I&#8217;m just impatient.</p>
<p>So I start my new job with The Systems Works (<a title="The System Works" href="http://www.tsw.com.au" target="_blank">www.tsw.com.au</a>) on Monday next week.  Excited, anxious, slightly nervous, but very much looking forward to the change.  I&#8217;ll keep you posted.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/11/18/news/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=News+-+http://tinyurl.com/pgwl4u&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/11/18/news/&amp;t=News" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;title=News" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;title=News" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=News&amp;body=Link: http://blog.damianbrady.com.au/2008/11/18/news/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A So%20it%27s%20been%20a%20long%20time%20since%20posts%20but%20I%20have%20an%20excuse.%C2%A0%20Every%20time%20I%20thought%20about%20throwing%20up%20a%20new%20post%2C%20it%20occured%20to%20me%20that%20there%27s%20only%20one%20thing%20I%20really%20want%20to%20write%20about%2C%20and%20I%20couldn%27t.%C2%A0%20Until%20now.%0D%0A%0D%0AI%27m%20moving%20on%20from%20my%20current%20job.%0D%0A%0D%0AI%20won%27t%20delve%20too%20deeply%20into%20the%20reasons%2C%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;title=News" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;title=News&amp;summary=So%20it%27s%20been%20a%20long%20time%20since%20posts%20but%20I%20have%20an%20excuse.%C2%A0%20Every%20time%20I%20thought%20about%20throwing%20up%20a%20new%20post%2C%20it%20occured%20to%20me%20that%20there%27s%20only%20one%20thing%20I%20really%20want%20to%20write%20about%2C%20and%20I%20couldn%27t.%C2%A0%20Until%20now.%0D%0A%0D%0AI%27m%20moving%20on%20from%20my%20current%20job.%0D%0A%0D%0AI%20won%27t%20delve%20too%20deeply%20into%20the%20reasons%2C%20&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/11/18/news/&amp;title=News" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/11/18/news/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/11/18/news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Myth of the Interchangeable Programmer</title>
		<link>http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/</link>
		<comments>http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 04:13:23 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=78</guid>
		<description><![CDATA[I just read a fantastic article by John Miano called, &#8220;The Myth of the Interchangeable Programmer: Can&#8217;t We Just Offshore Him?&#8220;. Basically, the premise is that there&#8217;s a very common misconception that all programmers are alike and have the same productivity.  It&#8217;s definitely worth a read. While his article focuses on the practice of offshoring [...]]]></description>
			<content:encoded><![CDATA[<p>I just read a fantastic article by John Miano called, &#8220;<a title="The Myth of the Interchangeable Programmer" href="http://itmanagement.earthweb.com/entdev/article.php/3757311/The+Myth+of+the+Interchangeable+Programmer:+Can%E2%80%99t+We+Just+Offshore+Him?.htm" target="_blank">The Myth of the Interchangeable Programmer: Can&#8217;t We Just Offshore Him?</a>&#8220;.</p>
<p>Basically, the premise is that there&#8217;s a very common <strong>misconception that all programmers are alike and have the same productivity</strong>.  It&#8217;s definitely worth a read.</p>
<p>While his article focuses on the practice of offshoring programming to cheap overseas countries, <strong>the idea is also relevant when talking about hiring new (local) programmers</strong> either to replace others or in response to increased workload.</p>
<p>The misconception that all programmers are the same can lead to an <strong>almost apathetic approach to hiring</strong> by managers.  If someone quits, that&#8217;s fine, we&#8217;ll just hire another programmer to take over the work.  If there are new requirements that mean we need a new developer, then fine, we&#8217;ll just hire another one.  One problem is that <strong>there&#8217;s usually a significant lead time</strong> filled with learning about the project <strong>before even the best programmer can be truly productive</strong>.  The other problem is that which is outlined in Miano&#8217;s article; <strong>one programmer can be many times more effective than another</strong>.</p>
<p><strong>I&#8217;m not sure what the solution to this is</strong>.  I&#8217;ve preached this line many a time but because it&#8217;s in such stark contrast to the <em>person x time = fixed productivity</em> formula that is relatively true for most other professions, it falls on deaf ears.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+Myth+of+the+Interchangeable+Programmer+-+http://tinyurl.com/pxpwjb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;t=The+Myth+of+the+Interchangeable+Programmer" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;title=The+Myth+of+the+Interchangeable+Programmer" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;title=The+Myth+of+the+Interchangeable+Programmer" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=The+Myth+of+the+Interchangeable+Programmer&amp;body=Link: http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20read%20a%20fantastic%20article%20by%20John%20Miano%20called%2C%20%22The%20Myth%20of%20the%20Interchangeable%20Programmer%3A%20Can%27t%20We%20Just%20Offshore%20Him%3F%22.%0D%0A%0D%0ABasically%2C%20the%20premise%20is%20that%20there%27s%20a%20very%20common%20misconception%20that%20all%20programmers%20are%20alike%20and%20have%20the%20same%20productivity.%C2%A0%20It%27s%20definitely%20worth%20a%20read.%0D%0A%0D%0AWhi" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;title=The+Myth+of+the+Interchangeable+Programmer" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;title=The+Myth+of+the+Interchangeable+Programmer&amp;summary=I%20just%20read%20a%20fantastic%20article%20by%20John%20Miano%20called%2C%20%22The%20Myth%20of%20the%20Interchangeable%20Programmer%3A%20Can%27t%20We%20Just%20Offshore%20Him%3F%22.%0D%0A%0D%0ABasically%2C%20the%20premise%20is%20that%20there%27s%20a%20very%20common%20misconception%20that%20all%20programmers%20are%20alike%20and%20have%20the%20same%20productivity.%C2%A0%20It%27s%20definitely%20worth%20a%20read.%0D%0A%0D%0AWhi&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/&amp;title=The+Myth+of+the+Interchangeable+Programmer" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/07/08/the-myth-of-the-interchangeable-programmer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>That was my idea!</title>
		<link>http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/</link>
		<comments>http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 00:20:44 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=77</guid>
		<description><![CDATA[David from 37signals posted a blog entry about people who have succeeded with ideas you may have thought of a while ago. He&#8217;s right about it all of course &#8211; an idea by itself it worth nothing.  If you do nothing with it, then you have nobody to blame but yourself if someone else makes [...]]]></description>
			<content:encoded><![CDATA[<p>David from 37signals <a title="Signal vs Noise - I had that idea years ago!" href="http://www.37signals.com/svn/posts/1122-i-had-that-idea-years-ago" target="_blank">posted a blog entry</a> about people who have succeeded with ideas you may have thought of a while ago.</p>
<p>He&#8217;s right about it all of course &#8211; an idea by itself it worth nothing.  If you do nothing with it, then you have nobody to blame but yourself if someone else makes a whole lot of money from a similar idea.</p>
<p>Of course this doesn&#8217;t necessarily stop the nagging feeling that it could have been you with all that income&#8230;</p>
<p>My big idea that I did nothing with?  I think it was around 1998 when I thought it would be useful to have a real estate website to which rental agencies could submit available properties complete with photos and searchable descriptions.  Seriously.  Oh well.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=That+was+my+idea%21+-+http://tinyurl.com/ocznfk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;t=That+was+my+idea%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;title=That+was+my+idea%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;title=That+was+my+idea%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=That+was+my+idea%21&amp;body=Link: http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A David%20from%2037signals%20posted%20a%20blog%20entry%20about%20people%20who%20have%20succeeded%20with%20ideas%20you%20may%20have%20thought%20of%20a%20while%20ago.%0D%0A%0D%0AHe%27s%20right%20about%20it%20all%20of%20course%20-%20an%20idea%20by%20itself%20it%20worth%20nothing.%C2%A0%20If%20you%20do%20nothing%20with%20it%2C%20then%20you%20have%20nobody%20to%20blame%20but%20yourself%20if%20someone%20else%20makes%20a%20whole%20lo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;title=That+was+my+idea%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;title=That+was+my+idea%21&amp;summary=David%20from%2037signals%20posted%20a%20blog%20entry%20about%20people%20who%20have%20succeeded%20with%20ideas%20you%20may%20have%20thought%20of%20a%20while%20ago.%0D%0A%0D%0AHe%27s%20right%20about%20it%20all%20of%20course%20-%20an%20idea%20by%20itself%20it%20worth%20nothing.%C2%A0%20If%20you%20do%20nothing%20with%20it%2C%20then%20you%20have%20nobody%20to%20blame%20but%20yourself%20if%20someone%20else%20makes%20a%20whole%20lo&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/&amp;title=That+was+my+idea%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/07/07/that-was-my-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Death by Localization</title>
		<link>http://blog.damianbrady.com.au/2008/04/22/death-by-localization/</link>
		<comments>http://blog.damianbrady.com.au/2008/04/22/death-by-localization/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 03:25:34 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=52</guid>
		<description><![CDATA[I read a Coding Horror post in March about testing localisation code for Turkey to make sure it&#8217;s correct.  Apparently Turkey has one of the hardest languages to write Internationalisation code for. Anyway, it appears that a localisation fault on a mobile phone in Turkey has resulted in two deaths and three jailings.  Warning &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I read a <a title="Coding Horror - What's wrong with Turkey?" href="http://www.codinghorror.com/blog/archives/001075.html">Coding Horror post in March</a> about testing localisation code for Turkey to make sure it&#8217;s correct.  <strong>Apparently Turkey has one of the hardest languages to write Internationalisation code for</strong>.</p>
<p>Anyway, it appears that <strong>a localisation fault on a mobile phone in Turkey has resulted in two deaths and three jailings</strong>.  Warning &#8211; bad language in <a title="Gizmodo - Localization Problems" href="http://gizmodo.com/382026/a-cellphones-missing-dot-kills-two-people-puts-three-more-in-jail" target="_blank">this link</a>!</p>
<p><strong>Wow.  That&#8217;s a very bad side-effect&#8230;</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/04/22/death-by-localization/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Death+by+Localization+-+http://tinyurl.com/q3gfeu&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;t=Death+by+Localization" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;title=Death+by+Localization" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;title=Death+by+Localization" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Death+by+Localization&amp;body=Link: http://blog.damianbrady.com.au/2008/04/22/death-by-localization/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20read%20a%20Coding%20Horror%20post%20in%20March%20about%20testing%20localisation%20code%20for%20Turkey%20to%20make%20sure%20it%27s%20correct.%C2%A0%20Apparently%20Turkey%20has%20one%20of%20the%20hardest%20languages%20to%20write%20Internationalisation%20code%20for.%0D%0A%0D%0AAnyway%2C%20it%20appears%20that%20a%20localisation%20fault%20on%20a%20mobile%20phone%20in%20Turkey%20has%20resulted%20in%20two%20deat" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;title=Death+by+Localization" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;title=Death+by+Localization&amp;summary=I%20read%20a%20Coding%20Horror%20post%20in%20March%20about%20testing%20localisation%20code%20for%20Turkey%20to%20make%20sure%20it%27s%20correct.%C2%A0%20Apparently%20Turkey%20has%20one%20of%20the%20hardest%20languages%20to%20write%20Internationalisation%20code%20for.%0D%0A%0D%0AAnyway%2C%20it%20appears%20that%20a%20localisation%20fault%20on%20a%20mobile%20phone%20in%20Turkey%20has%20resulted%20in%20two%20deat&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/&amp;title=Death+by+Localization" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/04/22/death-by-localization/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/04/22/death-by-localization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mid-20s?</title>
		<link>http://blog.damianbrady.com.au/2008/04/01/mid-20s/</link>
		<comments>http://blog.damianbrady.com.au/2008/04/01/mid-20s/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 09:23:32 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=39</guid>
		<description><![CDATA[Yeah, I finally bit the bullet and changed my blog tagline&#8230; ramblings of a mid-late 20s IT nerd / volleyball junkie / semi-professional drinker &#8230;how depressing&#8230; Subscribe to the comments for this post? Tweet This! Share this on Facebook Share this on Reddit Digg this! Post on Google Buzz Email this via Gmail Share this [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, I finally bit the bullet and changed my blog tagline&#8230;</p>
<blockquote><p>ramblings of a <span style="text-decoration: line-through;">mid-</span>late 20s IT nerd / volleyball junkie / semi-professional drinker</p></blockquote>
<p>&#8230;how depressing&#8230; <img src='http://blog.damianbrady.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/04/01/mid-20s/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mid-20s%3F+-+http://tinyurl.com/qxh7pl&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;t=Mid-20s%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;title=Mid-20s%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;title=Mid-20s%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Mid-20s%3F&amp;body=Link: http://blog.damianbrady.com.au/2008/04/01/mid-20s/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Yeah%2C%20I%20finally%20bit%20the%20bullet%20and%20changed%20my%20blog%20tagline...%0D%0Aramblings%20of%20a%20mid-late%2020s%20IT%20nerd%20%2F%20volleyball%20junkie%20%2F%20semi-professional%20drinker%0D%0A...how%20depressing...%20%3B%29" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;title=Mid-20s%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;title=Mid-20s%3F&amp;summary=Yeah%2C%20I%20finally%20bit%20the%20bullet%20and%20changed%20my%20blog%20tagline...%0D%0Aramblings%20of%20a%20mid-late%2020s%20IT%20nerd%20%2F%20volleyball%20junkie%20%2F%20semi-professional%20drinker%0D%0A...how%20depressing...%20%3B%29&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/04/01/mid-20s/&amp;title=Mid-20s%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/04/01/mid-20s/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/04/01/mid-20s/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Luke, if you&#8217;re reading&#8230;</title>
		<link>http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/</link>
		<comments>http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 02:42:54 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=38</guid>
		<description><![CDATA[The book was called The House of God.  Nervousness makes me forget things! Damo Subscribe to the comments for this post? Tweet This! Share this on Facebook Share this on Reddit Digg this! Post on Google Buzz Email this via Gmail Share this on del.icio.us Share this on LinkedIn Stumble upon something good? Share it [...]]]></description>
			<content:encoded><![CDATA[<p>The book was called <a title="Wikipedia - The House of God" href="http://en.wikipedia.org/wiki/The_House_of_God">The House of God</a>.  Nervousness makes me forget things!</p>
<p>Damo</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Luke%2C+if+you%27re+reading...+-+http://tinyurl.com/qem2s4&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;t=Luke%2C+if+you%27re+reading..." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;title=Luke%2C+if+you%27re+reading..." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;title=Luke%2C+if+you%27re+reading..." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Luke%2C+if+you%27re+reading...&amp;body=Link: http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20book%20was%20called%20The%20House%20of%20God.%C2%A0%20Nervousness%20makes%20me%20forget%20things%21%0D%0A%0D%0ADamo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;title=Luke%2C+if+you%27re+reading..." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;title=Luke%2C+if+you%27re+reading...&amp;summary=The%20book%20was%20called%20The%20House%20of%20God.%C2%A0%20Nervousness%20makes%20me%20forget%20things%21%0D%0A%0D%0ADamo&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/&amp;title=Luke%2C+if+you%27re+reading..." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/03/31/luke-if-youre-reading/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I like this codepath</title>
		<link>http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/</link>
		<comments>http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 00:35:42 +0000</pubDate>
		<dc:creator>Damian Brady</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.damianbrady.com.au/?p=37</guid>
		<description><![CDATA[if (thisWeekend.Contains(easter)) { &#160;&#160;thursday = friday; &#160;&#160;tuesday = monday; } Subscribe to the comments for this post? Tweet This! Share this on Facebook Share this on Reddit Digg this! Post on Google Buzz Email this via Gmail Share this on del.icio.us Share this on LinkedIn Stumble upon something good? Share it on StumbleUpon Share this [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<div style="font-family: monospace; font-size: medium">if (thisWeekend.Contains(easter))<br />
{<br />
&nbsp;&nbsp;thursday = friday;<br />
&nbsp;&nbsp;tuesday = monday;<br />
}</div>
</blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=I+like+this+codepath+-+http://tinyurl.com/r9vqx3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;t=I+like+this+codepath" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;title=I+like+this+codepath" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;title=I+like+this+codepath" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=I+like+this+codepath&amp;body=Link: http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0Aif%20%28thisWeekend.Contains%28easter%29%29%0D%0A%7B%0D%0A%26nbsp%3B%26nbsp%3Bthursday%20%3D%20friday%3B%0D%0A%26nbsp%3B%26nbsp%3Btuesday%20%3D%20monday%3B%0D%0A%7D%0D%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;title=I+like+this+codepath" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;title=I+like+this+codepath&amp;summary=%0D%0Aif%20%28thisWeekend.Contains%28easter%29%29%0D%0A%7B%0D%0A%26nbsp%3B%26nbsp%3Bthursday%20%3D%20friday%3B%0D%0A%26nbsp%3B%26nbsp%3Btuesday%20%3D%20monday%3B%0D%0A%7D%0D%0A&amp;source=Damian Brady's Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/&amp;title=I+like+this+codepath" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.damianbrady.com.au/2008/03/20/i-like-this-codepath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
