<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><description>Hey I’m Red Davis, a programmer from Bath, England. I’m Currently working for Green Thing and have an interest in machine learning.</description><title>Red Writes Here</title><generator>Tumblr (3.0; @reddavis)</generator><link>http://redwriteshere.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/redwriteshere/btlX" /><feedburner:info uri="redwriteshere/btlx" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>One40Proof v0.0.2 - Parallel Requests</title><description>&lt;p&gt;I have just released the v0.0.2 of the 140Proof gem. The main new feature for this release is the ability to make parallel requests. This can be useful if you are displaying multiple ads on one page/screen.&lt;/p&gt;

&lt;p&gt;The readme with benchmarks and examples can be found &lt;a href="http://github.com/reddavis/One40Proof/blob/master/README.rdoc"&gt;here&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/dE7u5ze9xwE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/dE7u5ze9xwE/433224403</link><guid isPermaLink="false">http://redwriteshere.com/post/433224403</guid><pubDate>Sun, 07 Mar 2010 22:35:00 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/433224403</feedburner:origLink></item><item><title>140 Proof: HootSuite joins the Proof Network</title><description>&lt;a href="http://blog.140proof.com/post/422782389/hootsuite-joins-the-proof-network"&gt;140 Proof: HootSuite joins the Proof Network&lt;/a&gt;: &lt;blockquote&gt;
&lt;p&gt;&lt;img src="http://blog.timgoleman.com/wp-content/uploads/2009/12/HootSuite.jpg"/&gt;&lt;/p&gt;
&lt;p&gt;Today we are pleased to welcome &lt;a href="http://hootsuite.com"&gt;HootSuite&lt;/a&gt; to the 140 Proof Network.&lt;/p&gt;
&lt;p&gt;HootSuite, the professional Twitter client, lets users manage their entire Twitter experience from one easy-to-use interface. HootSuite is a top ten Twitter client, and 140 Proof will be serving ads on HootSuite’s newly…&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/xPSPylsThpc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/xPSPylsThpc/433189292</link><guid isPermaLink="false">http://redwriteshere.com/post/433189292</guid><pubDate>Sun, 07 Mar 2010 22:17:46 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/433189292</feedburner:origLink></item><item><title>140Proof Gem</title><description>&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_ky3crj65TV1qzdwjw.jpg"/&gt;&lt;/center&gt;

&lt;p&gt;I have recently released a Ruby gem for the &lt;a href="http://140proof.com/"&gt;140Proof&lt;/a&gt; &lt;a href="http://developers.140proof.com/docs/"&gt;API&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The code is located on &lt;a href="http://github.com/reddavis/One40Proof"&gt;Github&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Here’s the &lt;a href="http://github.com/reddavis/One40Proof/blob/master/README.rdoc"&gt;README&lt;/a&gt; which explains everything you need to know.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/ObWe5GUAxZ8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/ObWe5GUAxZ8/398558882</link><guid isPermaLink="false">http://redwriteshere.com/post/398558882</guid><pubDate>Fri, 19 Feb 2010 13:43:35 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/398558882</feedburner:origLink></item><item><title>FIXME, TODO and OPTIMIZE code comments</title><description>&lt;p&gt;&lt;a href="http://rubyquicktips.tumblr.com/post/385665023/fixme-todo-and-optimize-code-comments" class="tumblr_blog"&gt;rubyquicktips&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You can add some special notes to your source code comments in Rails to remind you later of stuff you need to do:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;class Article &lt; ActiveRecord::Base
  # TODO add named_scopes
  # FIXME method A is broken
  # OPTIMIZE improve the code 

  has_many :comments
  ....
