<?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>Soft-Speak</title>
	<atom:link href="http://iqwirty.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iqwirty.wordpress.com</link>
	<description>Manufacturing software.</description>
	<lastBuildDate>Tue, 18 Oct 2011 10:49:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iqwirty.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c26ab76d142d6e931e0c3c523d213d78?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Soft-Speak</title>
		<link>http://iqwirty.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iqwirty.wordpress.com/osd.xml" title="Soft-Speak" />
	<atom:link rel='hub' href='http://iqwirty.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Why I Like Windows PowerShell (Now)</title>
		<link>http://iqwirty.wordpress.com/2011/10/18/why-i-like-windows-powershell-now/</link>
		<comments>http://iqwirty.wordpress.com/2011/10/18/why-i-like-windows-powershell-now/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 10:49:45 +0000</pubDate>
		<dc:creator>Shannon K. Wagner</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[system administration]]></category>

		<guid isPermaLink="false">http://iqwirty.wordpress.com/?p=3741</guid>
		<description><![CDATA[I&#8217;ve had my eye on Windows PowerShell ever since it was released. I thought it was interesting, but just never had enough reason to take the time to start learning to use it. And then I started to get annoyed &#8230; <a href="http://iqwirty.wordpress.com/2011/10/18/why-i-like-windows-powershell-now/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3741&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had my eye on Windows PowerShell ever since it was released. I thought it was interesting, but just never had enough reason to take the time to start learning to use it. And then I started to get annoyed when the Microsoft Scripting Guys website started writing all their new scripts in PowerShell instead of VBScript. As a C# programmer, I wouldn&#8217;t often use a VBScript, but the examples on the scripting site were often the best way to learn how to solve an administrative task using the Microsoft APIs (which could easily be translated into C#). But I always found the syntax of PowerShell to be &#8220;funny&#8221; so it made it a bit harder for me to quickly read the examples.</p>
<p>Recently a project came up at my office which required me to learn some of the basics of PowerShell. And now it is my favorite new technology.</p>
<p>Here&#8217;s why&#8230;</p>
<ul>
<li><strong>Widely available</strong> &#8211; I am very conservative about adopting new technologies. For something as potentially immersive as PowerShell, I want to know that once I write scripts I will be able to use them wherever I go. Microsoft is full-on invested in PowerShell nowadays &#8211; all the new server products use it as the management shell. So chances are your operations staff are already using it and will be happy to let you help them write scripts (and run your own in the production environment).</li>
<li><strong>Piping of command output</strong> &#8211; Un*x based shells have always been famous for their piping features. Commands can be endless linked together to essentially build small programs out of tiny utilities in a single line of script. PowerShell takes that to the next (wonderful) level. In PowerShell any command can be piped to the next one, but you are no longer dealing with plain text &#8211; now you can pipe output as .NET objects, which gives you much greater control over who gets what and when.</li>
<li><strong>.NET integration</strong> &#8211; Since PowerShell is built on top of .NET and is truly .NET-focused, you can use it to script any .NET object you have ever used or created. That means all of your C# experience instantly makes you a mid-level PowerShell developer. And it even means that you can use PowerShell to play with and test your objects before writing them into a C# program. It&#8217;s kind of a casual place to write the first draft of your C# code, and in some cases you might find that there is no need to write C# at all since PowerShell solved your problem!</li>
<li><strong>Ad-hoc reporting</strong> &#8211; Most of my programming nowadays is based on ad-hoc reporting or moving data between various SQL databases, file systems, and Active Directory. Sometimes the best way to prototype that kind of programming is to do some exploratory work, and PowerShell gives you a whole boat-load of useful commands (they are called &#8220;cmdlets&#8221;) to do this type of work, including nice commands to prettify the output. Again, you might find that you solve your problem without ever firing up Visual Studio to compile C#.</li>
<li><strong>Shell profile customization</strong> &#8211; Windows has always given us some minor ways to customize the shell, but Un*x based shells have always far outpaced Windows in this area. I would say that gap is closed now. In PowerShell, you can easily add script to perform any initialization you want to setup your shell.  And you can even write a set of custom functions for common tasks so that those functions are always available to your shell.</li>
<li><strong>Consistent, clean, and modern API</strong> &#8211; The .NET API is great, but there are so many gaps in it (quickly being filled) and so many inconsistencies in the way various API groups are used that you can spend a lot of time reading documentation and examples. With PowerShell, Microsoft was able to build the entire API from scratch and the result has so much consistency (and useful libraries) that it makes it easy to complete a complex task quickly. The language&#8217;s dynamic typing makes it even easier to pass data between commands and not get snagged-up by learning too much syntax or having to look-up every parameter list. In many cases, the most natural thing you think to type turns out to be the default.</li>
<li><strong>Fun like Perl</strong> &#8211; Like Perl, PowerShell has this cool ability to impress friends and family by showing the neato one-line script you wrote which re-imaged 1000 computers, setup their profiles, created user accounts, and then downloaded all the software needed for the new profiles. I am exaggerating, but not much. Mostly, that is just a novelty, but it can be useful when exploring data or a new API. And anything that keeps your programming fun is also a good thing. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>Personally, I think spending a week with PowerShell will make any C# programmer into a better programmer, and will make any system administrator into a better administrator. The learning curve is steep for systems guys, but if you can get a more advanced scripter or a programmer to help you get past a few of the fundamental concepts you should be able to progress pretty quickly. Enjoy!</p>
<br />Filed under: <a href='http://iqwirty.wordpress.com/category/programming-2/'>Programming</a> Tagged: <a href='http://iqwirty.wordpress.com/tag/net/'>.net</a>, <a href='http://iqwirty.wordpress.com/tag/c/'>C#</a>, <a href='http://iqwirty.wordpress.com/tag/microsoft/'>microsoft</a>, <a href='http://iqwirty.wordpress.com/tag/powershell/'>powershell</a>, <a href='http://iqwirty.wordpress.com/tag/scripting/'>scripting</a>, <a href='http://iqwirty.wordpress.com/tag/system-administration/'>system administration</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iqwirty.wordpress.com/3741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iqwirty.wordpress.com/3741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iqwirty.wordpress.com/3741/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3741&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iqwirty.wordpress.com/2011/10/18/why-i-like-windows-powershell-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5af5708a5d92e3dbfd3f783ac5f251f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iqwirty</media:title>
		</media:content>
	</item>
		<item>
		<title>On the Benefit of Debug Logs</title>
		<link>http://iqwirty.wordpress.com/2011/09/30/on-the-benefit-of-debug-logs/</link>
		<comments>http://iqwirty.wordpress.com/2011/09/30/on-the-benefit-of-debug-logs/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 14:53:16 +0000</pubDate>
		<dc:creator>Shannon K. Wagner</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://iqwirty.wordpress.com/?p=3735</guid>
		<description><![CDATA[Happiness is&#8230; getting your hands on some hard data that you can use to methodically fix issues which have actually appeared as bugs during a live program run. Filed under: Programming, Software Development Tagged: debugging, productivity, programming, testing<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3735&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happiness is&#8230; getting your hands on some hard data that you can use to methodically fix issues which have actually appeared as bugs during a live program run. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://iqwirty.wordpress.com/category/programming-2/'>Programming</a>, <a href='http://iqwirty.wordpress.com/category/software-development/'>Software Development</a> Tagged: <a href='http://iqwirty.wordpress.com/tag/debugging/'>debugging</a>, <a href='http://iqwirty.wordpress.com/tag/productivity/'>productivity</a>, <a href='http://iqwirty.wordpress.com/tag/programming/'>programming</a>, <a href='http://iqwirty.wordpress.com/tag/testing/'>testing</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iqwirty.wordpress.com/3735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iqwirty.wordpress.com/3735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iqwirty.wordpress.com/3735/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3735&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iqwirty.wordpress.com/2011/09/30/on-the-benefit-of-debug-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5af5708a5d92e3dbfd3f783ac5f251f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iqwirty</media:title>
		</media:content>
	</item>
		<item>
		<title>Debugging Valley</title>
		<link>http://iqwirty.wordpress.com/2011/09/29/debugging-valley/</link>
		<comments>http://iqwirty.wordpress.com/2011/09/29/debugging-valley/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 20:04:02 +0000</pubDate>
		<dc:creator>Shannon K. Wagner</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[work habits]]></category>

		<guid isPermaLink="false">http://iqwirty.wordpress.com/?p=3726</guid>
		<description><![CDATA[Many times I will get near the end of a software project and hit a real low. I&#8217;ve been debugging along the way, rewriting classes and methods as I realize that some of my original assumptions were incorrect or not &#8230; <a href="http://iqwirty.wordpress.com/2011/09/29/debugging-valley/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3726&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many times I will get near the end of a software project and hit a real low. I&#8217;ve been debugging along the way, rewriting classes and methods as I realize that some of my original assumptions were incorrect or not very useful, and I&#8217;m at that &#8220;final mile&#8221; where I&#8217;ve just got to run the darned thing through again, step through all my code, make a few design changes that I&#8217;ve already pondered over so much that the changes are obvious, and finish it up. But the actual coding will be very tedious. Loathsome, even.</p>
<p>I just can&#8217;t get my head into it again.</p>
<p>That&#8217;s what I call a &#8220;debugging valley&#8221; &#8211; a great vast empty space (this is not like one of those nice valleys you might see in Vermont) where I&#8217;m stuck and just don&#8217;t feel like climbing any of the many paths that I could take to get out.</p>
<p>My best advice for myself? Just keep writing &#8211; the same way you get past writer&#8217;s block in fiction, essay, or any type of prose. Just keep going &#8211; tweaking, editing, revising, writing some new stuff &#8211; until your &#8220;voice&#8221; comes back to you. And then finish the darned project! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://iqwirty.wordpress.com/category/programming-2/'>Programming</a>, <a href='http://iqwirty.wordpress.com/category/software-development/'>Software Development</a> Tagged: <a href='http://iqwirty.wordpress.com/tag/debugging/'>debugging</a>, <a href='http://iqwirty.wordpress.com/tag/work-habits/'>work habits</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iqwirty.wordpress.com/3726/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iqwirty.wordpress.com/3726/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iqwirty.wordpress.com/3726/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3726&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iqwirty.wordpress.com/2011/09/29/debugging-valley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5af5708a5d92e3dbfd3f783ac5f251f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iqwirty</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Library or Software Application?</title>
		<link>http://iqwirty.wordpress.com/2011/09/23/software-library-or-software-application/</link>
		<comments>http://iqwirty.wordpress.com/2011/09/23/software-library-or-software-application/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 19:45:22 +0000</pubDate>
		<dc:creator>Shannon K. Wagner</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">https://iqwirty.wordpress.com/2011/09/23/software-library-or-software-application/</guid>
		<description><![CDATA[When I started my career as a software developer, I did a lot of reading. In the end, I would say it didn&#8217;t help me nearly as much as actually writing software did. In retrospect, I was reading the wrong &#8230; <a href="http://iqwirty.wordpress.com/2011/09/23/software-library-or-software-application/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3725&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I started my career as a software developer, I did a lot of reading.</p>
<p>In the end, I would say it didn&#8217;t help me nearly as much as actually writing software did. In retrospect, I was reading the wrong stuff. I was getting a lot of specific advice from a lot of experts, but without enough context to make good decisions.</p>
<p>One area in particular where I was misguided had to do with best practices, coding style, and architecture related to software libraries. I would be writing a simple application and get very bogged down in designing it the way one was expected to design a reusable software component or library. I tried to make everything reusable and well-documented, even though the truth is, I was mostly writing one-off applications and prototypes and there was no benefit to trying to follow a lot of the recommended design principles.</p>
<p>My advice to my junior self? You are either writing an application or a software library. Figure out which one, and do it.</p>
<br />Filed under: <a href='http://iqwirty.wordpress.com/category/software-development/'>Software Development</a> Tagged: <a href='http://iqwirty.wordpress.com/tag/advice/'>advice</a>, <a href='http://iqwirty.wordpress.com/tag/learning/'>learning</a>, <a href='http://iqwirty.wordpress.com/tag/programming/'>programming</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iqwirty.wordpress.com/3725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iqwirty.wordpress.com/3725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iqwirty.wordpress.com/3725/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3725&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iqwirty.wordpress.com/2011/09/23/software-library-or-software-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5af5708a5d92e3dbfd3f783ac5f251f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iqwirty</media:title>
		</media:content>
	</item>
		<item>
		<title>What Soft-Speak?</title>
		<link>http://iqwirty.wordpress.com/2011/09/23/what-soft-speak/</link>
		<comments>http://iqwirty.wordpress.com/2011/09/23/what-soft-speak/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 16:35:58 +0000</pubDate>
		<dc:creator>Shannon K. Wagner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://iqwirty.wordpress.com/?p=3721</guid>
		<description><![CDATA[The title of this blog is semi-intentionally vague. That&#8217;s because I am a &#8220;serial blogger&#8221; &#8211; I kind of change on a whim what the point of my blogging effort is pretty frequently. For the most part, my generalized and &#8230; <a href="http://iqwirty.wordpress.com/2011/09/23/what-soft-speak/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3721&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The title of this blog is semi-intentionally vague.</p>
<p>That&#8217;s because I am a &#8220;serial blogger&#8221; &#8211; I kind of change on a whim what the point of my blogging effort is pretty frequently. For the most part, my generalized and personal blogging is over at <a href="http://www.workingsandbox.com/">Working Sandbox</a>. But I really want to have an active blog here also on WordPress.com, because I think it is important to be an active user of the WordPress.com-hosted service, just to round-out my WordPress experience.</p>
<p>So I am planning (fingers crossed!) to write a blog here about my experience as a software developer&#8230; something like that. In the future, that might change. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://iqwirty.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iqwirty.wordpress.com/3721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iqwirty.wordpress.com/3721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iqwirty.wordpress.com/3721/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iqwirty.wordpress.com&amp;blog=9470485&amp;post=3721&amp;subd=iqwirty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iqwirty.wordpress.com/2011/09/23/what-soft-speak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5af5708a5d92e3dbfd3f783ac5f251f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iqwirty</media:title>
		</media:content>
	</item>
	</channel>
</rss>
