<?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>devinsblog &#187; devinsblog</title>
	<atom:link href="http://devinsblog.com/category/devinsblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://devinsblog.com</link>
	<description>a tech journal</description>
	<lastBuildDate>Mon, 13 Jun 2011 16:36:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>I had big plans</title>
		<link>http://devinsblog.com/2009/11/11/i-had-big-plans/</link>
		<comments>http://devinsblog.com/2009/11/11/i-had-big-plans/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 02:26:49 +0000</pubDate>
		<dc:creator>devin</dc:creator>
				<category><![CDATA[devinsblog]]></category>

		<guid isPermaLink="false">http://devinsblog.com/?p=1482</guid>
		<description><![CDATA[Big plans for my blog.  I had them.  I really I did!  I wanted to share everything that I&#8217;ve learned over the years.  All of the weird things that I&#8217;d be like &#8220;hey did you know _____?!&#8221;  and my friends would be like &#8220;no way man!  That&#8217;s so cool! You are SOOO smart!&#8221; That never [...]]]></description>
			<content:encoded><![CDATA[<p>Big plans for my blog.  I had them.  I really I did!  I wanted to share everything that I&#8217;ve learned over the years.  All of the weird things that I&#8217;d be like &#8220;hey did you know _____?!&#8221;  and my friends would be like &#8220;no way man!  That&#8217;s so cool! You are SOOO smart!&#8221;</p>
<p>That never really happened.  I&#8217;m not really that smart, or that vain.  I was overzealous though perhaps, which isn&#8217;t a bad thing except that I didn&#8217;t follow through.  I learned something about myself after the blog got started, though.</p>
<p>I&#8217;m lazy.</p>
<p>But I&#8217;m not actually lazy.  Just lazy enough to not take this side project seriously enough.  Not important enough to me maybe?  I was always so torn between the amount of hours I spent blogging and all the time that I could have been spending building killer iPhone apps.  So instead, I built a killer iPhone App!</p>
<p>Not really.  Only in my dreams.  I&#8217;ll get there at some point.  Anyway, enough rambling.  The point is&#8230;</p>
<p>I really wanted devinsblog to be a place you could come to learn cool stuff.  The subtitle was &#8220;know | share | learn&#8221; as if I knew something and was then going to share something wonderful with other people.  FAIL!  Instead of looking at that subtitle of thinking of myself as a failure, I&#8217;ve simply changed the subtitle to &#8220;more or less my tech diary.&#8221;  What a load off!  I feel mildly successful now!</p>
<p>So now it&#8217;s &#8220;devinsblog: More or less my tech diary&#8221;  Which looks an awful lot like tech dairy&#8230; which would do a body good&#8230; hmm.</p>
<p>Anyway.  That&#8217;s my success story &#8211; change your goals to fit your success.  Word of caution: don&#8217;t take me seriously.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://devinsblog.com/2009/11/11/i-had-big-plans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone SDK tutorial: disconnecting your application from Interface Builder</title>
		<link>http://devinsblog.com/2009/05/25/iphone-sdk-tutorial-disconnecting-your-application-from-interface-builder/</link>
		<comments>http://devinsblog.com/2009/05/25/iphone-sdk-tutorial-disconnecting-your-application-from-interface-builder/#comments</comments>
		<pubDate>Tue, 26 May 2009 04:28:43 +0000</pubDate>
		<dc:creator>devin</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[devinsblog]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[removal]]></category>
		<category><![CDATA[removing]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://devinsblog.com/?p=1165</guid>
		<description><![CDATA[This is a quick tutorial on disconnecting your iPhone project from Interface Builder using Xcode. When you initially start a new iPhone project in Xcode, you get a project that loads from a NIB file.  This NIB file describes a template for how visual elements are layed out on the screen. As a newbie to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick tutorial on disconnecting your iPhone project from Interface Builder using Xcode.</p>
<p>When you initially start a new iPhone project in Xcode, you get a project that loads from a NIB file.  This NIB file describes a template for how visual elements are layed out on the screen.</p>
<p>As a newbie to iPhone development I want to watch my project get created 100% through the code &#8211; I don&#8217;t want there to be any magic going on behind the scenes.  I&#8217;ll introduce the magic pieces one at a time, but for now: no Interface Builder.  (There are a whole bunch of other things about Interface Builder that I actually don&#8217;t like, but that&#8217;s a different blog post)</p>
<p>To remove your dependence on Interface Builder from the application you need only to do these three things:</p>
<ol>
<li>In your Resources folder in Xcode, delete your .xib file named &#8220;MainWindow.xib&#8221;</li>
<li>In your Resources folder in Xcode, open up the .plist file and remove the line that says &#8220;Main nib file base name&#8221; by selecting and clicking delete.</li>
<li>In your main.m file you need to manually let the application know where to start your app and send important application events.  Change this line:</li>
</ol>
<p> <code>int retVal = UIApplicationMain(argc, argv, nil, nil);</code> <strong>TO</strong> <code> int retVal = UIApplicationMain(argc, argv, nil, @"[<em>yourAppName</em>]AppDelegate")</code><br />
And presto &#8211; no dependency on InterfaceBuilder.</p>
]]></content:encoded>
			<wfw:commentRss>http://devinsblog.com/2009/05/25/iphone-sdk-tutorial-disconnecting-your-application-from-interface-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A blog about nothing</title>
		<link>http://devinsblog.com/2008/12/20/a-blog-about-nothing/</link>
		<comments>http://devinsblog.com/2008/12/20/a-blog-about-nothing/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 04:07:19 +0000</pubDate>
		<dc:creator>devin</dc:creator>
				<category><![CDATA[devinsblog]]></category>
		<category><![CDATA[interests]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[topics]]></category>

		<guid isPermaLink="false">http://devinsblog.com/?p=488</guid>
		<description><![CDATA[One thing I&#8217;ve been thinking about my blog lately is its current direction solely towards my interest in Apple and its products.  This is not what I had in mind when I created my blog &#8211; hence the title &#8220;devinsblog&#8221; not &#8220;myappleaddiction.&#8221; What I really had in mind was to give a glimpse into ALL [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I&#8217;ve been thinking about my blog lately is its current direction solely towards my interest in Apple and its products.  This is not what I had in mind when I created my blog &#8211; hence the title &#8220;devinsblog&#8221; not &#8220;myappleaddiction.&#8221;</p>
<p>What I really had in mind was to give a glimpse into ALL of my interests.  For some reason my interest in Apple kind of just stuck as the main topic of my blog.  I realize that a blog about everything really ends up boiling down to a non-specific blog about nothing, but if Seinfeld can do it so can I.  So that&#8217;s what I&#8217;ll do: a blog focused around the interests of myself, Devin.</p>
<p>From this point forward I will be focusing my efforts that direction.  Along with the usual Apple postings will be postings about a myriad of other things including: technology, cars, gadgets, social networking, amazing books that I&#8217;ve read, etc.  Whatever I learn I will share it with you, and hopefully you can learn something: know | share | learn &#8211; that&#8217;s the idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://devinsblog.com/2008/12/20/a-blog-about-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

