<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Robby on Rails: Category Typo</title>
    <link>http://www.robbyonrails.com/articles/category/typo</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>thoughts.sort_by{|t| t[:topic]}.collect </description>
    <item>
      <title>Using Gravatar</title>
      <description>&lt;p&gt;In the past few days&amp;#8230; a few people have asked how people include their picture when they post their comment.&lt;/p&gt;


	&lt;p&gt;The answer? They are using &lt;a href="http://www.gravatar.com"&gt;Gravatar&lt;/a&gt;, which many blogs will automatically try to find your avatar for and display next to your comments.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m also looking to modify typo to try look your icon up from flickr too.&lt;/p&gt;
</description>
      <pubDate>Tue, 12 Sep 2006 14:18:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:5626b36b-fc00-4502-9b53-3fa4159f0e36</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2006/09/12/using-gravatar</link>
      <category>Typo</category>
      <category>avatar</category>
      <category>gravatar</category>
      <category>faq</category>
    </item>
    <item>
      <title>Apache, Typo, and Feedburner</title>
      <description>&lt;p&gt;A few weeks ago, I started using FeedBurner and posted a blog entry about &lt;a href="http://www.robbyonrails.com/articles/2006/08/22/feedburner-and-lighttpd-redirects"&gt;how I configured Lighttpd&lt;/a&gt; to handle that so it didn&amp;#8217;t disrupt everyone that subscribes to my &lt;span class="caps"&gt;RSS&lt;/span&gt; feed. This was working great&amp;#8230; until the other day.. when I &lt;a href="http://www.robbyonrails.com/articles/2006/09/05/typo-upgraded-to-trunk"&gt;upgraded to Typo trunk&lt;/a&gt;. When I did this, I decided to start using mongrel::cluster and pound. Two days later&amp;#8230; I&amp;#8217;m noticing that my subscriber count has dropped over thousand people in a day&amp;#8230; was it something that I said?&lt;/p&gt;


	&lt;p&gt;A ha! I was handling the redirect with Lighttpd and had replaced it with Pound.&lt;/p&gt;


	&lt;p&gt;So, I am now delegating this to Apache.&lt;/p&gt;


