<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/atom10full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xml:lang="en" xml:base="http://robbycolvin.com/wp-atom.php">
	<title type="text">Robby Colvin</title>
	<subtitle type="text">My corner of the web</subtitle>

	<updated>2008-11-17T00:41:03Z</updated>
	<generator uri="http://wordpress.org/" version="2.6.3">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://robbycolvin.com" />
	<id>http://robbycolvin.com/feed/atom/</id>
	

			<link rel="self" href="http://feeds.feedburner.com/RobbyColvin" type="application/atom+xml" /><entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[My Merb Textmate Bundle]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/my-merb-textmate-bundle/" />
		<id>http://robbycolvin.com/?p=129</id>
		<updated>2008-11-17T00:41:03Z</updated>
		<published>2008-11-17T00:41:03Z</published>
		<category scheme="http://robbycolvin.com" term="Merb" /><category scheme="http://robbycolvin.com" term="Textmate" />		<summary type="html"><![CDATA[The awesome Dr Nic Williams has a Textmate bundle for Merb that makes development go a bit faster. If you&#8217;re used to using Rails in Textmate, you are most likely familiar with the large amount of snippets and commands that are available. Since Merb is still so new, the amount of snippets and commands for [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/my-merb-textmate-bundle/">&lt;p&gt;The awesome &lt;a title="Dr. Nic Williams" href="http://drnicwilliams.com/"&gt;Dr Nic Williams&lt;/a&gt; has a Textmate bundle for Merb that makes development go a bit faster. If you&amp;#8217;re used to using Rails in Textmate, you are most likely familiar with the large amount of snippets and commands that are available. Since Merb is still so new, the amount of snippets and commands for Textmate are not as robust as Rails. So I decided to fork Dr Nic&amp;#8217;s Github repo and try to help out as much as I can. So far I&amp;#8217;ve only added a few validation snippets for Datamapper, but I&amp;#8217;m hoping to add much more as I find the time:&lt;/p&gt;
&lt;p&gt;&lt;a title="My merb-tmbundle fork" href="http://github.com/geetarista/merb-tmbundle"&gt;http://github.com/geetarista/merb-tmbundle&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Please let me know if you have any changes or recommendations for these snippets. Hopefully more people will take a little time to add to Dr Nic&amp;#8217;s repo so we can have a nice suite of snippets for making development in Merb even faster.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=hgdNN"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=hgdNN" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=WlSCN"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=WlSCN" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/my-merb-textmate-bundle/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/my-merb-textmate-bundle/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Merb/Rubygems Upgrade Errors]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/merbrubygems-upgrade-errors/" />
		<id>http://robbycolvin.com/?p=126</id>
		<updated>2008-11-13T22:39:55Z</updated>
		<published>2008-11-13T22:39:55Z</published>
		<category scheme="http://robbycolvin.com" term="Merb" />		<summary type="html"><![CDATA[The Merb team worked very hard to realease Merb 1.0 after several release candidates and it is a wicked framework. Upgrading is pretty easy since all you have to do is install the Merb metapackage. However, several people have been having issues with Rubygems when upgrading to the new version of Merb. If you&#8217;re in [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/merbrubygems-upgrade-errors/">&lt;p&gt;The Merb team worked very hard to realease Merb 1.0 after several release candidates and it is a wicked framework. Upgrading is pretty easy since all you have to do is install the Merb metapackage. However, several people have been having issues with Rubygems when upgrading to the new version of Merb. If you&amp;#8217;re in Leopard, you may get a response saying that Merb requires Rubygems version &amp;gt; 1.3 to work. You may try to upgrade Rubygems, but you get another response saying there is nothing to update. Hmmm&amp;#8230;.what to do?&lt;/p&gt;
&lt;p&gt;Well, the fix is pretty simple. All you have to do is run one line of code (technically it&amp;#8217;s two, but this is easier):&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo gem install rubygems-update &amp;amp;&amp;amp; sudo update_rubygems&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Then all you have to do is install Merb and everything should work fine:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo gem install merb&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Now you can play around with the beautifulness that is Merb 1.0!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=1jFrN"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=1jFrN" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=6N2uN"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=6N2uN" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/merbrubygems-upgrade-errors/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/merbrubygems-upgrade-errors/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[More Merb at MerbCamp]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/more-merb-at-merbcamp/" />
		<id>http://robbycolvin.com/?p=122</id>
		<updated>2008-10-13T21:51:27Z</updated>
		<published>2008-10-13T21:51:27Z</published>
		<category scheme="http://robbycolvin.com" term="Merb" /><category scheme="http://robbycolvin.com" term="merbcamp" />		<summary type="html"><![CDATA[I spent this weekend in San Diego to attend MerbCamp, a conference dedicated entirely to the Merb framework. I have been so happy with the time I have spent learning Ruby and Rails, but learning more about Merb this weekend literally made me giddy. I started looking at Merb a little while ago, but I [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/more-merb-at-merbcamp/">&lt;p&gt;I spent this weekend in San Diego to attend MerbCamp, a conference dedicated entirely to the Merb framework. I have been so happy with the time I have spent learning Ruby and Rails, but learning more about Merb this weekend literally made me giddy. I started looking at Merb a little while ago, but I didn&amp;#8217;t do much with it since it was constantly changing and I did not want to adjust to the overhauls that were occurring. I wanted to wait until it was more stable before I gave it a shot. Since the first release candidate of Merb is almost out, I thought now was the time to get my feet wet.&lt;/p&gt;
&lt;p&gt;To me, the most important difference or advantage for Merb so far has been the philosophy. Rails (DHH) is very opinionated, which is great, but it does not allow flexibility when you need to do something that Rails does not support. Merb on the other hand has been built from the ground up with the opinion that the developer should have the freedom to mold the framework to their needs, if necessary. Merb is framework and library agnostic, so wanting or needing to use jQuery or DataMapper for your application isn&amp;#8217;t a pain at all. In fact, it&amp;#8217;s ideal. There is so much more to Merb that just makes sense to me as a developer.&lt;/p&gt;
&lt;p&gt;Although Rails will still be in the picture, I am looking forward to using Merb much more often and maybe even completely replacing Rails some time in the future.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=NgwSM"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=NgwSM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=4GnlM"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=4GnlM" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/more-merb-at-merbcamp/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/more-merb-at-merbcamp/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Information Overload]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/information-overload/" />
		<id>http://robbycolvin.com/?p=118</id>
		<updated>2008-08-25T19:27:42Z</updated>
		<published>2008-08-23T17:10:58Z</published>
		<category scheme="http://robbycolvin.com" term="General" /><category scheme="http://robbycolvin.com" term="Google" />		<summary type="html"><![CDATA[I like to be informed. I like knowing what is happening in the world, especially when it comes to technology. Lately I think I have been receiving just a little too much information, though. My current Google Reader subscription count is 1,141 feeds. From those 1,141 subscriptions, I have read 20,559 items in the last [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/information-overload/">&lt;p&gt;I like to be informed. I like knowing what is happening in the world, especially when it comes to technology. Lately I think I have been receiving just a little too much information, though. My current Google Reader subscription count is 1,141 feeds. From those 1,141 subscriptions, I have read 20,559 items in the last 30 days. I don&amp;#8217;t know if Google planned on people having that many descriptions since I can&amp;#8217;t even see them all on my subscriptions page:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://robbycolvin.com/wp-content/uploads/2008/08/subscriptions.png"&gt;&lt;img align="left" class="alignleft size-full wp-image-119" style="margin-left: 10px; margin-right: 10px;" title="subscriptions" src="http://robbycolvin.com/wp-content/uploads/2008/08/subscriptions.png" alt="" width="359" height="182" /&gt;&lt;/a&gt;That black space goes all the way down to the page so I cannot even see any of my subscriptions past this point. My main problem is that whenever I find something that I like on the web, I subscribe to that feed since I&amp;#8217;m sure I&amp;#8217;ll like whatever they post in the future. Alas, that is not always the case and I become too overwhelmed when I have so many things to read. I love information and I love to read, but this is just going too far.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=AXe1tK"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=AXe1tK" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=tADfOK"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=tADfOK" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/information-overload/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/information-overload/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[DreamHost Supports Phusion Passenger]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/dreamhost-supports-phusion-passenger/" />
		<id>http://robbycolvin.com/?p=117</id>
		<updated>2008-05-21T18:47:42Z</updated>
		<published>2008-05-21T18:47:42Z</published>
		<category scheme="http://robbycolvin.com" term="Ruby/Rails" /><category scheme="http://robbycolvin.com" term="Web Design" />		<summary type="html"><![CDATA[I discussed previously that I switched over to DreamHost for this website and I have been very happy with them so far.  Something that made me even happier was their announcement of DreamHost support for Phusion Passenger. This is huge for both Ruby and Rails since DreamHost is a major hosting provider and will provide [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/dreamhost-supports-phusion-passenger/">&lt;p&gt;I discussed previously that I switched over to DreamHost for this website and I have been very happy with them so far.  Something that made me even happier was their announcement of &lt;a href="http://blog.dreamhost.com/2008/05/13/passenger-for-ruby-on-rails/" target="_blank"&gt;DreamHost support for Phusion Passenger&lt;/a&gt;. This is huge for both Ruby and Rails since DreamHost is a major hosting provider and will provide a cheaper solution to other Rails hosting providers. Using Phusion with DreamHost is super easy and I tried it out just to see how easy it was.&lt;/p&gt;
&lt;p&gt;I first started on their &lt;a href="http://http://wiki.dreamhost.com/Passenger" target="_blank"&gt;Passenger wiki page&lt;/a&gt; which gives just a few steps to get a Rails app working. This is literally all I had to do to set up an installation of &lt;a href="http://typosphere.org/" target="_blank"&gt;Typo&lt;/a&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Transfer over my typo folder to my server&lt;/li&gt;
&lt;li&gt;Set up a sub-domain with the Passenger option pointing to my typo/public folder&lt;/li&gt;
&lt;li&gt;Set up the databases&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That was literally all I had to do. &lt;a href="http://phusion.robbycolvin.com/" target="_self"&gt;Check it out&lt;/a&gt;. I will probably try and convert this site over to a Rails blogging system soon.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=8XQs0H"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=8XQs0H" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=AHvGJH"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=AHvGJH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/dreamhost-supports-phusion-passenger/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/dreamhost-supports-phusion-passenger/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Styled Browser Tooltips]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/styled-browser-tooltips/" />
		<id>http://robbycolvin.com/?p=116</id>
		<updated>2008-05-08T20:27:07Z</updated>
		<published>2008-05-08T20:27:07Z</published>
		<category scheme="http://robbycolvin.com" term="Web Design" />		<summary type="html"><![CDATA[There are many solutions out there to style cool-looking tooltips using css, javascript, or a mixture of both.  Usually people try to go with CSS-only solutions since they degrade nicely and are more accessible.  I have seen really nice tooltips that look really nice, but it makes me wonder about something.  Most of these implementations [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/styled-browser-tooltips/">&lt;p&gt;There are many solutions out there to style cool-looking tooltips using css, javascript, or a mixture of both.  Usually people try to go with CSS-only solutions since they degrade nicely and are more accessible.  I have seen really nice tooltips that look really nice, but it makes me wonder about something.  Most of these implementations use a class on elements that are basically created to act as a tooltip.  So why does CSS not have the ability to style specific HTML attributes such as title, alt, etc.?  Default title attributes look exactly the same in most browsers and there is obviously a way for browsers to style those attributes.  CSS3 adds to the possibilities of creating good looking tooltips, but it still does not offer the ability to style the browser&amp;#8217;s own tooltips.  I really wonder why since this is so much simpler than most of the hacks out there.  Is this something that can be done with Greasemonkey?  I understand that most people create their own tooltips for effect, but this type of application could help with design and accessibility as well.  Think about a site that uses mostly yellow in its design.  A standard title tooltip would obviously be difficult to read.&lt;/p&gt;
&lt;p&gt;Could this also open up more possibilities for the rest of the HTML attributes?  I know I am raising several questions here, but I do not see why this could be so hard to implement.  Maybe there is an obvious answer out there, but I have yet to find it.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=DvEh6H"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=DvEh6H" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=BOnggH"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=BOnggH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/styled-browser-tooltips/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/styled-browser-tooltips/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Firefox 3 Beta 5 is Beautiful]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/firefox-3-beta-5-is-beautiful/" />
		<id>http://robbycolvin.com/?p=115</id>
		<updated>2008-04-04T19:55:52Z</updated>
		<published>2008-04-04T19:55:52Z</published>
		<category scheme="http://robbycolvin.com" term="Firefox" />		<summary type="html"><![CDATA[I have been watching the progress of Firefox 3 and I have been very happy with the results.  Since the 5th beta was recently released, I decided that it was time to take the plunge and try it out.
The most important thing that I have been waiting for are improvements in speed and memory use.  [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/firefox-3-beta-5-is-beautiful/">&lt;p&gt;I have been watching the progress of Firefox 3 and I have been very happy with the results.  Since the &lt;a href="http://www.mozilla.com/en-US/firefox/all-beta.html"&gt;5th beta was recently released&lt;/a&gt;, I decided that it was time to take the plunge and try it out.&lt;/p&gt;
&lt;p&gt;The most important thing that I have been waiting for are improvements in speed and memory use.  I use Firefox for almost everything, so it can get pretty heavy when I&amp;#8217;ve got 50 tabs open and trying to do so many things.  Since switching over to beta 5, everything in Firefox has been so much faster!  Usually when I start opening a lot of tabs, Firefox gets real slow and I have to wait before opening the next tab.  Now I can just keep opening tabs without any lag whatsoever.  Since the JavaScript engine was improved as well, almost every website that I visit has had noticeable speed gains.&lt;/p&gt;
&lt;p&gt;I really love everything else about Firefox 3 and I think that it will be a great step for Mozilla.  There are so many changes and improvements that I would not even possibly begin talking about them.  The only issue I have so far is that half of my plug-ins do not work, but I&amp;#8217;ll just have to wait for those plug-in developers to get up to speed.  Overall, I think Firefox 3 is going to blow away Internet Explorer even more than it already does.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=H3zuvwG"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=H3zuvwG" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=pgwcL6G"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=pgwcL6G" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/firefox-3-beta-5-is-beautiful/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/firefox-3-beta-5-is-beautiful/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Upgrade to Wordpress 2.5]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/upgrade-to-wordpress-25/" />
		<id>http://robbycolvin.com/?p=114</id>
		<updated>2008-03-31T00:06:45Z</updated>
		<published>2008-03-31T00:06:45Z</published>
		<category scheme="http://robbycolvin.com" term="Wordpress" />		<summary type="html"><![CDATA[Wordpress 2.5 has been out for a little bit now, so I have decided to upgrade.  Everything went surprisingly well and I luckily did not run into any problems whatsoever.
I really like the new interface as it seems much cleaner and easier to use.  My favorite new feature is the ability to upgrade plug-ins with [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/upgrade-to-wordpress-25/">&lt;p&gt;&lt;a href="http://wordpress.org/download"&gt;Wordpress 2.5&lt;/a&gt; has been out for a little bit now, so I have decided to upgrade.  Everything went surprisingly well and I luckily did not run into any problems whatsoever.&lt;/p&gt;
&lt;p&gt;I really like the new interface as it seems much cleaner and easier to use.  My favorite new feature is the ability to upgrade plug-ins with just one click.  After upgrading Wordpress, I realized that I had a ton of plug-ins that were way out of date.  Before this I had to download each individual plug-in and manually upgrade it to my Wordpress installation.  Not anymore!&lt;/p&gt;
&lt;p&gt;Overall, the upgrade went very well and I recommend that anyone that uses Wordpress do the same.  Not only is it worth doing so for aesthetic reasons, but for security as well.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=cCUyFlF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=cCUyFlF" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=tbBCQGF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=tbBCQGF" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/upgrade-to-wordpress-25/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/upgrade-to-wordpress-25/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[I Love Gnome Do]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/i-love-gnome-do/" />
		<id>http://robbycolvin.com/archives/i-love-gnome-do/</id>
		<updated>2008-03-25T19:51:55Z</updated>
		<published>2008-03-25T19:50:56Z</published>
		<category scheme="http://robbycolvin.com" term="Linux" /><category scheme="http://robbycolvin.com" term="Software" /><category scheme="http://robbycolvin.com" term="Ubuntu" />		<summary type="html"><![CDATA[I previously wrote about an alternative to Quicksilver in Linux, but I think I have finally found what I&#8217;ve been looking for: Gnome Do. I previously saw Gnome Do when it was in its infancy and haven&#8217;t really taken a look at it since then.  However, Gnome Do has greatly improved its functionality and [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/i-love-gnome-do/">&lt;p&gt;I previously wrote about an &lt;a href="http://robbycolvin.com/archives/quicksilver-replacement-for-linux/"&gt;alternative to Quicksilver in Linux&lt;/a&gt;, but I think I have finally found what I&amp;#8217;ve been looking for: &lt;a href="http://do.davebsd.com/" title="Gnome Do"&gt;Gnome Do&lt;/a&gt;. I previously saw Gnome Do when it was in its infancy and haven&amp;#8217;t really taken a look at it since then.  However, Gnome Do has greatly improved its functionality and consequently many plug-ins have been created.  It still has quite a way to go to until it has the full capabilities of Quicksilver, but this beautiful app is definitely on its way.&lt;/p&gt;
&lt;p&gt;To install in Ubuntu, just add the following two lines to your sources.list:&lt;/p&gt;
&lt;pre&gt;deb http://ppa.launchpad.net/do-core/ubuntu gutsy main

deb-src http://ppa.launchpad.net/do-core/ubuntu gutsy main&lt;/pre&gt;
&lt;p&gt;Then just run:&lt;/p&gt;
&lt;pre&gt;sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install gnome-do gnome-do-plugins&lt;/pre&gt;
&lt;p&gt;And you&amp;#8217;re set!  Just add gnome-do to your session and it will start up every time you log in. To use it, just hit Super (Win) + Space and start searching! Then head over to the &lt;a href="https://wiki.ubuntu.com/GnomeDo/Plugins"&gt;plug-ins page&lt;/a&gt; to add additional plug-ins that meet your needs.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=jdmzVMF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=jdmzVMF" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=XhFFLMF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=XhFFLMF" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/i-love-gnome-do/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/i-love-gnome-do/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>geetarista</name>
						<uri>http://robbycolvin.com</uri>
					</author>
		<title type="html"><![CDATA[Google Reader: Slow Starred Items]]></title>
		<link rel="alternate" type="text/html" href="http://robbycolvin.com/archives/google-reader-slow-starred-items/" />
		<id>http://robbycolvin.com/archives/google-reader-slow-starred-items/</id>
		<updated>2008-03-19T19:39:56Z</updated>
		<published>2008-03-19T19:39:56Z</published>
		<category scheme="http://robbycolvin.com" term="Uncategorized" />		<summary type="html"><![CDATA[I really love Google Reader and all of its wonderful features.  However, I do have only one small issue that really drives me crazy: slow starred items.  No matter if I only have one starred item, Google Reader will sit there &#8220;Loading&#8230;&#8221; for sometimes up to five minutes before it will switch over. [...]]]></summary>
		<content type="html" xml:base="http://robbycolvin.com/archives/google-reader-slow-starred-items/">&lt;p&gt;I really love Google Reader and all of its wonderful features.  However, I do have only one small issue that really drives me crazy: slow starred items.  No matter if I only have one starred item, Google Reader will sit there &amp;#8220;Loading&amp;#8230;&amp;#8221; for sometimes up to five minutes before it will switch over.  I really rely on starred items as those stories that I do not have time for immediately and want to save for later.  Every other feature of Google Reader works very fast for me&amp;#8211;impressively fast, actually.  I know it is not my computer either since I have tried this on several different computers.&lt;/p&gt;
&lt;p&gt;Has anyone else had any issues like this with their Starred Items?  I have searched around but have not seen anyone else with this problem or a solution for it.  Until I figure it out, I&amp;#8217;ll just have to (un)patiently wait.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=wQMf0NF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=wQMf0NF" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/RobbyColvin?a=MpiA9EF"&gt;&lt;img src="http://feeds.feedburner.com/~f/RobbyColvin?i=MpiA9EF" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://robbycolvin.com/archives/google-reader-slow-starred-items/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://robbycolvin.com/archives/google-reader-slow-starred-items/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
	</feed>
