<?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>Old Guy Software</title>
	<atom:link href="http://oldguysoftware.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oldguysoftware.com</link>
	<description>A startup guy in his forties</description>
	<lastBuildDate>Tue, 07 Feb 2012 07:15:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using a Guest Fusion VM (Ubuntu) as Dev Server</title>
		<link>http://oldguysoftware.com/2012/02/07/using-a-guest-fusion-vm-ubuntu-as-dev-server/</link>
		<comments>http://oldguysoftware.com/2012/02/07/using-a-guest-fusion-vm-ubuntu-as-dev-server/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 07:15:03 +0000</pubDate>
		<dc:creator>Matt Reider</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://oldguysoftware.com/?p=54</guid>
		<description><![CDATA[Last year, when I worked at Engine Yard, I wrote a blog post on using a Virtual Machine as a local development environment. I built that virtual machine (which is still available on Engine Yard&#8217;s S3 account) for students wanting to learn Ruby on Rails without having to set it up. After the blog post, [...]]]></description>
			<content:encoded><![CDATA[<p>Last year, when I worked at Engine Yard, I wrote a <a href="http://www.engineyard.com/blog/2010/virtualize-this-instant-rails-in-a-virtual-box/" target="_blank">blog post</a> on using a Virtual Machine as a local development environment. I built that virtual machine (which is <a href="http://s3.amazonaws.com/EY5/vagrant.zip" target="_blank">still available</a> on Engine Yard&#8217;s S3 account) for students wanting to learn Ruby on Rails without having to set it up.</p>
<p>After the blog post, I received messages and comments from people who were using the Virtual Machine image for every day development. Today I created a virtual machine for the same reasons. Those reasons are:</p>
<ol>
<li>Ruby is hard to configure on Windows, and can be nasty elsewhere too.</li>
<li>My system stays nice and clean</li>
<li>I can create and destroy as many environments as I want</li>
<li>I can snapshot an image and go back to it quickly if I mess up along the way</li>
<li>It&#8217;s easy to organize VMs by what I am doing (NodeJS VM, Rails VM, Etc.)</li>
<li>There are <a href="http://bitnami.org/stacks" target="_blank">VMs available online</a> to make my life easier</li>
</ol>
<p>&nbsp;</p>
<p>Last year I used VirtualBox to do all of this work, but as an employee of VMWare, I am compelled to eat my own dog food. When it came time to browse the Guest VM website from the host I looked around for Fusion&#8217;s Port Forwarding settings, but came up empty handed. Did VirtualBox offer something that Fusion did not?</p>
<p>Maybe. But as I learned more about Fusion, I realized that I didn&#8217;t need to use Port Forwarding a year ago and I didn&#8217;t need to use it now. Both VirtualBox and Fusion use NAT, which means you just need the guest&#8217;s IP to browse from the host.</p>
<p>The only hitch in using NAT is that the guest IP address might change, so you can&#8217;t create a host name on the host and type &#8220;my-guest&#8221; in your browser. And so, let&#8217;s make the IP fixed. And let&#8217;s create that host name. Then we can use the Ubuntu image and be happy.</p>
<p>Here&#8217;s what you do:</p>
<p>Login it your guest.</p>
<p>Open a terminal</p>
<p>Display your routing table:</p>
<pre>/sbin/route -n</pre>
<p>You should see something like this&#8230;</p>
<pre>mreider@ubuntu:~$ /sbin/route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.114.0   0.0.0.0         255.255.255.0   U     1      0        0 eth0
0.0.0.0         192.168.114.2   0.0.0.0         UG    0      0        0 eth0</pre>
<p>Edit your network interfaces:</p>
<pre>sudo nano /etc/network/interfaces</pre>
<p>Add the settings</p>
<p>Find the line <strong>iface eth0 inet dhcp</strong> and remove it (ctrl-k)</p>
<p>Create a static IP address. It has to be in the range of xxx.xxx.xxx.3 to xxx.xxx.xxx.127 &#8211; your current IP will not be in this range as it was assigned via DHCP, but use the same nine numbers (xxx.xxx.xxx)</p>
<pre>iface eth0 inet static
address 192.168.114.3
netmask 255.255.255.0
network 192.168.114.0
broadcast 192.168.1.255
gateway 192.168.114.2</pre>
<p>Restart your network</p>
<pre>sudo /etc/init.d/networking restart</pre>
<p>Assuming you have a web server running, you should now be able to open a browser from your host and view 192.168.114.3, which is your guest VM&#8217;s IP address.</p>
<p>Now let&#8217;s create an easy to remember name for the guest.</p>
<p>Open your local hosts file (this is for OSX &#8211; for Winblows go here)</p>
<pre>sudo nano /etc/hosts</pre>
<p>Add your IP and a host name to the bottom and save the file:</p>
<pre>192.168.114.3   my-guest</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://oldguysoftware.com/2012/02/07/using-a-guest-fusion-vm-ubuntu-as-dev-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching Gears</title>
		<link>http://oldguysoftware.com/2012/02/07/switching-gears/</link>
		<comments>http://oldguysoftware.com/2012/02/07/switching-gears/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 05:44:34 +0000</pubDate>
		<dc:creator>Matt Reider</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://oldguysoftware.com/?p=51</guid>
		<description><![CDATA[I have given up writing a mobile app for the time being. Not enough time to juggle my new job (Senior Program Manager at VMWare) with family (2 little kids and lovely wife). It has been many months since I have written anything in this here blog. I have never been a very active blogger [...]]]></description>
			<content:encoded><![CDATA[<p>I have given up writing a mobile app for the time being. Not enough time to juggle my new job (Senior Program Manager at VMWare) with family (2 little kids and lovely wife).</p>
<p>It has been many months since I have written anything in this here blog. I have never been a very active blogger &#8211; maybe because I put pressure on myself to write something that is related to a project, or a piece of work, and it is rare that I have time to both see the project through AND write about it. Seeing it through is hard enough.</p>
<p>So I will make an attempt to write about little things, and not have such lofty goals.</p>
]]></content:encoded>
			<wfw:commentRss>http://oldguysoftware.com/2012/02/07/switching-gears/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Testing Mobile Applications</title>
		<link>http://oldguysoftware.com/2011/10/16/browser-testing-mobile-applications/</link>
		<comments>http://oldguysoftware.com/2011/10/16/browser-testing-mobile-applications/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 06:51:07 +0000</pubDate>
		<dc:creator>Matt Reider</dc:creator>
				<category><![CDATA[Mobile Development]]></category>

		<guid isPermaLink="false">http://oldguysoftware.com/?p=20</guid>
		<description><![CDATA[Warning: This article is targeted at OS X, not Windows. As I begin building my mobile web application I would like to see how it looks on both Android and iPhone. To do this, I need to install both the Android SDK, and Xcode from Apple. Installing the Android SDK to browse mobile websites. Head [...]]]></description>
			<content:encoded><![CDATA[<p>Warning: This article is targeted at OS X, not Windows.</p>
<p>As I begin building my mobile web application I would like to see how it looks on both Android and iPhone. To do this, I need to install both the Android SDK, and Xcode from Apple.</p>
<p><strong>Installing the Android SDK to browse mobile websites.</strong></p>
<ul>
<li>Head on over to <a href="http://developer.android.com/sdk/index.html">http://developer.android.com/sdk/index.html</a> and download the SDK for OS X</li>
<li>Unzip the .zip file and put it in your home directory</li>
<li>Change the directory name to <strong>android-sdk</strong></li>
<li>Open up Terminal</li>
</ul>
<blockquote><p><span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">cd<br />
</span><span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">nano .bash_profile</span></p></blockquote>
<p>&nbsp;</p>
<ul>
<li>The nano editor will open.</li>
<li>Paste this into your editor</li>
</ul>
<blockquote><p><span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">export PATH=${PATH}:~/android-sdk/tools</span><br />
<span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px; white-space: normal;"> </span></p></blockquote>
<p>&nbsp;</p>
<ul>
<li>Press <strong>control-x</strong> and <strong>enter</strong> to save the file</li>
<li>Restart your terminal session with&#8230;</li>
</ul>
<blockquote><p><span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">bash</span></p></blockquote>
<ul>
<li>Then start the android SDK with&#8230;</li>
</ul>
<blockquote><p><span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">android</span></p></blockquote>
<ul>
<li>Once the Android SDK opens, click on <strong><strong>Available packages<br />
<img class="alignnone" style="border-width: 1px; border-color: black; border-style: solid;" title="Android SDK" src="http://img.skitch.com/20111016-j7epmcpedufm4fagkfkbifupjf.jpg" alt="" width="400" height="285" /></strong></strong></li>
<li> As of this post, there are a number of packages available, but I prefer some of the older ones as they load faster and still offer a contemporary browsing experience. I chose API 8, along with the Samples for API 8.</li>
<li>Click <strong>Install Selected</strong></li>
<li>After the install is finished, click on<strong> Virtual Devices</strong> and then <strong>New</strong></li>
<li>Name your Virtual Device whatever you wish (I called mine Andy).<br />
<img class="alignnone" style="border-width: 1px; border-color: black; border-style: solid;" title="Virtual Device" src="http://img.skitch.com/20111016-g5njeqkjdyqrepcmciu4tu3g7k.jpg" alt="" width="400" height="379" /></li>
<li>Click<strong> Create AVD</strong></li>
<li>Click<strong> Start</strong></li>
<li>Your Virtual Device will boot up. Click on the Browser icon, and you can surf the internet Mobile style.<br />
<img class="alignnone" title="Browse inside of Android SDK" src="http://img.skitch.com/20111016-pb5rrmgg5a17dwr7i7bu6hq961.jpg" alt="" width="541" height="485" /></li>
</ul>
<p><strong>Using Dashcode to browse in Mobile Safari</strong></p>
<p>The best way to test the mobile browsing experience for iPhone&#8217;s Safari is to use Dashcode, which comes as part of Xcode, available in the Desktop App.</p>
<ul>
<li>Open the App Store and install XCode. Warning: If you are on Lion there are issues with XCode as of fall 2011.<img class="alignnone" title="Install Xcode" src="http://img.skitch.com/20111016-ebth77w65imsd8ci8if2yj5t2i.jpg" alt="" width="758" height="106" /></li>
<li> After installing XCode, go to Spotlight and search for Dashcode<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;"><img class="alignnone" style="border-width: 1px; border-color: black; border-style: solid;" title="Searching for Dashcode" src="http://img.skitch.com/20111016-t1qaqgc7cxnbsuq3c7nwfyqumg.jpg" alt="" width="334" height="116" /></span></li>
<li>When Dashcode opens, choose a Browser template and uncheck the Safari checkbox &#8211; leaving only Mobile Safari checked<img class="alignnone" style="border-width: 1px; border-color: black; border-style: solid;" title="Dashcode application template" src="http://img.skitch.com/20111016-bs3316ufdy9tkxbfn7tfwr2krf.jpg" alt="" width="539" height="243" /></li>
<li>Once the example template loads starts click <strong>Run</strong></li>
<li>The iPhone Simulator will open</li>
<li>Once the example application loads, click in the address bar and enter whatever URL you wish!<br />
<img class="alignnone" style="border-width: 1px; border-color: black; border-style: solid;" title="iPhone Simulator running my web application" src="http://img.skitch.com/20111016-c4can76gyburi6bhn8atxpha5e.jpg" alt="" width="180" height="355" /></li>
</ul>
<p>Now that I can test the browsability of the web application on the only two platforms that matter (sorry RIM &amp; Microsoft) &#8211; I can continue developing my application and keep Safari Mobile and the Android Browser within reach.</p>
]]></content:encoded>
			<wfw:commentRss>http://oldguysoftware.com/2011/10/16/browser-testing-mobile-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up JQuery Mobile and CodeIgniter (on Godaddy)</title>
		<link>http://oldguysoftware.com/2011/10/16/setting-up-jquery-mobile-and-codeigniter-on-godaddy/</link>
		<comments>http://oldguysoftware.com/2011/10/16/setting-up-jquery-mobile-and-codeigniter-on-godaddy/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 05:22:20 +0000</pubDate>
		<dc:creator>Matt Reider</dc:creator>
				<category><![CDATA[Mobile Development]]></category>

		<guid isPermaLink="false">http://oldguysoftware.com/?p=16</guid>
		<description><![CDATA[Playd8.mobi will be written using PHP, CodeIgniter, MySQL, and JQuery Mobile. I am hoping to compile it to iPhone and Android using PhoneGap, which was just acquired by Adobe. The first place I want to start is to create a semi-to-non-functional prototype in JQuery Mobile and CodeIgniter. I downloaded the latest version of CodeIgniter, and uploaded [...]]]></description>
			<content:encoded><![CDATA[<p>Playd8.mobi will be written using <a href="http://PHP.net/">PHP</a>, <a href="http://codeigniter.com/">CodeIgniter</a>, <a href="http://www.mysql.com/">MySQL</a>, and <a href="http://jquerymobile.com/">JQuery Mobile</a>. I am hoping to compile it to iPhone and Android using <a href="http://www.phonegap.com/">PhoneGap</a>, which was just acquired by Adobe.</p>
<p>The first place I want to start is to create a semi-to-non-functional prototype in JQuery Mobile and CodeIgniter. I <a href="http://codeigniter.com/downloads/">downloaded</a> the latest version of CodeIgniter, and uploaded it to my pathetic GoDaddy hosting account, which is so inexpensive that I don&#8217;t mind going without root access.</p>
<p>To get CodeIgniter running on GoDaddy Deluxe:</p>
<ul>
<li>Per the <a href="http://codeigniter.com/user_guide/">CodeIgniter User Guide</a>, modify the <strong>application/config/config.php</strong> file and set my base URL</li>
<li>Modify the <dfn><strong>application/config/database.php</strong> and put in your MySQL database credentials</dfn></li>
<li>Next, create a blank <strong>.htaccess</strong> file at the root directory of the CodeIgniter application.</li>
<li>Do not use the CodeIgniter User Guide&#8217;s <strong>.htaccess</strong> example. Instead, use this&#8230;</li>
</ul>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*) index.php?/$1</span>
</p></blockquote>
<p>Next, I started to build my JQuery Mobile templates according to CodeIgniter&#8217;s Model-View-Controller design pattern. In the application/views directory I created a header and a footer. These will stay the same throughout my application.</p>
<p><strong>application/views/header.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
	&lt;meta charset=&#8221;utf-8&#8243;&gt;<br />
	&lt;meta name=&#8221;viewport&#8221; content=&#8221;width=device-width, initial-scale=1&#8243;&gt;<br />
	&lt;title&gt;Playd8.mobi&lt;/title&gt;<br />
	&lt;link rel=&#8221;stylesheet&#8221;  href=&#8221;http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css&#8221; /&gt;<br />
	&lt;script src=&#8221;http://code.jquery.com/jquery-1.6.4.min.js&#8221;&gt;&lt;/script&gt;<br />
	&lt;script src=&#8221;http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;</span>
</p></blockquote>
<p><strong>application/views/footer.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;/body&gt;<br />
&lt;/html&gt;</span>
</p></blockquote>
<p>Next, I edited the <strong>welcome_message.php </strong>file and turned it into a JQuery Mobile page. I also added a link to a second JQuery Mobile page <strong>home.php</strong> for kicks.</p>
<p><strong>application/views/welcome_message.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;section id=&#8221;welcome&#8221; data-role=&#8221;page&#8221;&gt;<br />
  &lt;div data-role=&#8221;header&#8221;&gt;<br />
    &lt;h1&gt;Welcome to Playd8.Mobi&lt;/h1&gt;<br />
  &lt;/div&gt;&lt;!&#8211; /header &#8211;&gt;<br />
  &lt;div data-role=&#8221;content&#8221;&gt;<br />
    &lt;p&gt;We are psyched you are here!&lt;/p&gt;<br />
  	&lt;p&gt;&lt;a href=&#8221;/home/&#8221;&gt;Go to the second page!&lt;/a&gt;&lt;/p&gt;<br />
  &lt;/div&gt;&lt;!&#8211; /content &#8211;&gt;<br />
  &lt;div data-role=&#8221;footer&#8221;&gt;<br />
    &lt;h4&gt;&amp;copy; Matt Reider 2011&lt;/h4&gt;<br />
  &lt;/div&gt;&lt;!&#8211; /footer &#8211;&gt;<br />
&lt;/section&gt;</span>
</p></blockquote>
<p><strong></strong><strong>application/views/home.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;section id=&#8221;home&#8221; data-role=&#8221;page&#8221;&gt;<br />
	&lt;header data-role=&#8221;header&#8221;&gt;<br />
		&lt;h1&gt;Main Menu&lt;/h1&gt;<br />
	&lt;/header&gt;<br />
	&lt;div class=&#8221;content&#8221; data-role=&#8221;content&#8221;&gt;<br />
		&lt;p&gt;What&#8217;s up chicken butt?&lt;/p&gt;<br />
	&lt;/div&gt;<br />
	&lt;div data-role=&#8221;footer&#8221;&gt;<br />
	    &lt;h4&gt;&amp;copy; Matt Reider 2011&lt;/h4&gt;<br />
	 &lt;/div&gt;&lt;!&#8211; /footer &#8211;&gt;<br />
&lt;/section&gt;</span>
</p></blockquote>
<p><strong></strong>Now we can edit the <strong>welcome</strong> and <strong>home</strong> controllers and test the application.</p>
<p><strong>application/controllers/welcome.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">class Welcome extends CI_Controller {<br />
        public function index()<br />
	{<br />
		$this-&gt;load-&gt;view(&#8216;header&#8217;);<br />
		$this-&gt;load-&gt;view(&#8216;welcome_message&#8217;);<br />
		$this-&gt;load-&gt;view(&#8216;footer&#8217;);<br />
	}<br />
}</span>
</p></blockquote>
<p><strong>application/controllers/home.php</strong></p>
<blockquote><p>
<span class="Apple-style-span" style="font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;">class Home extends CI_Controller {<br />
        public function index()<br />
	{<br />
		$this-&gt;load-&gt;view(&#8216;header&#8217;);<br />
		$this-&gt;load-&gt;view(&#8216;home&#8217;);<br />
		$this-&gt;load-&gt;view(&#8216;footer&#8217;);<br />
	}<br />
}</span>
</p></blockquote>
<p>That&#8217;s that. Of course this is a really basic example of what can be done in JQuery Mobile.</p>
<p>The first page:</p>
<p><img class="alignnone" title="A simple JQuery Mobile page" src="http://img.skitch.com/20111016-ei938dq4xc58mkifr4xb91mtmg.jpg" alt="" width="220" height="151" /></p>
<p>The second page:</p>
<p><img class="alignnone" title="Second page" src="http://img.skitch.com/20111016-p988s8pjwy32rgqdeg2bxxa9pw.jpg" alt="" width="220" height="129" /></p>
<p>I will be expanding on it as I get farther along on my little project.</p>
]]></content:encoded>
			<wfw:commentRss>http://oldguysoftware.com/2011/10/16/setting-up-jquery-mobile-and-codeigniter-on-godaddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with Playd8.mobi</title>
		<link>http://oldguysoftware.com/2011/10/16/getting-started-with-playd8-mobi/</link>
		<comments>http://oldguysoftware.com/2011/10/16/getting-started-with-playd8-mobi/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 03:51:54 +0000</pubDate>
		<dc:creator>Matt Reider</dc:creator>
				<category><![CDATA[Mobile Development]]></category>

		<guid isPermaLink="false">http://oldguysoftware.com/?p=10</guid>
		<description><![CDATA[I decided to begin work on a software application today. I have little time for things like this. Two kids under the age of five.  A director-level position at a web startup. The thing is that I love programming. So I am going to do this. The app will help me, and people like me. [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to begin work on a software application today. I have little time for things like this. Two kids under the age of five.  A director-level position at a web startup. The thing is that I love programming. So I am going to do this.</p>
<p>The app will help me, and people like me. These are the best kinds of apps to build, and they have the greatest chance for success. As <a href="http://techcrunch.com/2007/03/22/web-apps-101-your-three-point-success-plan/">Vince Veneziani</a> writes, &#8220;if you are not the target user of your web app, proceed with extreme caution.&#8221;  No need for extreme caution here. This is going to help parents at my preschool plan play dates with other kids at school.</p>
<p>I have also been watching apps appear that do this already. Right now there are four apps that do pretty much the same thing that I want to do, including one called &#8220;Play Dates&#8221; that didn&#8217;t come up in this search for some reason. Ya know what though? I don&#8217;t care. I want to build it anyhow.</p>
<p>I hope to blog about the application over the next few weeks. I have tried blogging before and I never seem to make it a priority, but maybe this will be the time. Away we go!</p>
<p><img style="max-width: 638px;" src="https://img.skitch.com/20111016-bqgxhwypq81j446tiunet25k8f.medium.jpg" alt="iTunes" /></p>
]]></content:encoded>
			<wfw:commentRss>http://oldguysoftware.com/2011/10/16/getting-started-with-playd8-mobi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

