<?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>Wicked Coding</title>
	<atom:link href="http://wickedcoding.fireflylogic.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wickedcoding.fireflylogic.com</link>
	<description>Coding for fun and profit.</description>
	<lastBuildDate>Wed, 08 Feb 2012 21:52:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wickedcoding.fireflylogic.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/e4bb37ed1c0d47561e5b84d246b42f3f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Wicked Coding</title>
		<link>http://wickedcoding.fireflylogic.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wickedcoding.fireflylogic.com/osd.xml" title="Wicked Coding" />
	<atom:link rel='hub' href='http://wickedcoding.fireflylogic.com/?pushpress=hub'/>
		<item>
		<title>An old school bug</title>
		<link>http://wickedcoding.fireflylogic.com/2011/08/25/an-old-school-bug/</link>
		<comments>http://wickedcoding.fireflylogic.com/2011/08/25/an-old-school-bug/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 15:55:52 +0000</pubDate>
		<dc:creator>Christopher McPherson</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://wickedcoding.fireflylogic.com/?p=42</guid>
		<description><![CDATA[I ran across a bug today that threw me for a few minutes. It reminded me it’s always good to get refreshers on the basics even when (maybe especially when) you’ve been doing it for years. Here’s a boiled down version of the code that was misbehaving: 01: Filter=(reader,field,paymentDescription)=&#62; 02: { 03: if (paymentDescription != [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=42&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran across a bug today that threw me for a few minutes. It reminded me it’s always good to get refreshers on the basics even when (maybe especially when) you’ve been doing it for years.</p>
<p>Here’s a boiled down version of the code that was misbehaving:</p>
<div style="background-color:#ffffaa;color:#0000ff;margin-left:30px;margin-right:30px;border:solid 1px #000;padding:5px 30px;">
<pre style="margin:0;padding:0;">01: Filter=(reader,field,paymentDescription)=&gt;
02: {
03: if (paymentDescription != "76")
04:        return null;
05:        ...
06: }</pre>
</div>
<p>This code is from a tool that reads data from a data reader and outputs that data to a stream in a specific format for consumption by a third party. Most items are simply mapped from a field to a position in the stream but in some cases more complex formatting or parsing rules need to be applied. Lambda expressions provide a great solution for this scenario. We have a few generic field mapping classes that allow us to “plug in” specific formatting or parsing rules, while still reusing the base mapping classes. It works great and there are dozens of these that apply the formatting rules to the various record and field types.</p>
<p>BUT… this code returns null even when paymentDescription has the value of “76”! (What the?!) I’ve been doing this long enough not to immediately assume the compiler has somehow broken, but I have to admit it took me a minute or two get the idea of what was going on. Here’s a hint…if this code were written as a normal method it would look something like this:</p>
<div style="background-color:#ffffaa;color:#0000ff;margin-left:30px;margin-right:30px;border:solid 1px #000;padding:5px 30px;">
<pre style="margin:0;padding:0;">01: public object Filter(IDataReader reader,
02:    string field,
03:    object paymentDescription)
04: {
05: if (paymentDescription != "76")
06:        return null;
07:        ...
08: }</pre>
</div>
<p>If you don’t see it already, the problem is that the comparison between paymentDescription and the literal string “76” is a comparison between an object and string, so it’s asking if the two are the same spot in memory rather than if their content is the same. The solution is to cast paymentDescription (which we know is a string in this case) to a string then the comparison works as intended.</p>
<p>The lambda syntax hid some of the details that I now realize I use as touchstones in my mental debugging checklist. If I’d seen that paymentDescription was an object and not a string, I’d have hit on the problem right away (that’s my story and I’m sticking to it).</p>
<p>This little bug, illustrates something that I’ve noticed a lot lately. When C# was first designed, one of the driving principles was readability and avoiding the syntaxes and mechanisms that had caused problems for C, C++ and other C-based languages. It seems that principle has taken a lower priority in favor of delivering more powerful and modern language features. That’s probably a good or at least necessary thing, but it means that more care has to be taken to deal with the more nuanced and cryptic syntaxes. And I need to update my debugging checklist.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cmcpherson.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cmcpherson.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cmcpherson.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=42&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wickedcoding.fireflylogic.com/2011/08/25/an-old-school-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a455c74723da2c921f48b3ae7c064ed5?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Mocking and TDD</title>
		<link>http://wickedcoding.fireflylogic.com/2010/04/22/mocking-and-tdd/</link>
		<comments>http://wickedcoding.fireflylogic.com/2010/04/22/mocking-and-tdd/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 20:39:32 +0000</pubDate>
		<dc:creator>Christopher McPherson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wickedcoding.fireflylogic.com/?p=37</guid>
		<description><![CDATA[I just started a new project with a repeat Firefly Logic client. I&#8217;m working with two very enthusiastic young developers on my team, and I get to introduce them to Moq and mocking as part of our unit testing strategy.  Both of these developers are new to mocking but they seem excited to jump in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=37&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just started a new project with a repeat Firefly Logic client. I&#8217;m working with two very enthusiastic young developers on my team, and I get to introduce them to <a href="http://code.google.com/p/moq/">Moq</a> and mocking as part of our unit testing strategy.  Both of these developers are new to mocking but they seem excited to jump in with both feet. I reached out to Moq initially a while back when I found the other mocking frameworks overwhelming. I&#8217;m looking forward to seeing how quickly my team picks it up. I&#8217;m hoping we can use the cool, geeky wow factor in Moq to help sneak in some best practice habits for TDD in general. It&#8217;s also a good leaping off point for a practical introduction to lambda expressions, which seguays nicely into linq.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cmcpherson.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cmcpherson.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cmcpherson.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=37&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wickedcoding.fireflylogic.com/2010/04/22/mocking-and-tdd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a455c74723da2c921f48b3ae7c064ed5?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Phone 7 / Mix10</title>
		<link>http://wickedcoding.fireflylogic.com/2010/03/15/windows-phone-7-mix10/</link>
		<comments>http://wickedcoding.fireflylogic.com/2010/03/15/windows-phone-7-mix10/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 15:23:19 +0000</pubDate>
		<dc:creator>Christopher McPherson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wickedcoding.fireflylogic.com/?p=32</guid>
		<description><![CDATA[Our company, Firefly Logic has been wrestling with adding mobile capability to our repertoire. In an ideal world, we&#8217;d be able to use familiar technology on a platform that people actually want to use. So far it&#8217;s been tough on both counts for .NET developers. The iPhone changed all the rules and over the last [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=32&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Our company, <a href="http://fireflylogic.com">Firefly Logic</a> has been wrestling with adding mobile capability to our repertoire. In an ideal world, we&#8217;d be able to use familiar technology on a platform that people actually want to use. So far it&#8217;s been tough on both counts for .NET developers. The iPhone changed all the rules and over the last few years, nearly all of our clients requesting mobile software are specifically interested in the iPhone. The iPhone is a capable and compelling platform and people certainly want to use it.That&#8217;s why we&#8217;ve made the investment in learning to write applications for the platform. I think we&#8217;d call it a success, but a hard fought one. Objective-C, the language you use to write applications for the iPhone has a steep learning curve for .NET developers and the application frameworks are completely new unless you&#8217;ve done some Mac programming in the past.</p>
<p>All of this is why we&#8217;re so excited about Microsoft&#8217;s upcoming Windows Phone 7. As I type this, I&#8217;m sitting in the convention center at this year&#8217;s MIX conference in Las Vegas where Microsoft is planning to reveal the new platform to developers and designers. The first session is titled, &#8220;Changing Our Game&#8221;.</p>
<p>The rumor is that this platform is complete departure from the past and a serious contender in the mobile space. I hope so. It would be huge to have a serious  .NET option in the mobile space.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cmcpherson.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cmcpherson.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cmcpherson.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=32&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wickedcoding.fireflylogic.com/2010/03/15/windows-phone-7-mix10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a455c74723da2c921f48b3ae7c064ed5?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2010 Multi Line Insertion Point</title>
		<link>http://wickedcoding.fireflylogic.com/2010/03/11/visual-studio-2010-multi-line-insertion-point/</link>
		<comments>http://wickedcoding.fireflylogic.com/2010/03/11/visual-studio-2010-multi-line-insertion-point/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 22:52:21 +0000</pubDate>
		<dc:creator>Christopher McPherson</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[dot net]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://wickedcoding.fireflylogic.com/?p=15</guid>
		<description><![CDATA[I ran across a really cool little feature of Visual Studio 2010 the other day: The ability to select a rectangular block in a VS text editor as been around for quite a while. If you alt+drag you can select by blocks rather than individual lines: VS 2010 adds a neat little twist to this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=15&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran across a really cool little feature of Visual Studio 2010 the other day:</p>
<p>The ability to select a rectangular block in a VS text editor as been around for quite a while. If you alt+drag you can select by blocks rather than individual lines:</p>
<p><a href="http://cmcpherson.files.wordpress.com/2010/03/cap1.png"><img class="alignnone size-full wp-image-17" title="cap1" src="http://cmcpherson.files.wordpress.com/2010/03/cap1.png?w=450&#038;h=256" alt="" width="450" height="256" /></a></p>
<p>VS 2010 adds a neat little twist to this feature: multi line insertion points. So if I select this:</p>
<p><a href="http://cmcpherson.files.wordpress.com/2010/03/cap2.png"><img class="alignnone size-full wp-image-18" title="cap2" src="http://cmcpherson.files.wordpress.com/2010/03/cap2.png?w=450&#038;h=235" alt="" width="450" height="235" /></a></p>
<p>and type<strong> s-t-r-i-n-g</strong>, this is the result:</p>
<p><a href="http://cmcpherson.files.wordpress.com/2010/03/cap3.png"><img class="alignnone size-full wp-image-19" title="cap3" src="http://cmcpherson.files.wordpress.com/2010/03/cap3.png?w=450&#038;h=238" alt="" width="450" height="238" /></a></p>
<p>you can also alt-drag an empty box to create a multi-line insertion point:</p>
<p><a href="http://cmcpherson.files.wordpress.com/2010/03/cap4.png"><img class="alignnone size-full wp-image-20" title="cap4" src="http://cmcpherson.files.wordpress.com/2010/03/cap4.png?w=450&#038;h=163" alt="" width="450" height="163" /></a></p>
<p>Cool&#8230;</p>
<p>-McP</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cmcpherson.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cmcpherson.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cmcpherson.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=15&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wickedcoding.fireflylogic.com/2010/03/11/visual-studio-2010-multi-line-insertion-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a455c74723da2c921f48b3ae7c064ed5?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>

		<media:content url="http://cmcpherson.files.wordpress.com/2010/03/cap1.png" medium="image">
			<media:title type="html">cap1</media:title>
		</media:content>

		<media:content url="http://cmcpherson.files.wordpress.com/2010/03/cap2.png" medium="image">
			<media:title type="html">cap2</media:title>
		</media:content>

		<media:content url="http://cmcpherson.files.wordpress.com/2010/03/cap3.png" medium="image">
			<media:title type="html">cap3</media:title>
		</media:content>

		<media:content url="http://cmcpherson.files.wordpress.com/2010/03/cap4.png" medium="image">
			<media:title type="html">cap4</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World.</title>
		<link>http://wickedcoding.fireflylogic.com/2009/05/24/hello-world/</link>
		<comments>http://wickedcoding.fireflylogic.com/2009/05/24/hello-world/#comments</comments>
		<pubDate>Mon, 25 May 2009 02:55:46 +0000</pubDate>
		<dc:creator>Christopher McPherson</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[DeepZoom]]></category>
		<category><![CDATA[Nashville]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://cmcpherson.wordpress.com/?p=4</guid>
		<description><![CDATA[Hello world. Welcome to my first blog post.  My name is Chris McPherson. I&#8217;m a software engineer and one of the founding partners of Firefly Logic, a young software company in Nashville, TN. If you&#8217;re in business in Nashville, chances are you&#8217;re directly or indirectly involved in one of a handful of the big industries [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=4&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello world. Welcome to my first blog post. </p>
<p>My name is Chris McPherson. I&#8217;m a software engineer and one of the founding partners of <a title="Firefly Logic" href="http://www.fireflylogic.com">Firefly Logic</a>, a young software company in Nashville, TN. If you&#8217;re in business in Nashville, chances are you&#8217;re directly or indirectly involved in one of a handful of the big industries that thrive here. The most prominent from where I sit are healthcare, entertainment and publishing. In the healthcare arena Nashville has <a href="http://hcahealthcare.com">HCA Healthcare,</a> one of the largest healthcare companies in the country, <a href="http://www.mc.vanderbilt.edu/">Vanderbilt Medical Center and the University</a>, <a href="http://www.mmc.edu/">Meharry Medical College</a> and countless others. On the entertainment side, we have the <a href="http://cmaworld.com">Country Music Association</a>, <a href="http://cmt.com">CMT</a>, <a href="http://grandoleopry.com">The Grand Ole Opry</a>, and <a href="http://en.wikipedia.org/wiki/Music_Row">Historic Music Row</a> where it all happens. For publishing there&#8217;s <a href="http://www.thomasnelson.com/">Thomas Nelson</a>, the leading publisher of bibles and there are several other large religious publishing houses headquartered here. </p>
<p>When you&#8217;re a small independent software shop in a place like this, the opportunity to ply your trade in a wide variety of venues is enormous. And our happy band of intrepid byte crunchers has been lucky enough to be right in the thick of all this awesomeness over these last years.</p>
<p>I first met my co-founders while doing a extended tour of duty at HCA. We formed our company during that time and since then we&#8217;ve worked for the likes of CMA, the Grand Ole Opry, <a href="http://www.celljournalist.com">Cell Journalist</a>, <a href="http://hotwater.com">AO Smith</a>, <a href="http://www.slb.com/">Shlumberger</a> and many others. Along the way we&#8217;ve seen a lot, and learned a ton. I hope all this will translate to some occasionally interesting blog posts about technology and if that doesn&#8217;t work out, I can always talk about the places to score some killer <a href="http://www.sitarnashville.com/">Indian food</a> or maybe <a href="http://www.smokesandbrews.com/">a good cigar</a>.</p>
<p>Right now, we&#8217;re in the middle of a large effort with Microsoft and CMA on a project for the upcoming CMA Music Fest, using Microsoft&#8217;s Silverlight and DeepZoom technologies. So, there&#8217;ll be a few posts about that I&#8217;m sure.</p>
<p>Anyway, thanks for dropping in and stay tuned, I might just say something interesting.</p>
<p>-Chris</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cmcpherson.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cmcpherson.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cmcpherson.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wickedcoding.fireflylogic.com&amp;blog=5373185&amp;post=4&amp;subd=cmcpherson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wickedcoding.fireflylogic.com/2009/05/24/hello-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a455c74723da2c921f48b3ae7c064ed5?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
	</channel>
</rss>