end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You can list these special notes with a rake task:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ rake notes
app/models/article.rb:
  * [2] [TODO] add named_scopes
  * [3] [FIXME] method A is broken
  * [4] [OPTIMIZE] improve the code
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You can also list notes of each kind individually with &lt;code&gt;rake notes:todo&lt;/code&gt;, &lt;code&gt;rake notes:fixme&lt;/code&gt; and &lt;code&gt;rake notes:optimize&lt;/code&gt;.&lt;br/&gt;
You can even list your own, custom notes with &lt;code&gt;rake notes:custom ANNOTATION=MYANNO&lt;/code&gt;.&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/-IV1cP87cpE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/-IV1cP87cpE/391225216</link><guid isPermaLink="false">http://redwriteshere.com/post/391225216</guid><pubDate>Mon, 15 Feb 2010 19:31:08 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/391225216</feedburner:origLink></item><item><title>Date manipulation</title><description>&lt;p&gt;&lt;a href="http://rubyquicktips.tumblr.com/post/354231466/date-manipulation" class="tumblr_blog"&gt;rubyquicktips&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You can add or subtract days or month from a &lt;a href="http://www.ruby-doc.org/core/classes/Date.html"&gt;&lt;code&gt;Date&lt;/code&gt;&lt;/a&gt; object:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;+(n)&lt;/code&gt;: add n number of days&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;-(n)&lt;/code&gt;: subtract n number of days&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&gt;&gt;(n)&lt;/code&gt;: add n number of months&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&lt;&lt;(n)&lt;/code&gt;: subtract n number of months&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here are some examples:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ irb
&gt;&gt; date = Date.today     # =&gt; #&lt;Date: ...&gt;
&gt;&gt; date.to_s
=&gt; "2010-01-26"
&gt;&gt; tomorrow = date + 1   # =&gt; #&lt;Date: ...&gt;
&gt;&gt; tomorrow.to_s
=&gt; "2010-01-27"
&gt;&gt; nextmonth = date &gt;&gt; 1 # =&gt; #&lt;Date: ...&gt;
&gt;&gt; nextmonth.to_s
=&gt; "2010-02-26"
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Read the &lt;a href="http://www.ruby-doc.org/core/classes/Date.html#M000671"&gt;documentation&lt;/a&gt; for a more precise description.&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/NL7cDKFvjZs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/NL7cDKFvjZs/391220000</link><guid isPermaLink="false">http://redwriteshere.com/post/391220000</guid><pubDate>Mon, 15 Feb 2010 19:27:24 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/391220000</feedburner:origLink></item><item><title>Facebook Data Team: Relationships and Happiness</title><description>&lt;a href="http://bit.ly/d2QMFE"&gt;Facebook Data Team: Relationships and Happiness&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/ydS3rBuPamI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/ydS3rBuPamI/390565243</link><guid isPermaLink="false">http://redwriteshere.com/post/390565243</guid><pubDate>Mon, 15 Feb 2010 10:09:44 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/390565243</feedburner:origLink></item><item><title>Video</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/2GtgSkmDnbQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/2GtgSkmDnbQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/vHsjGuFuRPE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/vHsjGuFuRPE/378333836</link><guid isPermaLink="false">http://redwriteshere.com/post/378333836</guid><pubDate>Mon, 08 Feb 2010 17:20:59 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/378333836</feedburner:origLink></item><item><title>Code Swarm of Green Thing’s commit history. (using...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/i__cS1DznWg&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/i__cS1DznWg&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Code Swarm of Green Thing’s commit history. (using &lt;a href="http://github.com/sandofsky/code_swarm"&gt;http://github.com/sandofsky/code_swarm&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/jTOX0JD8Iyw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/jTOX0JD8Iyw/374539398</link><guid isPermaLink="false">http://redwriteshere.com/post/374539398</guid><pubDate>Sat, 06 Feb 2010 19:18:00 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/374539398</feedburner:origLink></item><item><title>
</title><description>&lt;p&gt;
&lt;script src="http://gist.github.com/295905.js?file=gistfile1.rb"&gt;&lt;/script&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/pQo1YcwiVuc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/pQo1YcwiVuc/372525260</link><guid isPermaLink="false">http://redwriteshere.com/post/372525260</guid><pubDate>Fri, 05 Feb 2010 16:38:13 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/372525260</feedburner:origLink></item><item><title>railslove:


surrealtime:

crystalrosee:

erinelectric:

