<?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>igNew</title>
	<atom:link href="http://ignew.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ignew.com</link>
	<description>Software Development and Consulting</description>
	<lastBuildDate>Thu, 10 May 2012 16:08:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>WinDirStat Here</title>
		<link>http://ignew.com/2012/04/04/windirstat-here/</link>
		<comments>http://ignew.com/2012/04/04/windirstat-here/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 14:33:59 +0000</pubDate>
		<dc:creator>Michael Thornberry</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=1020</guid>
		<description><![CDATA[&#160; If you’re not familiar with WinDirStat, you should be.&#160; It’s a fabulous little utility that makes it a cinch to visualize the amount of drive space your files are taking up.&#160; It’s currently listed on Scott Hanselman&#8217;s 2011 Ultimate Developer and Power Users Tool List for Windows (and has been on his list of [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>If you’re not familiar with <a href="http://windirstat.info/">WinDirStat</a>, you should be.&nbsp; It’s a fabulous little utility that makes it a cinch to visualize the amount of drive space your files are taking up.&nbsp; It’s currently listed on <a href="http://www.hanselman.com/blog/ScottHanselmans2011UltimateDeveloperAndPowerUsersToolListForWindows.aspx">Scott Hanselman&#8217;s 2011 Ultimate Developer and Power Users Tool List for Windows</a> (and has been on his list of top tools for several years).&nbsp; Here’s a screeny to get you excited.</p>
<p><img alt="Screenshot" src="http://windirstat.info/images/windirstat.jpg"></p>
<p>At the top you see your folders, sorted by size, largest to smallest.&nbsp; At the bottom is the really cool part.&nbsp; Is shows you all of your files represented by rectangles.&nbsp; The larger the rectangle, the larger the file.&nbsp; When you click on a rectangle, it finds the file in the top section so you can see what it is and how much space it’s using.&nbsp; This makes it ridiculously easy to find and delete those huge files that you may have forgotten you have (like old <a href="http://www.microsoft.com/events/mix/">MIX</a> videos for instance).</p>
<p>In the screenshot, the users appears to be running WinDirStat to scan the whole drive, but you can specify a folder name to only search that folder.</p>
<p><a href="http://ignew.com/wp-content/uploads/2012/04/image.png"><img style="border-bottom: 0px;border-left: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="image" src="http://ignew.com/wp-content/uploads/2012/04/image_thumb.png" width="361" height="278"></a></p>
<p>This is the part that I felt the need to tweak.&nbsp; As it is, every time you want to scan a folder, you have to open <strong>WinDirStat</strong> and fill in the information on that dialog.&nbsp; What I wanted was a way I could just right-click a folder in <strong>Explorer</strong> and select a <em>WinDirStat Here</em> command and have it run on that folder.</p>
<p>Here’s how I did it.</p>
<ol>
<li>Go to <em>Start –&gt; Run</em> (or window-R) and run <strong>RegEdit</strong> (<em>of course, you should already be aware that editing your registry can be dangerous so if something breaks, you were warned</em>).&nbsp; Drill down to <strong>HKEY_CLASSES_ROOT\Directory\shell</strong>.&nbsp; </li>
<li>Right-click on shell and select the option <strong>New –&gt; Key</strong> and give it a name.&nbsp; I named mine <strong>windirstat</strong>.</li>
<li>Look to the right-hand side of the window and double click the <strong>(Default)</strong> string and set it’s name to <strong>WinDirStat Here</strong> (or whatever you want it to show up as in the context menu).</li>
<li>Now right-click the <strong>windirstat</strong> key and add a <strong>New –&gt; Key</strong>.&nbsp; Name this one <strong>command</strong>.</li>
<li>Select the new <strong>command</strong> key and look at the right-hand side of the window.&nbsp; Double-click the <strong>(Default)</strong> value and set it’s Value data to </li>
<li>&#8220;C:\Program Files (x86)\WinDirStat\WinDirStat.exe&#8221; &#8220;%1&#8243;</li>
<li>and include the double-quotes (you may, of course, have to adjust the path to <strong>windirstat.exe</strong> based on your particular setup).</li>
<p>That’s it.&nbsp; Now just open an Explorer window and right-click on a folder.</ol>
<p><a href="http://ignew.com/wp-content/uploads/2012/04/image1.png"><img style="border-bottom: 0px;border-left: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="image" src="http://ignew.com/wp-content/uploads/2012/04/image_thumb1.png" width="229" height="407"></a></p>
<p>For reference, here’s my exported .reg file containing all of the above.&nbsp; You can save this in a new text file and right-click it to merge it into your registry (again, you’ve been warned that bad things can happen if you muck with the registry).</p>
<p>&nbsp;</p>
<p>Windows Registry Editor Version 5.00</p>
<p><strong>[HKEY_CLASSES_ROOT\Directory\shell\windirstat]<br /></strong>@=&#8221;WinDirStat Here&#8221;</p>
<p><strong>[HKEY_CLASSES_ROOT\Directory\shell\windirstat\command]<br /></strong>@=&#8221;\&#8221;C:\\Program Files (x86)\\WinDirStat\\windirstat.exe\&#8221; \&#8221;%1\&#8221;"</p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/04/04/windirstat-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Process Is Important</title>
		<link>http://ignew.com/2012/03/27/process-is-important/</link>
		<comments>http://ignew.com/2012/03/27/process-is-important/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 15:46:52 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=1010</guid>
		<description><![CDATA[We gathered last week over lunch to hear our own Mike Hurd describe his new role in the company which involves managing process for how we do work. Processes for any company are important; but when you are growing quickly in a fast moving industry like software, it&#8217;s very important for everyone to be working [...]]]></description>
			<content:encoded><![CDATA[<p>We gathered last week over lunch to hear our own <a href="http://ignew.com/about/team/mike-hurd/">Mike Hurd</a> describe his new role in the company which involves managing process for how we do work.<br />
<a href="http://ignew.com/wp-content/uploads/2012/03/ignew-team.jpg"><img src="http://ignew.com/wp-content/uploads/2012/03/ignew-team-300x224.jpg" alt="" title="ignew team" width="300" height="224" class="alignright size-medium wp-image-1011" /></a><br />
Processes for any company are important; but when you are growing quickly in a fast moving industry like software, <span id="more-1010"></span>it&#8217;s very important for everyone to be working according to the same set of standards.  Mike has stepped up to the challenge and his background in software consulting makes him a natural fit for the position.  Ultimately this move will make us a stronger team and will allow us to provide even more up front advisory consulting to our clients before we engage in a project with them.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/03/27/process-is-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Rid of Visual Studio&#8217;s F1 Help</title>
		<link>http://ignew.com/2012/03/21/get-rid-of-visual-studios-f1-help/</link>
		<comments>http://ignew.com/2012/03/21/get-rid-of-visual-studios-f1-help/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 06:26:46 +0000</pubDate>
		<dc:creator>Michael Thornberry</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft Development]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=981</guid>
		<description><![CDATA[&#160; I happened across a simple fix to an annoying problem today and I thought I’d share.&#160; Have you ever been coding away in Visual Studio and reached for the Escape key and accidentally fat-fingered the F1 key?&#160; Your mileage may vary, but for me, that’s a good time to go get a coke or [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I happened across a simple fix to an annoying problem today and I thought I’d share.&nbsp; Have you ever been coding away in Visual Studio and reached for the Escape key and accidentally <a href="http://en.wiktionary.org/wiki/fat-finger">fat-fingered</a> the F1 key?&nbsp; Your mileage may vary, but for me, that’s a good time to go get a coke or a sandwich or catch up on blog reading as Visual Studio screeches to a halt while the Help system cranks and grinds and finally loads up – only to get an instant close since I don’t actually need it.&nbsp; Never do, in fact.&nbsp; Don’t get me wrong, the help system for .Net is stellar if you’re looking for a class reference, but I usually don’t care what the foo parameter in Bar class does so much as “Is it better to use foo or bar in my situation?”.&nbsp; My help system is <a href="https://www.google.com/">google</a>.&nbsp; That’s what hooks me up to pertinent answers to my burning questions at <a href="http://stackoverflow.com/">StackOverflow</a> and various <a href="http://www.hanselman.com/blog/">pro</a> <a href="http://www.codinghorror.com/blog/">blog</a> <a href="http://geekswithblogs.net/BlackRabbitCoder/Default.aspx">posts</a>.&nbsp; And when I do to know about that foo in the Bar, I can just get it directly (via google) from the <a href="http://msdn.microsoft.com/en-us/library">MSDN</a> website.</p>
<p>Now, I’ve known for several version of Visual Studio that I can re-bind pretty much any key I want, but I never put the 2 and the 2 together and realized that I can actually <em>unbind</em> keys as well.&nbsp; Yep, that’s right.&nbsp; You can just remove the binding on the F1 key and kiss that annoying Help goodbye.&nbsp; It’s under <em>Tools</em> / <em>Options</em> –&gt; <em>Environment</em> –&gt; <em>Keyboard</em>.&nbsp; It’s the <strong>Help.F1Help</strong> option.</p>
<p>Here’s a handy graphic.</p>
<p><a href="http://ignew.com/wp-content/uploads/2012/03/image.png"><img style="border-right-width: 0px;padding-left: 0px;width: 100%;padding-right: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px;padding-top: 0px" border="0" alt="image" src="http://ignew.com/wp-content/uploads/2012/03/image_thumb.png" width="620" height="359"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/03/21/get-rid-of-visual-studios-f1-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Outsource Software Development (part 1)</title>
		<link>http://ignew.com/2012/03/13/how-to-outsource-software-development-part-1/</link>
		<comments>http://ignew.com/2012/03/13/how-to-outsource-software-development-part-1/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 18:39:22 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Microsoft Development]]></category>
		<category><![CDATA[outsourcing]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=959</guid>
		<description><![CDATA[This post is intended to help companies and individuals understand their options when they are faced with getting a quality software application/website built on time and on budget using a third party. This is part 1 of a 2 part series in exploring the advantages and disadvantages associated with local outsourcing, offshoring, nearshoring and onshoring [...]]]></description>
			<content:encoded><![CDATA[<p>This post is intended to help companies and individuals understand their options when they are faced with getting a quality software application/website built on time and on budget using a third party.</p>
<p>This is part 1 of a 2 part series in exploring the advantages and disadvantages associated with local outsourcing, offshoring, nearshoring and onshoring of software development. I will explain what all these terms mean as well as when it&#8217;s the right time to use a local company or go offshore/nearshore for building your software application/website.</p>
<p>*Disclaimer &#8211; This post is based on my own experiences and observations while working in the business of software development.</p>
<h2>The Problem</h2>
<p>You have a new software application/website you want to build or an existing application you need to enhance and you&#8217;ve chosen to have it built by a third party.  Whether your are an established company, small business or an individual, you probably fall into 1 of these 3 categories: <span id="more-959"></span></p>
<p>1) You&#8217;re operating within a company and your existing development team/IT business unit is already tasked (sometimes overwhelmed) with keeping the production systems running and maintained. Translation &#8211; You have a team but no ability to scale it without worrying about production systems. </p>
<p>2) You&#8217;re operating within a company with limited (or no) development/IT resources but have been tasked with bringing a new technology product to market. Translation &#8211; Build something with limited/no technical employees.</p>
<p>3) You are an individual or small startup, you don&#8217;t know how software is developed, you have a bootstrap budget, but you have a great idea that people want. Translation &#8211; You think you can be the next Mark Zuckerburg if you only had a team to build it.</p>
<p>All 3 of these categories have different challenges, but they are all faced with one common problem: Do I try to find someone locally to help me or do I look offshore, nearshore or onshore?</p>
<p>So what&#8217;s the difference between outsourcing, offshoring, nearshoring and onshoring?</p>
<p><strong>Outsourcing</strong> is the generalized term for contracting with a company external to your own to help complete a task for your company. It is most commonly used to described IT operations, software development, data entry and customer support but could also be used to describe the company who cleans your office building. Local outsourcing, offshore, nearshore and onshore companies are all forms of outsourcing, but they all have their own advantages and disadvantages. We&#8217;ll talk about those in part 2.</p>
<p><strong>Local outsourcing</strong> is finding a team of software developers/consultants (or an individual developer) who is perfoming work in the same geographic city as your company. An example: your company is in Louisville, KY and you are working with a team of developers that are all present and working in Louisville, KY. *Just as a sidenote here; sometimes you will find local companies who appear to have a team of developers who are also local, but when you start working with them, you realize that their team consists of sub-contractors or even offshore teams that support their deal-flow.  This situation is virtually the same as going offshore UNLESS the local person (front man) is a seasond software professional with references and credentials on working with remote teams and shipping quatlity software on time and on budget. This can work sometimes, but generally something to ask about up front and get specific examples of their past work.</p>
<p><strong>Offshoring</strong> is contracting with a team of software developers in another non-adjacent country than your own. The most common offshoring countries for US companies are India and Eastern European countries.</p>
<p><strong>Nearshoring</strong> is the concept of contracting with a team of software developers in an adjacent country.  Example: your company is in the US and you are working with a team in Central or South America.</p>
<p>There is another type of outsourcing referred to as <strong>onshoring</strong> which is contracting with a software development team that is in your country, but works in a different city/state than your company is in.  Example: your company is in Louisville, KY but you are working with a team in Chicago or you are working with a team that is scattered in multiple cities throughout the US.</p>
<p>All of these are a type of outsourcing, so sometimes you will hear people say &#8220;<em>we outsourced that application</em>&#8220;; but really that could mean that they used someone locally, someone in another city in their country, or someone outside of their country (nearshore or offshore).</p>
<p>Complicated I know, but also very important to understand these options when you are getting ready to spend money building a product.</p>
<p><em>In part 2 of this series I&#8217;ll describe the key factors for choosing how to get your application or project built. I&#8217;ll have some questions you can ask yourself to determine which path is best for you and the advantages and disadvantages of those choices. Look for part 2 to drop next week.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/03/13/how-to-outsource-software-development-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodepaLOUsa 2012</title>
		<link>http://ignew.com/2012/01/27/codepalousa-2012/</link>
		<comments>http://ignew.com/2012/01/27/codepalousa-2012/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 19:18:36 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft Development]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=935</guid>
		<description><![CDATA[The time is here again in Louisville to gather 500 of the best software developers from around the country for a few days in March. We are a proud sponsor of CodepaLOUsa again this year and are looking forward to hosting 58 guest speakers covering almost 70 breakout sessions. Tickets are going fast, so head [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codepalousa.com/"><img src="http://ignew.com/wp-content/uploads/2012/01/codepalousa1.png" alt="" title="codepalousa" width="225" height="55" class="alignleft size-full wp-image-938" /></a>The time is here again in Louisville to gather 500 of the best software developers from around the country for a few days in March.</p>
<p>We are a proud sponsor of <a href="http://www.codepalousa.com/">CodepaLOUsa</a> again this year and are looking forward to hosting 58 guest speakers covering almost 70 breakout sessions.  Tickets are going fast, so head on over and get yours while you can. If you are interested in sponsoring, let me know.</p>
<p>Also, a big shout to <a href="http://www.linkedin.com/in/jaygarmon">Jay Garmon</a> at <a href="http://louisvilledigital.org/louisville-tech/reintroducing-codepalousa-the-most-awesome-louisville-centric-software-conference-youve-never-heard-of/">Louisville Digital Association</a> for helping us get the word out to his audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/01/27/codepalousa-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Software is Made</title>
		<link>http://ignew.com/2012/01/19/how-software-is-made/</link>
		<comments>http://ignew.com/2012/01/19/how-software-is-made/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:17:18 +0000</pubDate>
		<dc:creator>Dan Murphy</dc:creator>
				<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=929</guid>
		<description><![CDATA[I&#8217;m pretty sure the 8 year old didn&#8217;t draw this.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pretty sure the 8 year old didn&#8217;t draw <a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=2494">this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2012/01/19/how-software-is-made/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best JavaScript sites of 2011</title>
		<link>http://ignew.com/2011/12/21/best-javascript-sites-of-2011/</link>
		<comments>http://ignew.com/2011/12/21/best-javascript-sites-of-2011/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 15:49:19 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=926</guid>
		<description><![CDATA[.NET Magazine&#8217;s 20 best JavaScript sites of 2011]]></description>
			<content:encoded><![CDATA[<p>.NET Magazine&#8217;s <a href="http://www.netmagazine.com/features/2011-review-20-sites-pushed-javascript-limit">20 best JavaScript sites of 2011</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2011/12/21/best-javascript-sites-of-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MITx is the future of education</title>
		<link>http://ignew.com/2011/12/20/mitx-is-the-future-of-education/</link>
		<comments>http://ignew.com/2011/12/20/mitx-is-the-future-of-education/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:10:46 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=923</guid>
		<description><![CDATA[MIT has announced a free online learning initiative called MITx which which will be available to anyone in spring of 2012. Students who show a &#8220;mastery&#8221; of subjects will receive a certificate of completion issued through a not-for-profit body under the MITx program.]]></description>
			<content:encoded><![CDATA[<p>MIT has announced a free online learning initiative called <a href="http://web.mit.edu/newsoffice/2011/mitx-education-initiative-1219.html">MITx</a> which which will be available to anyone in spring of 2012. Students who show a &#8220;mastery&#8221; of subjects will receive a <a href="http://web.mit.edu/newsoffice/2011/mitx-faq-1219">certificate of completion</a> issued through a not-for-profit body under the MITx program.  </p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2011/12/20/mitx-is-the-future-of-education/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business talk is getting bad</title>
		<link>http://ignew.com/2011/12/07/business-talk-is-getting-bad/</link>
		<comments>http://ignew.com/2011/12/07/business-talk-is-getting-bad/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 16:22:00 +0000</pubDate>
		<dc:creator>Dan Murphy</dc:creator>
				<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=914</guid>
		<description><![CDATA[A friend and I have been talking about how too many people use &#8220;business talk&#8221; way too much.  It is basically pointless and slows down progress of a conversation.  And then I find this gem today.  Great entry!]]></description>
			<content:encoded><![CDATA[<p>A friend and I have been talking about how too many people use &#8220;business talk&#8221; way too much.  It is basically pointless and slows down progress of a conversation.  And then I find this <a title="I don't understand what anyone is saying" href="http://blogs.hbr.org/pallotta/2011/12/i-dont-understand-what-anyone.html?utm_source=twitterfeed&amp;utm_medium=twitter">gem</a> today.  Great entry!</p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2011/12/07/business-talk-is-getting-bad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a Mobile App Is Not a Mobile Strategy</title>
		<link>http://ignew.com/2011/11/22/building-a-mobile-app-is-not-a-mobile-strategy/</link>
		<comments>http://ignew.com/2011/11/22/building-a-mobile-app-is-not-a-mobile-strategy/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:26:49 +0000</pubDate>
		<dc:creator>Joe Wheeler</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Mobile Development]]></category>

		<guid isPermaLink="false">http://ignew.com/?p=902</guid>
		<description><![CDATA[&#8220;if you are going to invest in your own app, make it something that you would want to use. No one wants to download an ad.&#8221;]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.hbr.org/cs/2011/11/building_a_mobile_app_is_not_a.html">&#8220;if you are going to invest in your own app, make it something that you would want to use. No one wants to download an ad.&#8221;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ignew.com/2011/11/22/building-a-mobile-app-is-not-a-mobile-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