&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_ruby "&gt;  &lt;span class="comment"&gt;# Redirect typo feeds to FeedBurner&lt;/span&gt;
  &lt;span class="constant"&gt;RewriteCond&lt;/span&gt; &lt;span class="punct"&gt;%{&lt;/span&gt;&lt;span class="string"&gt;HTTP_USER_AGENT&lt;/span&gt;&lt;span class="punct"&gt;}&lt;/span&gt; &lt;span class="punct"&gt;!^&lt;/span&gt;&lt;span class="constant"&gt;FeedBurner&lt;/span&gt;&lt;span class="punct"&gt;.*&lt;/span&gt;&lt;span class="global"&gt;$&lt;/span&gt;
  &lt;span class="ident"&gt;RewriteRule&lt;/span&gt; &lt;span class="punct"&gt;/&lt;/span&gt;&lt;span class="ident"&gt;xml&lt;/span&gt;&lt;span class="punct"&gt;/(&lt;/span&gt;&lt;span class="ident"&gt;atom&lt;/span&gt;&lt;span class="punct"&gt;|&lt;/span&gt;&lt;span class="ident"&gt;rss&lt;/span&gt;&lt;span class="punct"&gt;|&lt;/span&gt;&lt;span class="ident"&gt;rss20&lt;/span&gt;&lt;span class="punct"&gt;)/&lt;/span&gt;&lt;span class="ident"&gt;feed&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;xml&lt;/span&gt;&lt;span class="global"&gt;$ &lt;/span&gt;&lt;span class="ident"&gt;http&lt;/span&gt;&lt;span class="punct"&gt;:/&lt;/span&gt;&lt;span class="regex"&gt;&lt;/span&gt;&lt;span class="punct"&gt;/&lt;/span&gt;&lt;span class="ident"&gt;feeds&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;feedburner&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;com&lt;/span&gt;&lt;span class="punct"&gt;/&lt;/span&gt;&lt;span class="constant"&gt;RobbyOnRails&lt;/span&gt; &lt;span class="punct"&gt;[&lt;/span&gt;&lt;span class="constant"&gt;R&lt;/span&gt;&lt;span class="punct"&gt;=&lt;/span&gt;&lt;span class="ident"&gt;temp&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt;&lt;span class="constant"&gt;L&lt;/span&gt;&lt;span class="punct"&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

	&lt;p&gt;...and all was well again.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;UPDATE&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;The rewrite condition should be &lt;code&gt;!^FeedBurner.*$&lt;/code&gt; not &lt;code&gt;!^FeedBurner$&lt;/code&gt;.&lt;/p&gt;
</description>
      <pubDate>Fri, 08 Sep 2006 16:51:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:85328eff-4648-4b08-85b3-613be6e3fc66</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2006/09/08/apache-typo-and-feedburner</link>
      <category>Typo</category>
      <category>feedburner</category>
      <category>typo</category>
      <category>apache</category>
      <category>configuration</category>
      <category>pound</category>
      <category>mongrel</category>
    </item>
    <item>
      <title>Typo upgraded to trunk</title>
      <description>&lt;p&gt;I upgraded my blog to &lt;a href="http://typosphere.org/"&gt;Typo trunk&lt;/a&gt; this evening. I hadn&amp;#8217;t updated since late last year&amp;#8230; so it was long overdue. I only had one issue with a migration from a while back.&lt;/p&gt;


	&lt;p&gt;old revision: 761&lt;/p&gt;


	&lt;p&gt;current revision: 1258.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m impressed that the upgrade worked so nicely&amp;#8230; last year the migrations were a bit rough. :-)&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;UPDATE&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m also now running this on mongrel with pound! I followed the configuration &lt;a href="http://docs.planetargon.com/wiki/show/Pound+and+Mongrel"&gt;here&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Tue, 05 Sep 2006 23:16:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:7d44f179-035d-4043-930f-b011fbb16da1</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2006/09/05/typo-upgraded-to-trunk</link>
      <category>Typo</category>
      <category>typo</category>
    </item>
    <item>
      <title>PLANET ARGON: Official hosting sponsor of the Typo project</title>
      <description>&lt;p&gt;We&amp;#8217;re excited to announce that as of last week, the &lt;a href="http://typo.leetsoft.com"&gt;Typo development team&lt;/a&gt; and &lt;a href="http://www.planetargon.com"&gt;&lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;&lt;/a&gt; made an arrangement to relocate the current hosting of the Typo project to &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;. This includes moving Subversion, Trac, downloads, mailing list(s), &lt;span class="caps"&gt;IRC&lt;/span&gt; bot, etc. There is also rumor that some energy will be going into creating a new home page for the project.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://david.planetargon.us"&gt;David Gibbons&lt;/a&gt; is currently working on migrating everything over for them and we are managing this process through our &lt;a href="http://www.basecamphq.com"&gt;BaseCamp&lt;/a&gt; with the Typo team. He&amp;#8217;ll be posting an update on &lt;a href="http://david.planetargon.us"&gt;his blog&lt;/a&gt; when this process is finished.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://www.planetargon.com/files/~robby/pa_typo_01.jpg" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;We&amp;#8217;re honored that they chose &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt; to the official hosting sponsor of the Typo project. We were the &lt;strong&gt;first&lt;/strong&gt; hosting provider to offer &lt;a href="http://www.planetargon.com/typo_hosting.html"&gt;Typo hosting&lt;/a&gt; to customers &lt;a href="http://blog.leetsoft.com/articles/2005/04/05/get-your-own-typo-blog"&gt;back in April&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;We look forward to helping Typo prepare for 2006&amp;#8230;&lt;/p&gt;


	&lt;p&gt;&lt;del&gt;&amp;#8212;&lt;/del&gt;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Random update&amp;#8230;&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;I thought it would be amusing to see just how I fit into the history of Typo.  Aside from &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt; being the first host to offer Typo hosting&amp;#8230; I was one of the &lt;a href="http://typo.leetsoft.com/trac/wiki/TypoPowered?version=1"&gt;first few people&lt;/a&gt; to run Typo as a blog&amp;#8230; or at least I tried&amp;#8230; see &lt;a href="http://typo.leetsoft.com/trac/ticket/8"&gt;ticket #8&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;I was also the first person to ever run Typo on &lt;a href="http://www.postgresql.org"&gt;PostgreSQL&lt;/a&gt; (&lt;a href="http://typo.leetsoft.com/trac/ticket/9"&gt;ticket #9&lt;/a&gt;). ... like that would surprise anyone. ;-)&lt;/p&gt;


	&lt;p&gt;&lt;del&gt;&amp;#8212;&lt;/del&gt;&lt;/p&gt;


	&lt;p&gt;During this period of moving from Tobias to &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;, we are collecting email information for people so that when we help launch the new site for the project&amp;#8230; you&amp;#8217;ll all be notified.&lt;/p&gt;


	&lt;h2&gt;&lt;a href="http://www.typosphere.org"&gt;TypoSphere.org&lt;/a&gt; (coming soon)&lt;/h2&gt;
</description>
      <pubDate>Thu, 15 Dec 2005 23:34:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:ebe1e194c9498813d2f00ac42a969597</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/12/15/typo-official-hosting-sponsor</link>
      <category>Typo</category>
      <category>typo</category>
      <category>planetargon</category>
      <category>rails</category>
    </item>
    <item>
      <title>PLANET ARGON 2.0 Release Candidate</title>
      <description>&lt;p&gt;We finally found a way to sneak in some extra time to finish up the first phase of our new website. Allison and I are excited to announce the launch of &lt;strong&gt;new&lt;/strong&gt; PLANET &lt;span class="caps"&gt;ARGON&lt;/span&gt; website, &lt;a href="http://www.planetargon.com"&gt;www.planetargon.com&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;What Powers It?&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.rubyonrails.org"&gt;Ruby on Rails&lt;/a&gt; and &lt;a href="http://www.postgresql.org"&gt;PostgreSQL&lt;/a&gt;!&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;What Has Changed?&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;For starters, we have a new design. Hopefully the information that you are seeking is easier to navigate to and the order process is a bit easier too. Aside from that, we&amp;#8217;ve made just minor changes to our hosting offerings to reflect the needs of our customers. I&amp;#8217;ll touch on that shortly.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;ReEmphasize The Small Stuff&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;We first started offering Rails hosting to the public at the beginning of February. In just a week we&amp;#8217;ll have nine full months of experience under our belts. Our customers have been a huge influence on the type of services we offer, and the level of support that comes with it. It was out of my own desire to have a web host that allowed for bleeding-edge technology that lead me to start my own hosting company&amp;#8230; so that I could turn around and offer other developers, like myself, the same service, without the time commitment of managing your own server and the price tag that goes along with it.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Our Customers are Awesome!&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;No really, they are. We recently setup an &lt;span class="caps"&gt;RSS&lt;/span&gt; aggregator of some of our hosting customers that run blogs (many of them are running Typo). We call this site, &lt;a href="http://inhabitants.planetargon.com"&gt;Inhabitants of &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;&lt;/a&gt;. (&lt;a href="http://inhabitants.planetargon.com"&gt;inhabitants.planetargon.com&lt;/a&gt;) Check it out!&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;More Space!&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;We&amp;#8217;ve spent some time really looking over our hosting plans and wanted to give them a make-over that reflects the requests of our customers and potential customers. We&amp;#8217;ve increased the disk space on the first three of our shared-hosting plans, and lowered the price on the fourth. &lt;a href="http://www.planetargon.com/hosting.html"&gt;Take a peek&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;Some of our prices have gone up (with the increase in disk space), but our Level 1 plan &lt;strong&gt;still&lt;/strong&gt; starts as low as $11.25/month. This can get you rolling on Rails using PostgreSQL and/or MySQL! :-)&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Typo Hosting&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;We started offering affordable blog hosting last year. Then Typo took off, and none of the other blog software packages were being requested! We have &lt;strong&gt;dropped&lt;/strong&gt; all the &lt;span class="caps"&gt;PHP&lt;/span&gt; blogging applications from our offerings and are now offering &lt;a href="http://www.planetargon.com/typo_hosting.html"&gt;Typo Hosting&lt;/a&gt; exclusively. For $3/month, you can have your own pre-installed Typo blog!&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;FREE RAILS HOSTING&lt;/span&gt;!&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Well, sort of. If you sign up by midnight (PST) on October 31st, you will receive &lt;strong&gt;1 &lt;span class="caps"&gt;FREE&lt;/span&gt; Month&lt;/strong&gt; for every 6 month account and 2* &lt;span class="caps"&gt;FREE&lt;/span&gt; Months* for every year! (Blogs too)&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;We&amp;#8217;re Not Just a Hosting Company&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;&lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt; was started as a web &lt;a href="http://www.planetargon.com/development.html"&gt;development&lt;/a&gt; and &lt;a href="http://www.planetargon.com/consulting.html"&gt;consulting&lt;/a&gt; company, and it still is!&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Who Is Allison?&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Allison is the Creative Director here at &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;. Existing customers of ours know about her&amp;#8230; but she&amp;#8217;s kept a low profile up until now. She is a ninja in the ways of project management, clean design, and has been known to have a tab open in her browser to the Ruby on Rails &lt;span class="caps"&gt;API&lt;/span&gt;. Expect to hear more from (and about) her in the near future.&lt;/p&gt;


	&lt;p&gt;For more information, see: &lt;a href="http://www.planetargon.com"&gt;http://www.planetargon.com&lt;/a&gt;&lt;/p&gt;
</description>
      <pubDate>Tue, 25 Oct 2005 13:10:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6d1d45e546da9efabf532ac4e842a9d1</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/10/25/planet-argon-2-0-release-candidate</link>
      <category>Typo</category>
      <category>Business</category>
      <category>Off-Topic</category>
      <category>Ruby on Rails</category>
      <category>PostgreSQL</category>
      <category>rails</category>
      <category>hosting</category>
      <category>planetargon</category>
    </item>
    <item>
      <title>Typo Theme Contest announced</title>
      <description>&lt;p&gt;Geoffrey Grosenbach has announced the &lt;a href="http://www.typogarden.org/articles/2005/10/10/typo-theme-contest"&gt;Typo Theme Contest&lt;/a&gt; on &lt;a href="http://typogarden.org"&gt;TypoGarden.org&lt;/a&gt;, Yay!&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.planetargon.com"&gt;&lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;&lt;/a&gt; has offered a year of &lt;a href="http://www.planetargon.com/hosting/"&gt;Level 3 hosting&lt;/a&gt; for the winner. We also promised &lt;strong&gt;ten free&lt;/strong&gt; &lt;a href="http://www.planetargon.com/blog_hosting/"&gt;blog hosting packages&lt;/a&gt; to the &lt;strong&gt;first ten people&lt;/strong&gt; that submit new themes that meet the requirements of the content!&lt;/p&gt;


	&lt;p&gt;Good luck to all the players. :-)&lt;/p&gt;


	&lt;p&gt;(obviously&amp;#8230; I could use a new theme too&amp;#8230; I might have to participate!)&lt;/p&gt;
</description>
      <pubDate>Mon, 10 Oct 2005 12:33:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:0edb2b0af30d19fefdcc84467ac3e437</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/10/10/typo-theme-contest-announced</link>
      <category>Typo</category>
      <category>Business</category>
      <category>typo</category>
      <category>content</category>
      <category>planetargon</category>
      <category>hosting</category>
    </item>
    <item>
      <title>My Typo powered blog running on PostgreSQL and Lighttpd (now)</title>
      <description>&lt;p&gt;Finally, was able to take a few minutes and got my blog running on &lt;a href="http://www.lighttpd.net/"&gt;lighttpd&lt;/a&gt;. Testing out a few configuration options before moving a few clients to it.&lt;/p&gt;


	&lt;p&gt;Apache w/fastcgi has been pretty stable for the most part. Initially through &lt;a href="http://www.lighttpd.net/"&gt;lighttpd&lt;/a&gt;, I&amp;#8217;m not noticing a huge difference in speed. I haven&amp;#8217;t tried to run any benchmarks yet&amp;#8230; perhaps later.&lt;/p&gt;


	&lt;p&gt;In other news, I have been busy working on a few client projects, writing, and my gf and I &lt;strong&gt;finally&lt;/strong&gt; got a dog. His name is &lt;a href="http://www.robbyrussell.com/gallery/new_dog"&gt;Nigel&lt;/a&gt;. We adopted him a few days ago. :-)&lt;/p&gt;