swimming...</title><description>&lt;img src="http://27.media.tumblr.com/tumblr_kx6b9errTW1qa8irgo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://tumble.railslove.com/post/366729518/surrealtime-crystalrosee-erinelectric" class="tumblr_blog"&gt;railslove&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://surrealtime.railcs.com/post/365890224/crystalrosee-erinelectric"&gt;surrealtime&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://crystalrosee.tumblr.com/post/365682026/erinelectric-swimmingthroughthestereo-via"&gt;crystalrosee&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://erinelectric.tumblr.com/post/365496397/swimmingthroughthestereo-via"&gt;erinelectric&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://swimmingthroughthestereo.tumblr.com/post/365350454"&gt;swimmingthroughthestereo&lt;/a&gt;:(via &lt;a href="http://thealicetoyourwonderland.tumblr.com/"&gt;thealicetoyourwonderland&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/UrQYoIIy8EY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/UrQYoIIy8EY/372524747</link><guid isPermaLink="false">http://redwriteshere.com/post/372524747</guid><pubDate>Fri, 05 Feb 2010 16:37:43 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/372524747</feedburner:origLink></item><item><title>sblackstone's auto_sprite. Generates CSS sprites for you using RMagick</title><description>&lt;a href="http://github.com/sblackstone/auto_sprite"&gt;sblackstone's auto_sprite. Generates CSS sprites for you using RMagick&lt;/a&gt;: &lt;p&gt;&lt;a href="http://tumble.railslove.com/post/364922647/sblackstones-auto-sprite-generates-css-sprites-for" class="tumblr_blog"&gt;railslove&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;“CSS Sprites can get you down, don’t let them. This gem automatically creates the CSS, Sprite and HTML tags so you don’t have to”&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/zeIrsN2v3dM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/zeIrsN2v3dM/364930614</link><guid isPermaLink="false">http://redwriteshere.com/post/364930614</guid><pubDate>Mon, 01 Feb 2010 10:47:40 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/364930614</feedburner:origLink></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_kx40ykBBHI1qzfmueo1_400.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/a8Z3mFSdZ9w" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/a8Z3mFSdZ9w/363080032</link><guid isPermaLink="false">http://redwriteshere.com/post/363080032</guid><pubDate>Sun, 31 Jan 2010 11:51:00 +0000</pubDate><category>sl</category><feedburner:origLink>http://redwriteshere.com/post/363080032</feedburner:origLink></item><item><title>Internship At Green Thing</title><description>&lt;p&gt;&lt;object id="doc_605326718980494" name="doc_605326718980494" height="600" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;"&gt;		&lt;param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"&gt;
&lt;param name="wmode" value="opaque"&gt;
&lt;param name="bgcolor" value="#ffffff"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;param name="allowScriptAccess" value="always"&gt;
&lt;param name="FlashVars" value="document_id=25531255&amp;access_key=key-1f8r43kcbkske8l06v0x&amp;page=1&amp;viewMode=list"&gt;&lt;/object&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/G-q7GlDy7Rs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/G-q7GlDy7Rs/361482078</link><guid isPermaLink="false">http://redwriteshere.com/post/361482078</guid><pubDate>Sat, 30 Jan 2010 15:47:28 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/361482078</feedburner:origLink></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_kx079t8QuG1qzfmueo1_400.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/mmgGYjpIiZA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/mmgGYjpIiZA/359444886</link><guid isPermaLink="false">http://redwriteshere.com/post/359444886</guid><pubDate>Fri, 29 Jan 2010 10:17:53 +0000</pubDate><category>sle</category><feedburner:origLink>http://redwriteshere.com/post/359444886</feedburner:origLink></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_kwydzhX6fL1qzfmueo1_400.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/Cu-8-dy0QKo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/Cu-8-dy0QKo/357729529</link><guid isPermaLink="false">http://redwriteshere.com/post/357729529</guid><pubDate>Thu, 28 Jan 2010 10:47:41 +0000</pubDate><category>sleep cycle</category><feedburner:origLink>http://redwriteshere.com/post/357729529</feedburner:origLink></item><item><title>Created with Sleep Cycle iPhone app.</title><description>&lt;img src="http://28.media.tumblr.com/tumblr_kwwffx4REE1qzfmueo1_400.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Created with Sleep Cycle iPhone app.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/mGwX09gnOBI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/mGwX09gnOBI/355896648</link><guid isPermaLink="false">http://redwriteshere.com/post/355896648</guid><pubDate>Wed, 27 Jan 2010 09:23:00 +0000</pubDate><category>sleep cycle</category><feedburner:origLink>http://redwriteshere.com/post/355896648</feedburner:origLink></item><item><title>List of Stop Words</title><description>&lt;a href="http://gist.github.com/284755"&gt;List of Stop Words&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/6YWnMKtopTM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/6YWnMKtopTM/349396315</link><guid isPermaLink="false">http://redwriteshere.com/post/349396315</guid><pubDate>Sat, 23 Jan 2010 19:34:26 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/349396315</feedburner:origLink></item><item><title>"Don’t worry about diplomas or degrees; just get so good that no one can ignore you."</title><description>“Don’t worry about diplomas or degrees; just get so good that no one can ignore you.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;James Bach&lt;/em&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/bSCwPkqBs50" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/bSCwPkqBs50/349140511</link><guid isPermaLink="false">http://redwriteshere.com/post/349140511</guid><pubDate>Sat, 23 Jan 2010 16:03:32 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/349140511</feedburner:origLink></item><item><title>"I believe that everything happens for a reason. People change so that you can learn to let go,..."</title><description>““I believe that everything happens for a reason. People change so that you can learn to let go, things go wrong so that you appreciate them when they’re right, you believe lies so you eventually learn to trust no one but yourself, and sometimes good things fall apart so better things can fall together.””&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;Marilyn Monroe (via &lt;a href="http://www.brittanybohnet.com/"&gt;brit&lt;/a&gt;) (via &lt;a href="http://davemorin.tumblr.com/" class="tumblr_blog"&gt;davemorin&lt;/a&gt;)&lt;/em&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/uvPM1fNzxrQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/uvPM1fNzxrQ/347910937</link><guid isPermaLink="false">http://redwriteshere.com/post/347910937</guid><pubDate>Fri, 22 Jan 2010 22:03:32 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/347910937</feedburner:origLink></item><item><title>Visor For Terminal</title><description>&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_kwnlhx4tHa1qzdwjw.png"/&gt;&lt;/p&gt;

&lt;p&gt;If you use a Mac for development, I highly recommend Visor. Instead of tabbing back to Terminal or flicking between spaces, just press a shortcut and Terminal will magically appear.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/redwriteshere/btlX/~4/KCfhVO8BNqs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/redwriteshere/btlX/~3/KCfhVO8BNqs/347461197</link><guid isPermaLink="false">http://redwriteshere.com/post/347461197</guid><pubDate>Fri, 22 Jan 2010 14:58:21 +0000</pubDate><feedburner:origLink>http://redwriteshere.com/post/347461197</feedburner:origLink></item></channel></rss>
