<?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>Stupid Foot</title>
	<atom:link href="http://stupidfoot.com/feed" rel="self" type="application/rss+xml" />
	<link>http://stupidfoot.com</link>
	<description>A blog about my personal business projects, web sites and making money</description>
	<lastBuildDate>Sun, 15 May 2011 04:42:25 +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>Restrictions on domain names used with Google Apps</title>
		<link>http://stupidfoot.com/2011/05/15/restrictions-on-domain-names-used-with-google-apps</link>
		<comments>http://stupidfoot.com/2011/05/15/restrictions-on-domain-names-used-with-google-apps#comments</comments>
		<pubDate>Sun, 15 May 2011 04:42:25 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/?p=318</guid>
		<description><![CDATA[I&#8217;ve been wanting to move stupidfoot.com to Google Apps for a while now but never really had the time to do it. Tonight I decided to spend the 20 minutes or so it would take to create the account and move the MX record and load my old mail via IMAP. It turns out that <a href='http://stupidfoot.com/2011/05/15/restrictions-on-domain-names-used-with-google-apps'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wanting to move stupidfoot.com to Google Apps for a while now but never really had the time to do it. Tonight I decided to spend the 20 minutes or so it would take to create the account and move the MX record and load my old mail via IMAP.</p>
<p>It turns out that Google has some restrictions on domain names that they will allow to be used with Google Apps. This list was taken from their <a href="http://www.google.com/support/a/bin/answer.py?answer=52166">signup restrictions page</a>.</p>
<blockquote>
<ul>
<li>Domain availability in our system</li>
<li><strong>Inappropriate domain names (offensive, false branding, etc.)</strong></li>
<li>Restricted locations</li>
<li>Number of domains that you have already registered (this is meant to prevent abuse of our system)</li>
<li>Involvement in IT decisions for your organization</li>
</ul>
</blockquote>
<p>It seems stupidfoot.com falls into one of those categories, I&#8217;m guessing the one that I&#8217;ve bolded. I took a guess that Google doesn&#8217;t like the word stupid. A quick search for <a href="http://www.google.com/search?sourceid=chrome&amp;ie=UTF-8&amp;q=google+apps+restrictions+doman+name#sclient=psy&amp;hl=en&amp;source=hp&amp;q=google+apps+restrictions+domain+name+stupid&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=&amp;pbx=1&amp;bav=on.2,or.r_gc.r_pw.&amp;fp=4d6f6ce8c32f4f53">google apps restrictions domain name stupid</a> shows that my guess was correct. I&#8217;m not the first person to have a problem with Google&#8217;s seemingly arbitrary domain name filtering.  <a href="http://newtonfig.livejournal.com/18320.html">This guy</a> has run into the same problem I did but unlike me he had a friend at Google to get in touch with to help him out.</p>
<p>I&#8217;m hoping someone from Google stumbles across this and will get in touch with me and help me work this out. I plan on mashing buttons on the Google Apps site with hopes of finding a contact form that will allow me to get in touch with Google and have an exception made for stupidfoot.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2011/05/15/restrictions-on-domain-names-used-with-google-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy access to the HTML Devel::Cover report from Dist::Zilla::App::Command::cover</title>
		<link>http://stupidfoot.com/2011/04/27/easy-access-to-the-html-develcover-report-from-distzillaappcommandcover</link>
		<comments>http://stupidfoot.com/2011/04/27/easy-access-to-the-html-develcover-report-from-distzillaappcommandcover#comments</comments>
		<pubDate>Wed, 27 Apr 2011 04:25:39 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Devel::Cover]]></category>
		<category><![CDATA[Dist::Zilla]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/?p=310</guid>
		<description><![CDATA[I love me some Dist::Zilla and Dist::Zilla::App::Command::cover. I wanted an easy way to load the Devel::Cover HTML coverage report. I&#8217;ve been using this on my Macbook. dzil cover &#124; grep &#8216;coverage.html&#8217; &#124; awk {&#8216;print $5&#8242;}  &#124; xargs open and this on Ubuntu. dzil cover &#124; grep &#8216;coverage.html&#8217; &#124; awk {&#8216;print $5&#8242;}  &#124; xargs -I{} firefox <a href='http://stupidfoot.com/2011/04/27/easy-access-to-the-html-develcover-report-from-distzillaappcommandcover'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I love me some <a href="http://search.cpan.org/dist/Dist-Zilla/">Dist::Zilla</a> and <a href="http://search.cpan.org/~marcel/Dist-Zilla-App-Command-cover-1.101000/lib/Dist/Zilla/App/Command/cover.pm">Dist::Zilla::App::Command::cover</a>. I wanted an easy way to load the <a href="http://search.cpan.org/dist/Devel-Cover/">Devel::Cover</a> HTML coverage report. I&#8217;ve been using this on my Macbook.</p>
<blockquote><p>dzil cover | grep &#8216;coverage.html&#8217; | awk {&#8216;print $5&#8242;}  | xargs open</p></blockquote>
<p>and this on Ubuntu.</p>
<blockquote><p>dzil cover | grep &#8216;coverage.html&#8217; | awk {&#8216;print $5&#8242;}  | xargs -I{} firefox {} &amp;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2011/04/27/easy-access-to-the-html-develcover-report-from-distzillaappcommandcover/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle, usbNetwork and You</title>
		<link>http://stupidfoot.com/2011/04/25/kindle-usbnetwork-and-you</link>
		<comments>http://stupidfoot.com/2011/04/25/kindle-usbnetwork-and-you#comments</comments>
		<pubDate>Tue, 26 Apr 2011 03:07:28 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/?p=307</guid>
		<description><![CDATA[My Kindle shipped with firmware 3.0.2. I wanted to upgrade to 3.1 to get real page numbers. When I got the Kindle I jailbroke it, installed usbNetwork and the screensaver hack. Every time I tried to upgrade the firmware it would fail. After some searching I found that the firmware updates ship with differential updates. <a href='http://stupidfoot.com/2011/04/25/kindle-usbnetwork-and-you'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>My Kindle shipped with firmware 3.0.2. I wanted to upgrade to 3.1 to get real page numbers. When I got the Kindle I jailbroke it, installed usbNetwork and the screensaver hack.</p>
<p>Every time I tried to upgrade the firmware it would fail. After some searching I found that the firmware updates ship with differential updates. If any of the core files are modified the update will fail in order to prevent mucking something up.</p>
<p>An easy way to figure out what file is causing the upgrade to fail is:</p>
<blockquote><p>;debugOn<br />
;dumpMessages</p></blockquote>
<p>You can then search through the file created on the Kindle for the file with a checksum failure.</p>
<p>In my case /etc/sysconfig/iptables was modified. Someone posted a stock copy of the file, once I removed the the single line that was different in mine the update applied without issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2011/04/25/kindle-usbnetwork-and-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pythonbrew, perlbrew minus Perl plus Python</title>
		<link>http://stupidfoot.com/2010/11/29/pythonbrew-perlbrew-minus-perl-plus-python</link>
		<comments>http://stupidfoot.com/2010/11/29/pythonbrew-perlbrew-minus-perl-plus-python#comments</comments>
		<pubDate>Mon, 29 Nov 2010 05:25:25 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/?p=304</guid>
		<description><![CDATA[Recently I wrote about App-perlbrew and wondered if something similar existed for Python. A friend of my showed me pythonbrew. Pythonbrew seems to be directly inspired by perlbrew, it has a very similar command structure and syntax. Both pythonbrew and perlbrew have a predefined list of supported versions of Python and Perl respectively. It is <a href='http://stupidfoot.com/2010/11/29/pythonbrew-perlbrew-minus-perl-plus-python'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Recently <a href="http://stupidfoot.com/2010/11/17/app-perlbrew-rvm-for-perl">I wrote about App-perlbrew</a> and wondered if something similar existed for Python. A friend of my showed me <a href="https://github.com/utahta/pythonbrew">pythonbrew</a>. Pythonbrew seems to be directly inspired by perlbrew, it has a very similar command structure and syntax.</p>
<p>Both pythonbrew and perlbrew have a predefined list of supported versions of Python and Perl respectively. It is my personal opinion that this isn&#8217;t a <em>good</em> thing. Both Python and Perl list their released versions on their sites and it would be trivial to parse that information. I have a patch for perlbrew that does just that. I have started working on one for pythonbrew today and hope to have it finished and tested in a few days. I should probably send a pull request for the perlbrew patch as it doesn&#8217;t do anyone much good sitting in my repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2010/11/29/pythonbrew-perlbrew-minus-perl-plus-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a boy!</title>
		<link>http://stupidfoot.com/2010/11/20/its-a-boy</link>
		<comments>http://stupidfoot.com/2010/11/20/its-a-boy#comments</comments>
		<pubDate>Sun, 21 Nov 2010 01:43:28 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[people]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[boy]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[father]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/?p=298</guid>
		<description><![CDATA[My wife and I are expecting our second child in April. We went for  level 2 ultrasound Thursday because I was born with a clubbed foot and we wanted to make sure everything was ok with the baby. One really Nice thing about a level 2 ultra sound is you get to find out the <a href='http://stupidfoot.com/2010/11/20/its-a-boy'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>My wife and I are expecting our second child in April. We went for  level 2 ultrasound Thursday because I was born with a clubbed foot and we wanted to make sure everything was ok with the baby.</p>
<p>One really Nice thing about a level 2 ultra sound is you get to find out the sex of the baby before you normally would. After a long and annoying wait at the doctor&#8217;s office because there was a scheduling mix-up we were taken to talk to the genetic counselor. We give out all of our family medical history and she makes some notes and tells us that we are at more or less no more risk than anyone else to have a child with a clubbed foot. Yay!</p>
<p>Next up, the ultra sound. We are eventually taken back and they start doing the ultra sound and take measurements of the baby&#8217;s head, arms, guts and pretty much every other part of the baby. We asked the lady doing the ultrasound to not tell us the sex until we could bring the rest of our family into the room. The were in the waiting room while the actual important-for-the-baby part of the ultrasound was done.</p>
<p>They come into the room and the ultrasound tech zeros in on the baby&#8217;s junk and announces that it is a boy. There are hugs, kisses and congratulations going around.</p>
<p>I&#8217;m still in shock. I know how to deal with a girls. I&#8217;m good at being a dad to Grace, now I have start at zero again. I&#8217;m excited.</p>
<p><a title="Scanned Image-13" href="../photos/photo/5191151720/scanned-image-13.html"><img src="http://farm5.static.flickr.com/4148/5191151720_c4525c5581.jpg" alt="Scanned Image-13" width="500" height="384" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2010/11/20/its-a-boy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App-perlbrew, rvm for Perl?</title>
		<link>http://stupidfoot.com/2010/11/17/app-perlbrew-rvm-for-perl</link>
		<comments>http://stupidfoot.com/2010/11/17/app-perlbrew-rvm-for-perl#comments</comments>
		<pubDate>Wed, 17 Nov 2010 09:43:25 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=286</guid>
		<description><![CDATA[Rvm seems to be pretty popular with the Ruby / Rails crowd. It lets you install and switch between different versions of Ruby really easily. I have been working on more and more Perl code and wanted to find something similar so that I can make sure the code that is currently working with Perl <a href='http://stupidfoot.com/2010/11/17/app-perlbrew-rvm-for-perl'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://rvm.beginrescueend.com/">Rvm</a> seems to be pretty popular with the Ruby / Rails crowd. It lets you install and switch between different versions of Ruby really easily. I have been working on more and more Perl code and wanted to find something similar so that I can make sure the code that is currently working with Perl 5.6 will continue to work with 5.12.</p>
<p>I found <a href="http://https://github.com/gugod/App-perlbrew">App-perlbrew</a> the other day and have been using it and so far it seems pretty compilable to rvm.</p>
<p>Installing a local copy of Perl is as easy as</p>
<blockquote><p>$ perlbrew install perl-5.12.2</p></blockquote>
<p>You can then list your installed versions of perl with</p>
<blockquote><p>$ perlbrew list<br />
perl-5.12.2<br />
* /usr/bin/perl<br />
$</p></blockquote>
<p>One thing that bugged me was it didn&#8217;t tell me the version of Perl /usr/bin/perl was. The nice thing about open source is the ability to modify it to do what <em>you</em> want, which is exactly what I <a href="https://github.com/trcjr/App-perlbrew/commit/133516d2fd24cdabb5cc3656d0e3709d52e34fe9">did</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2010/11/17/app-perlbrew-rvm-for-perl/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting the @author in Eclipse.</title>
		<link>http://stupidfoot.com/2010/05/04/setting-the-author-in-eclipse</link>
		<comments>http://stupidfoot.com/2010/05/04/setting-the-author-in-eclipse#comments</comments>
		<pubDate>Tue, 04 May 2010 16:38:30 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=278</guid>
		<description><![CDATA[It seems there are basically two ways to set the correct author name (opposed to the system user name Eclipse is using per default) in Eclipse as it appears for example within the autogenerated javadoc comments. First using -vmargs settings: eclipse -clean -showlocation -vmargs -Xms512m -Xmx900m -XX:PermSize=128m -XX:MaxPermSize=128m -Duser.name="Your full name" The other one is <a href='http://stupidfoot.com/2010/05/04/setting-the-author-in-eclipse'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>It seems there are basically two ways to set the correct author name  (opposed to the system user name Eclipse is using per default) in  Eclipse as it appears for example within the autogenerated javadoc  comments.</p>
<p>First using -vmargs settings:<br />
<code>eclipse -clean -showlocation  -vmargs -Xms512m -Xmx900m   -XX:PermSize=128m  -XX:MaxPermSize=128m -Duser.name="Your full name"</code></p>
<p>The other one is just by  changing the associated templates in Window  -&gt; Preferences -&gt; Java -&gt; Editor -&gt; Templates -&gt; @author  , hardcoding the author’s name.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2010/05/04/setting-the-author-in-eclipse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Farmville Bot &#8211; The beginning.</title>
		<link>http://stupidfoot.com/2009/10/16/farmville-bot-the-beginning</link>
		<comments>http://stupidfoot.com/2009/10/16/farmville-bot-the-beginning#comments</comments>
		<pubDate>Sat, 17 Oct 2009 02:09:03 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=274</guid>
		<description><![CDATA[I&#8217;ve been playing Farmville recently on Facebook. The concept is simple, you plant things then harvest them for experience points and money. You then use the money you made to plow the fields and buy seed to do it all over again. I&#8217;ve seen  some of my friends level really quickly and don&#8217;t have time <a href='http://stupidfoot.com/2009/10/16/farmville-bot-the-beginning'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing <a title="Farmvlle" href="http://www.farmville.com/">Farmville</a> recently on Facebook. The concept is simple, you plant things then harvest them for experience points and money. You then use the money you made to plow the fields and buy seed to do it all over again.</p>
<p>I&#8217;ve seen  some of my friends level really quickly and don&#8217;t have time to sit around and play the game all day so I figured it would be an interesting challange to write a bot to play the game for me. In the past I&#8217;ve used SCAR Divi in the past to write a bot for Puzzle Pirates so I think I try writing a bot for Farmville and post the results and possible the code.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2009/10/16/farmville-bot-the-beginning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update about &#8216;Error from Debugger: Unknown packet reply: &#8220;timeout&#8221; to environment packet.&#8217; from Xcode</title>
		<link>http://stupidfoot.com/2009/06/20/update-about-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet-from-xcode</link>
		<comments>http://stupidfoot.com/2009/06/20/update-about-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet-from-xcode#comments</comments>
		<pubDate>Sat, 20 Jun 2009 17:51:24 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=271</guid>
		<description><![CDATA[I previously posted about an error I was seeing in the Xcode console when trying to run an application I was working building on an actual iPhone. I believe I have figured out what was causing the problem, if not at least I&#8217;ve managed to make it stop happening so I can go back to <a href='http://stupidfoot.com/2009/06/20/update-about-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet-from-xcode'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://stupidfoot.com/blog/2009/05/08/redacted-beta-5-and-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet">previously posted</a> about an error I was seeing in the Xcode console when trying to run an application I was working building on an actual iPhone. I believe I have figured out what was causing the problem, if not at least I&#8217;ve managed to make it stop happening so I can go back to testing on a real device now.</p>
<p>It seems that the problem had something to do with a &#8216;#&#8217; in either &#8216;#AppName_Prefix.pch&#8217; or &#8216;#AppName.xcodeproj&#8217;. I renamed the Prefix header and the xcodeproject file and updated the project to reflect the new name of the prefix header then a build -&gt; clean and voilà everything seems to be working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2009/06/20/update-about-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet-from-xcode/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>opensim &#8211; Easy access to iPhone Simulator Applications</title>
		<link>http://stupidfoot.com/2009/06/11/opensim-easy-access-to-iphone-simulator-applications</link>
		<comments>http://stupidfoot.com/2009/06/11/opensim-easy-access-to-iphone-simulator-applications#comments</comments>
		<pubDate>Thu, 11 Jun 2009 22:56:07 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=267</guid>
		<description><![CDATA[I&#8217;ve been doing some development for the iPhone lately and came across a post by Craig Hockenberry where he give out a nice little bash script to make working with the iPhone simulator easier. I&#8217;ve been using that script for a few months now and have added alot to it and think I should give <a href='http://stupidfoot.com/2009/06/11/opensim-easy-access-to-iphone-simulator-applications'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing some development for the iPhone lately and came across a post by <a href="http://furbo.org/2009/03/03/open-sesame/">Craig Hockenberry</a> where he give out a nice little bash script to make working with the iPhone simulator easier.</p>
<p>I&#8217;ve been using that script for a few months now and have added alot to it and think I should give back. I&#8217;ve packaged it up with a nice readme, posted it up on <a href="http://github.com/trcjr/opensim/tree/master">github</a> and released it under the GPL.</p>
<p>Usage:</p>
<blockquote><p>usage: /Users/trcjr/bin/opensim [ &lt;app_name&gt; | updateLinks &lt;link_dir&gt; [ Preferences | Documents | &lt;cmd&gt; &lt;file&gt; ]<br />
ex: /Users/trcjr/bin/opensim updateLinks ~/iPhoneSimulatorApps<br />
Creats symlinks for all installed apps in ~/iPhoneSimulatorApps<br />
Note: &lt;link_dir&gt; must already exist.<br />
ex: /Users/trcjr/bin/opensim SomeApp Preferences<br />
Opens the Preferences folder<br />
ex: /Users/trcjr/bin/opensim SomeApp Documents<br />
Opens the Documents folder<br />
ex: /Users/trcjr/bin/opensim SomeApp sqlite3 some_sqlite_database.sqlite<br />
Opens runs sqlite3 with the full path to some_sqlite_database.sqlite as its first arguement</p></blockquote>
<p>The README:</p>
<blockquote><p>Opensim is a shell script that makes accessing applications on the iPhone<br />
simulator a breeze.</p>
<p>Based on opensim by Craig Hockenberry</p>
<p>http://furbo.org/2009/03/03/open-sesame/</p>
<p>Examples.</p>
<p>opensim SomeApp Preferences<br />
Opens the Preferences folder for SomeApp.<br />
( ~/Library/Application Support/iPhone Simulator/User/Applications/&lt;GUID&gt;/SomeApp.app/Preferences )</p>
<p>opensim SomeApp Documents<br />
Opens the Documents folder for SomeApp<br />
( ~/Library/Application Support/iPhone Simulator/User/Applications/&lt;GUID&gt;/SomeApp.app/Documents )</p>
<p>opensim SomeApp sqlite3 some_sqlite_database.sqlite<br />
Opens runs sqlite3 with the full path to some_sqlite_database.sqlite as its<br />
first argument.<br />
( sqlite3 ~/Library/Application Support/iPhone<br />
Simulator/User/Applications/&lt;GUID&gt;/SomeApp.app/Documents/some_sqlite_database.sqlite )</p>
<p>Note:<br />
If you have more than one file with the same name in two different<br />
directories, ie db.sqlite in Documents/ and db.sqlite in SomeApp.app/<br />
you would need to specify it by doing something like:<br />
opensim SomeApp sqlite3 app/db.sqlite<br />
This would open SomeApp.app/db.sqlite<br />
opensim SomeApp sqlite3 Documents/db.sqlite<br />
This would open SomeApp.app/Documents/db.sqlite</p>
<p>opensim updateLinks ~/iPhoneSimulatorApps<br />
Creats symlinks for all installed apps in ~/iPhoneSimulatorApps<br />
Note: &lt;link_dir&gt; must already exist.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/2009/06/11/opensim-easy-access-to-iphone-simulator-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