</description>
      <pubDate>Sat, 18 Jun 2005 08:05:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:3c08a056a6e6ea6bb231b3bdcf13973f</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/06/18/my-typo-powered-blog-running-on-postgresql-and-lighttpd-now</link>
      <category>Typo</category>
      <category>Off-Topic</category>
    </item>
    <item>
      <title>odd behavior by typo</title>
      <description>&lt;p&gt;For some reason, Typo seems to be doing something odd with my &lt;span class="caps"&gt;XML&lt;/span&gt; feeds because my &lt;span class="caps"&gt;RSS&lt;/span&gt; Reader is showing duplicates for entries (but this doesnt show up in Typo) and Planet Rails is showing dups now. It not always at the same time, so I am not sure how this is happening. 
&lt;br /&gt;&lt;br /&gt;
Any thoughts?&lt;/p&gt;
</description>
      <pubDate>Sun, 05 Jun 2005 07:50:53 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:12a70034d643fbed9dc6a78eb47ab4ad</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/06/05/odd-behavior-by-typo</link>
      <category>Typo</category>
    </item>
    <item>
      <title>robbyonrails.com, now running typo 2</title>
      <description>&lt;p&gt;I just upgraded. Few css changes, sql changes, and got to play with the admin interface finally. :-)&lt;/p&gt;


	&lt;p&gt;Test. test. test.. from BloGTK&lt;/p&gt;
