<?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>Daniele Demichelis &#187; Development</title>
	<atom:link href="http://www.danidemi.com/mainwww/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danidemi.com/mainwww</link>
	<description>There are 10 types of people in the world: Those who understand binary, and those who don&#039;t...</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:58:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Diff in Java</title>
		<link>http://www.danidemi.com/mainwww/2010/11/diff-in-java/</link>
		<comments>http://www.danidemi.com/mainwww/2010/11/diff-in-java/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:43:12 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=194</guid>
		<description><![CDATA[How to implement diff in Java <a href="http://www.danidemi.com/mainwww/2010/11/diff-in-java/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2010/11/diff-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good environment variable values during iPhone development</title>
		<link>http://www.danidemi.com/mainwww/2010/01/iphone_development_environment_variables/</link>
		<comments>http://www.danidemi.com/mainwww/2010/01/iphone_development_environment_variables/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 15:06:39 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=94</guid>
		<description><![CDATA[Directly from GHUnit, a small note about which environment variables to set while developing for the iPhone. Environment Variable: Default: Set to: NSDebugEnabled NO YES NSZombieEnabled NO YES NSDeallocateZombies NO NO (or YES) NSHangOnUncaughtException NO YES NSAutoreleaseFreedObjectCheckEnabled NO YES Actually, &#8230; <a href="http://www.danidemi.com/mainwww/2010/01/iphone_development_environment_variables/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2010/01/iphone_development_environment_variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get rid of folder that should not be versioned</title>
		<link>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/</link>
		<comments>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 10:01:55 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[revision control]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=88</guid>
		<description><![CDATA[If you work with subversion, for sure you had the problem to tell to subversion to ignore a folder inside your working copy. This happens for example if your IDE builds the sources in a folder inside your working copy. &#8230; <a href="http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chosing the number of decimal digits when printing a number with iPhone</title>
		<link>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:39:59 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=67</guid>
		<description><![CDATA[This is a small snippet, useful whenever you want to convert a floating point number in a string with a fixed number of decimal digits. NSNumberFormatter *format = [NSNumberFormatter new]; [format setMaximumFractionDigits:1]; NSNumber *aNumber = [[NSNumber alloc ] initWithDouble:54.4235264]; NSString &#8230; <a href="http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: how to select a UITabBarItem programmatically</title>
		<link>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 11:22:31 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[UIKit]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=61</guid>
		<description><![CDATA[I&#8217;m working to an iPhone application with a TabBar on the footer area. Among the others there are a &#8220;Home&#8221; button and an &#8220;Account&#8221; button. The first allows the user to see a view that gives an overview of the &#8230; <a href="http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Readonly computed properties in Objective-C</title>
		<link>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:39:15 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=39</guid>
		<description><![CDATA[How to implement a read-only computed property in Objective-C <a href="http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

