<?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 &#187; Uncategorized</title>
	<atom:link href="http://stupidfoot.com/blog/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://stupidfoot.com/blog</link>
	<description>A blog about my personal business projects, web sites and making money</description>
	<lastBuildDate>Tue, 04 May 2010 16:38:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting the @author in Eclipse.</title>
		<link>http://stupidfoot.com/blog/2010/05/04/setting-the-author-in-eclipse</link>
		<comments>http://stupidfoot.com/blog/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 [...]]]></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/blog/2010/05/04/setting-the-author-in-eclipse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flying with Django</title>
		<link>http://stupidfoot.com/blog/2009/05/24/flying-with-django</link>
		<comments>http://stupidfoot.com/blog/2009/05/24/flying-with-django#comments</comments>
		<pubDate>Mon, 25 May 2009 02:53:45 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=257</guid>
		<description><![CDATA[This is from xkcd. Shows off everything great about Python.
]]></description>
			<content:encoded><![CDATA[<p>This is from <a href="http://xkcd.com/353/">xkcd</a>. Shows off everything great about Python.</p>
<div id="attachment_258" class="wp-caption alignnone" style="width: 274px"><a href="http://stupidfoot.com/blog/wp-content/uploads/2009/05/python.png" rel="lightbox[257]"><img class="size-medium wp-image-258" title="python" src="http://stupidfoot.com/blog/wp-content/uploads/2009/05/python-264x300.png" alt="Flying with Python" width="264" height="300" /></a><p class="wp-caption-text">Flying with Python</p></div>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/05/24/flying-with-django/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Poker Stars Play Money Logs to Real Money</title>
		<link>http://stupidfoot.com/blog/2009/05/20/converting-poker-stars-play-money-logs-to-real-money</link>
		<comments>http://stupidfoot.com/blog/2009/05/20/converting-poker-stars-play-money-logs-to-real-money#comments</comments>
		<pubDate>Wed, 20 May 2009 17:46:56 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Poker]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=244</guid>
		<description><![CDATA[I wanted to use Poker Tracker to keep track of my stats when playing at the play money tables of Poker Stars. Poker Tracker doesn&#8217;t support the play money tables.
I wrote some Perl to convert the the lots from the play money format into the real money format.

#!/usr/bin/perl
use strict;
use Cwd;
use File::Find;
&#160;
my $some_dir = &#34;Z:\\HandHistory&#34;;
my $startDir [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to use Poker Tracker to keep track of my stats when playing at the play money tables of Poker Stars. Poker Tracker doesn&#8217;t support the play money tables.</p>
<p>I wrote some Perl to convert the the lots from the play money format into the real money format.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl
</span>use strict<span style="color: #339933;">;</span>
use Cwd<span style="color: #339933;">;</span>
use <span style="color: #990000;">File</span><span style="color: #339933;">::</span><span style="color: #004000;">Find</span><span style="color: #339933;">;</span>
&nbsp;
my <span style="color: #000088;">$some_dir</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Z:<span style="color: #000099; font-weight: bold;">\\</span>HandHistory&quot;</span><span style="color: #339933;">;</span>
my <span style="color: #000088;">$startDir</span> <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>Cwd<span style="color: #339933;">::</span><span style="color: #004000;">cwd</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
find<span style="color: #009900;">&#40;</span>\<span style="color: #339933;">&amp;</span>processFile<span style="color: #339933;">,</span> <span style="color: #000088;">$some_dir</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">exit</span><span style="color: #339933;">;</span>
&nbsp;
sub processFile <span style="color: #009900;">&#123;</span>
    shift<span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #b1b100;">if</span> not <span style="color: #339933;">/</span>\<span style="color: #339933;">.</span>txt$<span style="color: #339933;">/;</span>
    my <span style="color: #000088;">$inFileName</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_</span><span style="color: #339933;">;</span>
    my <span style="color: #000088;">$infile</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$startDir</span>/<span style="color: #006699; font-weight: bold;">$File</span>::Find::name&quot;</span><span style="color: #339933;">;</span>
    my <span style="color: #000088;">$outfile</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$startDir</span>/outHands/<span style="color: #006699; font-weight: bold;">$inFileName</span>.$$.converted.txt&quot;</span><span style="color: #339933;">;</span>
    open <span style="color: #009900;">&#40;</span>inFILE<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;<span style="color: #006699; font-weight: bold;">$infile</span>&quot;</span><span style="color: #009900;">&#41;</span> or <span style="color: #990000;">die</span> <span style="color: #0000ff;">&quot;can't open in file!: #<span style="color: #006699; font-weight: bold;">$infile</span># ($!)&quot;</span><span style="color: #339933;">;</span>
    open <span style="color: #009900;">&#40;</span>outFILE<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&gt;<span style="color: #006699; font-weight: bold;">$outfile</span>&quot;</span><span style="color: #009900;">&#41;</span> or <span style="color: #990000;">die</span> <span style="color: #0000ff;">&quot;can't open out file!:#<span style="color: #006699; font-weight: bold;">$outfile</span># ($!)&quot;</span><span style="color: #339933;">;</span>
    my <span style="color: #339933;">@</span>players<span style="color: #339933;">;</span>
    <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&lt;</span>inFILE<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        chomp<span style="color: #339933;">;</span>
        <span style="color: #339933;">@</span>players <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>s<span style="color: #339933;">/</span>^<span style="color: #009900;">&#40;</span>PokerStars Game <span style="color: #339933;">.*</span>\<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>\d<span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span>\<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span>\d<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>\<span style="color: #009900;">&#41;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$<span style="color: #339933;">/</span>\<span style="color: #cc66cc;">1</span>\$\<span style="color:#800080;">2.00</span>\<span style="color: #339933;">/</span>\$\<span style="color:#800080;">3.00</span>\<span style="color: #cc66cc;">4</span><span style="color: #339933;">/</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        push<span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span>players<span style="color: #339933;">,</span> $<span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">/</span>^Seat <span style="color: #009900;">&#91;</span>\d<span style="color: #339933;">+</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span> \<span style="color: #009900;">&#40;</span>\d<span style="color: #339933;">+</span> in chips\<span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">foreach</span> my <span style="color: #000088;">$key</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span>players<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            my <span style="color: #000088;">$value</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$key</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$value</span> <span style="color: #339933;">=</span>~ s<span style="color: #339933;">/</span>\s<span style="color: #339933;">+/</span>_<span style="color: #339933;">/;</span>
            <span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span> <span style="color: #339933;">=</span> $<span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span>~ s<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span>$<span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>_\<span style="color: #cc66cc;">1</span><span style="color: #339933;">/</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$key</span> <span style="color: #339933;">=</span>~ <span style="color: #339933;">/</span>^<span style="color: #009900;">&#40;</span>\d<span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span>$<span style="color: #339933;">/</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            s<span style="color: #339933;">/</span><span style="color: #000088;">$key</span><span style="color: #339933;">/</span><span style="color: #000088;">$value</span><span style="color: #339933;">/;</span>
        <span style="color: #009900;">&#125;</span>
        s<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>\<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>\d<span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>\<span style="color: #009900;">&#41;</span> \<span style="color: #339933;">.</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>\<span style="color: #cc66cc;">1</span>\$\<span style="color:#800080;">2.00</span>\<span style="color: #cc66cc;">3</span><span style="color: #339933;">/</span>g<span style="color: #339933;">;</span>
        s<span style="color: #339933;">/</span>\<span style="color: #009900;">&#40;</span>Play Money\<span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">//g;</span>
&nbsp;
        s<span style="color: #339933;">/</span>^\s<span style="color: #339933;">+</span><span style="color: #666666; font-style: italic;">//;</span>
        s<span style="color: #339933;">/</span>\s<span style="color: #339933;">+</span>$<span style="color: #666666; font-style: italic;">//;</span>
        <span style="color: #b1b100;">print</span> outFILE <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$_</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    close<span style="color: #009900;">&#40;</span>inFILE<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    close<span style="color: #009900;">&#40;</span>outFILE<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/05/20/converting-poker-stars-play-money-logs-to-real-money/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Candy theme for mac os 9?</title>
		<link>http://stupidfoot.com/blog/2009/05/13/candy-theme-for-mac-os-9</link>
		<comments>http://stupidfoot.com/blog/2009/05/13/candy-theme-for-mac-os-9#comments</comments>
		<pubDate>Wed, 13 May 2009 05:14:34 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/2009/05/13/candy-theme-for-mac-os-9</guid>
		<description><![CDATA[I remember a theme for mac os 9 that I&#8217;m pretty sure came with the bondi blue style iMacs. There was one theme with matching colors for each of the iMacs. I&#8217;m pretty sure I&#8217;m not making this up. I&#8217;ve googles around but can&#8217;t come up with anything. Does anyone remember this? 
]]></description>
			<content:encoded><![CDATA[<p>I remember a theme for mac os 9 that I&#8217;m pretty sure came with the bondi blue style iMacs. There was one theme with matching colors for each of the iMacs. I&#8217;m pretty sure I&#8217;m not making this up. I&#8217;ve googles around but can&#8217;t come up with anything. Does anyone remember this? </p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/05/13/candy-theme-for-mac-os-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[REDACTED] beta 5 and &#8216;Error from Debugger: Unknown packet reply: &#8220;timeout&#8221; to environment packet.&#8217;</title>
		<link>http://stupidfoot.com/blog/2009/05/08/redacted-beta-5-and-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet</link>
		<comments>http://stupidfoot.com/blog/2009/05/08/redacted-beta-5-and-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet#comments</comments>
		<pubDate>Fri, 08 May 2009 18:51:24 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=239</guid>
		<description><![CDATA[I finally upgraded to [REDACTED] beta 5 on one of my iPhones. Everything seemed to go just fine. I upgraded Xcode and installed the new SDK. Yay. Things were looking pretty good until I tried to build some of my existing applications.
&#8216;Error from Debugger: Unknown packet reply: &#8220;timeout&#8221; to environment packet.&#8217;
I don&#8217;t even know where [...]]]></description>
			<content:encoded><![CDATA[<p>I finally upgraded to [REDACTED] beta 5 on one of my iPhones. Everything seemed to go just fine. I upgraded Xcode and installed the new SDK. Yay. Things were looking pretty good until I tried to build some of my existing applications.</p>
<p>&#8216;Error from Debugger: Unknown packet reply: &#8220;timeout&#8221; to environment packet.&#8217;</p>
<p>I don&#8217;t even know where to start with that error. I&#8217;m only getting it on the iPhone 1st gen that was upgraded to beta 5. The same project builds and runs just fine on my 2.2.1 3G.</p>
<p>I just tried another project and it builds and runs just fine on both my beta 5 1st gen and on my 2.2.1 3G.</p>
<p>Anyone else getting this? How did you fix it?</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/05/08/redacted-beta-5-and-error-from-debugger-unknown-packet-reply-timeout-to-environment-packet/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Xcode 3.1 and SVN &gt; 1.5, Lets all be friends.</title>
		<link>http://stupidfoot.com/blog/2009/04/27/xcode-31-and-svn-15-lets-all-be-friends</link>
		<comments>http://stupidfoot.com/blog/2009/04/27/xcode-31-and-svn-15-lets-all-be-friends#comments</comments>
		<pubDate>Mon, 27 Apr 2009 15:35:21 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=237</guid>
		<description><![CDATA[I&#8217;ve been big into using git for all of my Python Version Control. I&#8217;ve been mucking around with GitX to use it with my Xcode projects and that works out pretty well. I wanted to have something that was actually integrated into Xcode, that limits me to Subversion, Perforce and CVS.
I&#8217;m not a fan of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been big into using <a href="http://git-scm.com/">git</a> for all of my Python Version Control. I&#8217;ve been mucking around with GitX to use it with my Xcode projects and that works out pretty well. I wanted to have something that was actually integrated into Xcode, that limits me to <a href="http://subversion.tigris.org/">Subversion</a>, <a href="http://www.perforce.com/">Perforce</a> and <a href="http://www.nongnu.org/cvs/">CVS</a>.</p>
<p>I&#8217;m not a fan of CVS so its out. Never used Perforce and Subversion seems to be the easiest to get started with.</p>
<p>I ran <strong> svnadmin create SVNrep</strong> and the set it up in Xcode and found it gave me <strong>Error: 180001</strong>. That&#8217;s no good. After some googling I found <a href="http://www.jamesmurty.com/2009/03/18/xcode-31-and-svn-15/">a post by James Murty</a> which describes the problem. It seems Xcode 3.1 isn&#8217;t compatible with versions after 1.4. I&#8217;m I&#8217;m running 1.6.1. svnadmin has a flag <strong>&#8211;pre-1.5-compatible</strong> that will create repositories that are compatible with versions less than 1.5.</p>
<p>After removing the previous SVNrep and running <strong>svnadmin &#8211;pre-1.5-compatible create SVNrep</strong> I now have a SVN repository that Xcode 3.1 can use.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/04/27/xcode-31-and-svn-15-lets-all-be-friends/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diggbar &#8211; Love it or hate it? It&#8217;s one or the other!</title>
		<link>http://stupidfoot.com/blog/2009/04/24/diggbar-love-it-or-hate-it-its-one-or-the-other</link>
		<comments>http://stupidfoot.com/blog/2009/04/24/diggbar-love-it-or-hate-it-its-one-or-the-other#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:24:26 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=232</guid>
		<description><![CDATA[The other day Digg went live with the DiggBar. It is like a combination of TinyURL and Stumbleupon. There are a lot of people not too happy with Digg and the DiggBar right now. I must say that I am one of them.
I think the DiggBar is a throwback the internet of yesteryear. Don&#8217;t get [...]]]></description>
			<content:encoded><![CDATA[<p>The other day Digg went live with the DiggBar. It is like a combination of TinyURL and Stumbleupon. <a href="http://daringfireball.net/2009/04/how_to_block_the_diggbar">There are a lot of people not too happy with Digg and the DiggBar right now</a>. I must say that I am one of them.</p>
<p>I think the DiggBar is a throwback the internet of yesteryear. Don&#8217;t get me wrong, I see what they are trying to accomplish with it. They want to give the average Digg user a better experience. That is great. The DiggBar is not the way to do it. A better way to have the same results would be a toolbar for Firefox or Internet Explorer. Everyone wins in that case.</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/04/24/diggbar-love-it-or-hate-it-its-one-or-the-other/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making iTerm&#8217;s option+delete working like it does in Terminal</title>
		<link>http://stupidfoot.com/blog/2009/03/27/making-iterms-optiondelete-working-like-it-does-in-terminal</link>
		<comments>http://stupidfoot.com/blog/2009/03/27/making-iterms-optiondelete-working-like-it-does-in-terminal#comments</comments>
		<pubDate>Fri, 27 Mar 2009 17:46:40 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=208</guid>
		<description><![CDATA[Back before Leopard and the tabbed Terminal.app I was using iTerm. I iTerm, I did everything I wanted. Leopard came along and with it the new Terminal.app. Hello tabs. With this new tabbed Terminal.app I no longer needed iTerm. As time went on I had pretty much forgotten all about iTerm. Just the other day [...]]]></description>
			<content:encoded><![CDATA[<p>Back before Leopard and the tabbed Terminal.app I was using iTerm. I iTerm, I did everything I wanted. Leopard came along and with it the new Terminal.app. Hello tabs. With this new tabbed Terminal.app I no longer needed iTerm. As time went on I had pretty much forgotten all about iTerm. Just the other day a friend tweeted about iTerm which made me download it and give it another try.</p>
<p>Things I love about iTerm.</p>
<ul>
<li>Fuzzy transparency for a background</li>
<li>More of an Xterm like feel</li>
</ul>
<p>Things I missed.</p>
<ul>
<li>Option + Delete = delete previous word</li>
</ul>
<p>The option + delete may not seem like such a huge deal but I used it all the time. After a bit of googling I&#8217;ve  found a simple way to make it work like it should.</p>
<p>Open the <em>Manage Profiles</em> window (<em>Bookmarks -&gt; Manage Profiles)</em>. Select the keyboard layout you use, and make sure <em>+Esc</em> is selected.</p>
<p><a href="http://stupidfoot.com/blog/wp-content/uploads/2009/03/picture-10.png" rel="lightbox[208]"><img class="alignnone size-full wp-image-209" title="picture-10" src="http://stupidfoot.com/blog/wp-content/uploads/2009/03/picture-10.png" alt="picture-10" width="490" height="337" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/03/27/making-iterms-optiondelete-working-like-it-does-in-terminal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#WHOIS Live in the App Store</title>
		<link>http://stupidfoot.com/blog/2009/03/26/whois-live-in-the-app-store</link>
		<comments>http://stupidfoot.com/blog/2009/03/26/whois-live-in-the-app-store#comments</comments>
		<pubDate>Fri, 27 Mar 2009 03:17:21 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=205</guid>
		<description><![CDATA[Apple approved #WHOIS, a whois client I wrote for the iPhone / iPod Touch. I&#8217;m glad they approved it. I had a blast getting familiar with Objective C and Cococa. Coming from a strong Python background it wasn&#8217;t that big of a leap. I&#8217;m not sure why I had been so intimidated by C before, [...]]]></description>
			<content:encoded><![CDATA[<p>Apple approved <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=308767396&amp;mt=8">#WHOIS</a>, a whois client I wrote for the iPhone / iPod Touch. I&#8217;m glad they approved it. I had a blast getting familiar with Objective C and Cococa. Coming from a strong Python background it wasn&#8217;t that big of a leap. I&#8217;m not sure why I had been so intimidated by C before, It really isn&#8217;t a difficult language to use.</p>
<p>I&#8217;ve been hard at work coming up with ideas for the next few projects I want to do and should have the next thing submitted to Apple early next week.</p>
<p>All in all, the turn around time from submission to live was right around 7 days. Oh, I almost forgot, I have some promo codes to give out. If anyone is interested leave a comment, get in touch with me on Twittter (@trcjr) or AIM (stupidfoot)</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/03/26/whois-live-in-the-app-store/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django &#8211; rapid development and you. Great on toast!</title>
		<link>http://stupidfoot.com/blog/2009/03/07/django-rapid-development-and-you-great-on-toast</link>
		<comments>http://stupidfoot.com/blog/2009/03/07/django-rapid-development-and-you-great-on-toast#comments</comments>
		<pubDate>Sun, 08 Mar 2009 03:15:10 +0000</pubDate>
		<dc:creator>Theodore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://stupidfoot.com/blog/?p=192</guid>
		<description><![CDATA[I&#8217;ve been coding python for over two years now. I&#8217;ve mostly used it for console back end applications. Talking to Postgresql or Sqlite. I love Python. Before Python I was doing pretty much the same tasks with Perl. I&#8217;m not going to go into the Python vs Perl thing now but I will say that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been coding python for over two years now. I&#8217;ve mostly used it for console back end applications. Talking to Postgresql or Sqlite. I love Python. Before Python I was doing pretty much the same tasks with Perl. I&#8217;m not going to go into the Python vs Perl thing now but I will say that Python is a much, much more friendly language to use.</p>
<p>I got into Django with the 1.0 release. Developing with Django is fast. Crazy Fast. The Django ORM makes dealing with the database an extremely pleasant experience. Looking for a post with the slug &#8216;hey-i-am-the-post-you-are-looking-for&#8217;? Its as simple as Model.objects.get(&#8216;hey-i-am-the-post-you-are-looking-for&#8217;).</p>
<p>Django follows the <a href="http://c2.com/cgi/wiki?DontRepeatYourself">DRY principle</a>. Don&#8217;t Repeat Yourself. The thing that I miss the most when dealing with other web frameworks, like CakePHP is the lack of  <span class="nf">get_absolute_url(). I love that there is just one place where you define the url structure to a type of object. Want to change all of the links to your posts from /posts/&lt;slug&gt; to /not-posts/&lt;slug&gt;? Easy, change the value of get_absolute_url() in the Posts model.</span></p>
<p><span class="nf">With Django you can go from an idea for a webapp to a fully functional site in an afternoon. Django&#8217;s ORM is great to use even if you are not going to be using Django to build a web site. If you have not, spend an afternoon with Django. Get cozy. Learn to love it.<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://stupidfoot.com/blog/2009/03/07/django-rapid-development-and-you-great-on-toast/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