</description>
      <pubDate>Wed, 27 Apr 2005 17:52:48 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:63a27524de8f9cf9be078f9aa983be4b</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/27/robbyonrails-com-now-running-typo-2</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Typo gets an admin area?</title>
      <description>&lt;p&gt;The typo programmers have started working on an &lt;a href="http://blog.leetsoft.com/articles/2005/04/20/typo-admin-interface"&gt;admin interface&lt;/a&gt; (which was bound to happen&amp;#8230;).&lt;/p&gt;

    &lt;p&gt;I haven&amp;#8217;t tried it yet, but the new &lt;a href="http://www.planetargon.com/blog_hosting/"&gt;blog hosting&lt;/a&gt; customers that have signed up with &lt;a href="http://www.planetargon.com/"&gt;&lt;span class="caps"&gt;&lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; as of April 20th have got this feature. (I need to upgrade this Typo install..maybe later today)&lt;/p&gt;

    &lt;p&gt;It also appears that there is a &lt;a href="http://www.encytemedia.com/article/6/a-fresh-start-typo"&gt;logo&lt;/a&gt; being worked on for Typo. :-)&lt;/p&gt;
</description>
      <pubDate>Thu, 21 Apr 2005 19:25:26 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:4d19946f37311da3157147d125d1d18d</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/21/typo-gets-an-admin-area</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Cheap hosting for your Typo blog</title>
      <description>&lt;p&gt;(shameless promotion)&lt;/p&gt;

    &lt;p&gt;I&amp;#8217;ve been sick for the past week and I was just reminded that we added &lt;a href="http://typo.leetsoft.com/"&gt;Typo&lt;/a&gt; to our &lt;a href="http://www.planetargon.com/blog_hosting/"&gt;Blog Hosting&lt;/a&gt; packages. So, for as little as $3/month you can have a Typo blog setup and running for you to share all your Ruby/Rails/whatever thoughts. We even install the latest stable version (or trunk if you would like). Of course, if you want to do more than just blog and post pictures, you can look at our &lt;a href="http://www.planetargon.com/rails_hosting/"&gt;Rails Hosting&lt;/a&gt; packages.&lt;/p&gt;
</description>
      <pubDate>Tue, 05 Apr 2005 16:18:37 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6657f8ebf737fe2b693ed82c1422e9d9</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/05/cheap-hosting-for-your-typo-blog</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Upgraded Typo</title>
      <description>&lt;p&gt;Typo from &lt;span class="caps"&gt;&lt;span class="caps"&gt;SVN&lt;/span&gt; &lt;/span&gt;Trunk&amp;#8230; seems to be working good.&lt;/p&gt;

    &lt;p&gt;Tobi, thanks for the nice new features. :-)&lt;/p&gt;
</description>
      <pubDate>Mon, 04 Apr 2005 20:36:30 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:342add3256041237ad80745b1fd15545</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/04/upgraded-typo</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Need to upgrade my typo install</title>
      <description>&lt;p&gt;&lt;a href="http://blog.leetsoft.com/articles/2005/04/02/say-bye-to-articles-read-5"&gt;A few&lt;/a&gt; &lt;a href="http://blog.leetsoft.com/articles/2005/04/02/ajax-rocks"&gt;reasons&lt;/a&gt; why I need to upgrade &lt;a href="http://typo.leetsoft.com/"&gt;Typo&lt;/a&gt;.&lt;/p&gt;

    &lt;p&gt;Perhaps something to suggest as a feature would be the concept of &amp;#8216;themes&amp;#8217; or &amp;#8216;styles&amp;#8217; for Typo. I&amp;#8217;d hate to have to go in and change my css/images each time I want to upgrade. I wonder if &lt;a href="http://blog.leetsoft.com/"&gt;Tobi&lt;/a&gt; has added my &lt;a href="http://www.postgresql.org/"&gt;PostgreSQL&lt;/a&gt; patch to the tree yet. I know two people who are using it (the pgsql patch) currently. &lt;a href="http://blog.curthibbs.us"&gt;Curt Hibbs&lt;/a&gt; and &lt;a href="http://www.robbyonrails.com/"&gt;myself&lt;/a&gt;.&lt;/p&gt;

    &lt;p&gt;Since I have started to use &lt;a href="http://typo.leetsoft.com/"&gt;Typo&lt;/a&gt; (only a few weeks now), the list of people using it on the &lt;a href="http://typo.leetsoft.com/"&gt;Typo page&lt;/a&gt; has gone from 2 listed to over 20.&lt;/p&gt;
</description>
      <pubDate>Mon, 04 Apr 2005 14:50:58 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:fd647f57439a5f8dd2d1817523e5f29e</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/04/need-to-upgrade-my-typo-install</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Need to upgrade my typo install</title>
      <description>&lt;p&gt;&lt;a href="http://blog.leetsoft.com/articles/2005/04/02/say-bye-to-articles-read-5"&gt;A few&lt;/a&gt; &lt;a href="http://blog.leetsoft.com/articles/2005/04/02/ajax-rocks"&gt;reasons&lt;/a&gt; why I need to upgrade &lt;a href="http://typo.leetsoft.com/"&gt;Typo&lt;/a&gt;.&lt;/p&gt;

    &lt;p&gt;Perhaps something to suggest as a feature would be the concept of &amp;#8216;themes&amp;#8217; or &amp;#8216;styles&amp;#8217; for Typo. I&amp;#8217;d hate to have to go in and change my css/images each time I want to upgrade. I wonder if &lt;a href="http://blog.leetsoft.com/"&gt;Tobi&lt;/a&gt; has added my &lt;a href="http://www.postgresql.org/"&gt;PostgreSQL&lt;/a&gt; patch to the tree yet. I know two people who are using it (the pgsql patch) currently. &lt;a href="http://blog.curthibbs.us"&gt;Curt Hibbs&lt;/a&gt; and &lt;a href="http://www.robbyonrails.com/"&gt;myself&lt;/a&gt;.&lt;/p&gt;

    &lt;p&gt;Since I have started to use &lt;a href="http://typo.leetsoft.com/"&gt;Typo&lt;/a&gt; (only a few weeks now), the list of people using it on the &lt;a href="http://typo.leetsoft.com/"&gt;Typo page&lt;/a&gt; has gone from 2 listed to over 20.&lt;/p&gt;
</description>
      <pubDate>Mon, 04 Apr 2005 14:50:58 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:d617200fe36bc7d9350c7678eca680f5</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/04/04/need-to-upgrade-my-typo-install</link>
      <category>Typo</category>
    </item>
    <item>
      <title>Updating the default template</title>
      <description>&lt;p&gt;Playing around with the template a bit. (css and the header image..)&lt;/p&gt;
</description>
      <pubDate>Sun, 13 Mar 2005 18:32:37 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:4dfd4bc5b570acb7a41a302ceda1a980</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/03/13/updating-the-default-template</link>
      <category>Typo</category>
    </item>
    <item>
      <title>BloGTK and Typo</title>
      <description>&lt;p&gt;When you run BloGTK and Typo together, make sure you set the &lt;span class="caps"&gt;&lt;span class="caps"&gt;API&lt;/span&gt;&lt;/span&gt; to MoveableType in your Preferences.&lt;/p&gt;

    &lt;p&gt;&lt;img src="http://www.robbyrussell.com/albums/Desktops/blogtk_type_prefs.jpg"  /&gt;&lt;/p&gt;

    &lt;p&gt;..and a screenshot of me posting this entry.&lt;/p&gt;

    &lt;p&gt;&lt;img src="http://www.robbyrussell.com/albums/Desktops/blogtk_type_prefs_2.jpg" /&gt;&lt;/p&gt;
</description>
      <pubDate>Sun, 13 Mar 2005 17:34:36 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c473fdd56818ba9f0a145ca9bc1b1629</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2005/03/13/blogtk-and-typo</link>
      <category>Typo</category>
    </item>
  </channel>
</rss>
