<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.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>crunchlife: Tag Inspiration</title>
    <link>http://crunchlife.com/articles/tag/inspiration</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Lagoa Multiphysics 1.0</title>
      <description>&lt;object width="400" height="225"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13457383&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=13457383&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;a href="http://vimeo.com/13457383"&gt;Lagoa Multiphysics 1.0 - Teaser&lt;/a&gt; from &lt;a href="http://vimeo.com/thiagocosta"&gt;Thiago Costa&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;

</description>
      <pubDate>Tue, 20 Jul 2010 20:17:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:3dbb944f-64f2-4f92-ada0-124df1e8ba48</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2010/07/20/lagoa-multiphysics-1-0</link>
      <category>Inspiration</category>
    </item>
    <item>
      <title>Robert Martin's &amp;quot;Twenty-Five Zeros&amp;quot; Keynote at RailsConf 2010</title>
      <description>&lt;embed src="http://blip.tv/play/AYHl5AoC" type="application/x-shockwave-flash" width="480" height="300" allowscriptaccess="always" allowfullscreen="true"&gt;&lt;/embed&gt;

</description>
      <pubDate>Thu, 24 Jun 2010 19:04:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:da42e46d-5e68-4fc2-b6a6-047bb229b121</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2010/06/24/robert-martins-twenty-five-zeros-keynote-at-railsconf-2010</link>
      <category>Programming</category>
      <category>Inspiration</category>
    </item>
    <item>
      <title>Hello MongoDB</title>
      <description>&lt;p&gt;In an effort to jump-start my creativity, I thought I&amp;#8217;d hop on the &lt;a href="http://en.wikipedia.org/wiki/NoSQL" target="_blank"&gt;NoSQL&lt;/a&gt; train and work up a little &amp;#8220;Hello World&amp;#8221; app using &lt;a href="http://mongodb.org" target="_blank"&gt;MongoDB&lt;/a&gt; with &lt;a href="http://www.sinatrarb.com/" target="_blank"&gt;Sinatra&lt;/a&gt; and &lt;a href="http://mongomapper.com/" target="_blank"&gt;MongoMapper&lt;/a&gt;.  In a later project I&amp;#8217;ll be throwing &lt;a href="" target="_blank"&gt;Haml&lt;/a&gt; into the mix and working completely outside of my comfort zone.  Dependencies be damned!&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_ruby "&gt;&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;rubygems&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;
&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;mongo_mapper&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;
&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;sinatra&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;

&lt;span class="constant"&gt;MongoMapper&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;connection&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="constant"&gt;Mongo&lt;/span&gt;&lt;span class="punct"&gt;::&lt;/span&gt;&lt;span class="constant"&gt;Connection&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;new&lt;/span&gt;&lt;span class="punct"&gt;('&lt;/span&gt;&lt;span class="string"&gt;localhost&lt;/span&gt;&lt;span class="punct"&gt;')&lt;/span&gt;
&lt;span class="constant"&gt;MongoMapper&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;database&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;messages&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;

&lt;span class="keyword"&gt;class &lt;/span&gt;&lt;span class="class"&gt;Message&lt;/span&gt;
  &lt;span class="ident"&gt;include&lt;/span&gt; &lt;span class="constant"&gt;MongoMapper&lt;/span&gt;&lt;span class="punct"&gt;::&lt;/span&gt;&lt;span class="constant"&gt;Document&lt;/span&gt;
  &lt;span class="ident"&gt;key&lt;/span&gt; &lt;span class="symbol"&gt;:message&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="constant"&gt;String&lt;/span&gt;
  &lt;span class="ident"&gt;key&lt;/span&gt; &lt;span class="symbol"&gt;:ip_address&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="constant"&gt;String&lt;/span&gt;
  &lt;span class="ident"&gt;timestamps!&lt;/span&gt;
&lt;span class="keyword"&gt;end&lt;/span&gt;

&lt;span class="ident"&gt;get&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;/&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt; &lt;span class="keyword"&gt;do&lt;/span&gt;
  &lt;span class="constant"&gt;Message&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;all&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;map&lt;/span&gt; &lt;span class="punct"&gt;{&lt;/span&gt; &lt;span class="punct"&gt;|&lt;/span&gt;&lt;span class="ident"&gt;m&lt;/span&gt;&lt;span class="punct"&gt;|&lt;/span&gt;
    &lt;span class="ident"&gt;time&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="ident"&gt;m&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;created_at&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;localtime&lt;/span&gt;
    &lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;On &lt;span class="expr"&gt;#{ time.strftime('%m/%d/%Y') }&lt;/span&gt; at &lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;&lt;/span&gt; \
    &lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;&lt;span class="expr"&gt;#{ time.strftime('%I:%M %p')}&lt;/span&gt; &amp;lt;strong&amp;gt;&lt;span class="expr"&gt;#{ m.ip_address }&lt;/span&gt;&amp;lt;/strong&amp;gt; said, &lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;&lt;/span&gt; \
    &lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;&amp;lt;strong&amp;gt;&lt;span class="escape"&gt;\&amp;quot;&lt;/span&gt;&lt;span class="expr"&gt;#{ m.message }&lt;/span&gt;&lt;span class="escape"&gt;\&amp;quot;&lt;/span&gt;&amp;lt;/strong&amp;gt;&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;
  &lt;span class="punct"&gt;}.&lt;/span&gt;&lt;span class="ident"&gt;join&lt;/span&gt; &lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;&amp;lt;br /&amp;gt;&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;
&lt;span class="keyword"&gt;end&lt;/span&gt;

&lt;span class="ident"&gt;get&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;/:message&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt; &lt;span class="keyword"&gt;do&lt;/span&gt;
  &lt;span class="constant"&gt;Message&lt;/span&gt;&lt;span class="punct"&gt;.&lt;/span&gt;&lt;span class="ident"&gt;create&lt;/span&gt;&lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="symbol"&gt;:message&lt;/span&gt; &lt;span class="punct"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="ident"&gt;params&lt;/span&gt;&lt;span class="punct"&gt;[&lt;/span&gt;&lt;span class="symbol"&gt;:message&lt;/span&gt;&lt;span class="punct"&gt;],&lt;/span&gt; &lt;span class="symbol"&gt;:ip_address&lt;/span&gt; &lt;span class="punct"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="attribute"&gt;@env&lt;/span&gt;&lt;span class="punct"&gt;['&lt;/span&gt;&lt;span class="string"&gt;REMOTE_ADDR&lt;/span&gt;&lt;span class="punct"&gt;']).&lt;/span&gt;&lt;span class="ident"&gt;save&lt;/span&gt;
  &lt;span class="ident"&gt;redirect&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;/&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;
&lt;span class="keyword"&gt;end&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;On 02/17/2010 at 10:13 PM &lt;strong&gt;127.0.0.1&lt;/strong&gt; said, &lt;strong&gt;&amp;#8220;Hello World!&amp;#8221;&lt;/strong&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 17 Feb 2010 20:11:00 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:d8efe6cb-4cee-4838-9fdb-333ee2157772</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2010/02/17/hello-mongodb</link>
      <category>Code Snippets</category>
      <category>Inspiration</category>
      <category>Ruby</category>
      <category>MongoDB</category>
      <category>Sinatra</category>
    </item>
    <item>
      <title>Data Visualization in the AlloSphere</title>
      <description>&lt;p&gt;&lt;object width="446" height="326"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt; &lt;param name="flashvars" value="vu=http://video.ted.com/talks/embed/JoAnnKuchera-Morin_2009-embed_high.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JoAnnKuchera-Morin-2009.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=516" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/JoAnnKuchera-Morin_2009-embed_high.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JoAnnKuchera-Morin-2009.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=516"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 03 Sep 2009 07:42:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:aaf4686b-ad8d-4a1e-822e-9af525437347</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2009/09/03/data-visualization-in-the-allosphere</link>
      <category>Inspiration</category>
    </item>
    <item>
      <title>Where is _why?</title>
      <description>&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Why_the_lucky_stiff" target="_blank"&gt;Why the lucky stiff&lt;/a&gt; speaking at the Carnegie Mellon Art and Code Symposium.  If &lt;a href="http://news.ycombinator.com/item?id=773108" target="_blank"&gt;the rumors&lt;/a&gt; are true, you&amp;#8217;ll be missed.&lt;/p&gt;

&lt;p&gt;&lt;object width="400" height="220"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5047563&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=5047563&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="220"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;a href="http://vimeo.com/5047563"&gt;ART &amp;amp;&amp;amp; CODE Symposium: Hackety Hack, why the lucky stiff&lt;/a&gt; from &lt;a href="http://vimeo.com/sfci"&gt;STUDIO for Creative Inquiry&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 20 Aug 2009 06:20:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:e25abfe2-f960-4f5e-9771-925530b1e98d</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2009/08/20/where-is-_why</link>
      <category>Expect the Unexpected</category>
      <category>Inspiration</category>
      <category>Ruby</category>
    </item>
    <item>
      <title>Fork Ruby?</title>
      <description>&lt;p&gt;Dave Thomas speaking at the 2008 RubyConf.
&lt;br /&gt;&lt;br /&gt;
&lt;embed src='http://rubyconf2008.confreaks.com/player.swf' height='260' width='640' allowscriptaccess='always' allowfullscreen='true' flashvars='image=images%2Fkeynote-preview.jpg&amp;amp;file=http%3A%2F%2Frubyconf2008.confreaks.com%2Fvideos%2Fkeynote-small.mp4&amp;amp;plugins=viral-1'/&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 29 Dec 2008 07:49:00 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:f327e414-ed8b-41f9-b8a1-ec03825d48b9</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/12/29/fork-ruby</link>
      <category>Inspiration</category>
      <category>Ruby</category>
    </item>
    <item>
      <title>Anders Hejlsberg: Where are Programming Languages Going?</title>
      <description>&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Anders_Hejlsberg" target="_blank"&gt;Anders Hejlsberg&lt;/a&gt; speaking at the &lt;a href="http://jaoo.dk/aarhus-2008/conference/" target="_blank"&gt;JAOO 2008&lt;/a&gt; conference about the future of programming languages.&lt;/p&gt;

&lt;p&gt;&lt;embed src="http://blip.tv/play/6VbQ6hqJtgc" type="application/x-shockwave-flash" width="640" height="510" allowscriptaccess="always" allowfullscreen="true"&gt;&lt;/embed&gt; &lt;/p&gt;</description>
      <pubDate>Thu, 20 Nov 2008 13:11:00 -0800</pubDate>
      <guid isPermaLink="false">urn:uuid:452b445c-64f2-4f8b-a311-04e688c2f570</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/11/20/anders-hejlsberg-where-are-programming-languages-going</link>
      <category>Inspiration</category>
    </item>
    <item>
      <title>iHologram</title>
      <description>&lt;p&gt;An &lt;a href="http://www.davidoreilly.com/blog/2008/08/ihologram/" target="_blank"&gt;application&lt;/a&gt; written by David OReilly gives Apple&amp;#8217;s iPhone the illusion of an animated hologram. The trick uses a technique called &lt;a href="http://en.wikipedia.org/wiki/Anamorphosis" target="_blank"&gt;perspectival anamorphosis&lt;/a&gt;. A tabletop surface provides the needed viewing angle of between 35 and 45 degrees.&lt;/p&gt;

&lt;p&gt;&lt;object width="400" height="225"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1496857&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1496857&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always"  width="700" height="394"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 22 Aug 2008 14:58:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:46f5e1a4-d13b-4253-bbbe-ce8f8caae158</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/08/22/ihologram</link>
      <category>Inspiration</category>
      <category>Gadgets</category>
      <trackback:ping>http://crunchlife.com/articles/trackback/78</trackback:ping>
    </item>
    <item>
      <title>Thank You Professor Pausch</title>
      <description>&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ji5_MqicxSo&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ji5_MqicxSo&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;The passing of &lt;a href="http://en.wikipedia.org/wiki/Randy_Pausch" target="_blank"&gt;Randy Pausch&lt;/a&gt; was posted this morning on Slashdot. Randy was a brilliant professor, technologist, husband, and father. Though I was never fortunate to have studied under professor Pausch, his &amp;#8220;Last Lecture&amp;#8221; has been inspirational to myself and many others. He will be missed.&lt;/p&gt;</description>
      <pubDate>Fri, 25 Jul 2008 10:45:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:a0aed4c6-48f4-48ae-bb7f-b4ed56d318a7</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/07/25/thank-you-professor-pausch</link>
      <category>Inspiration</category>
    </item>
    <item>
      <title>Dinosaur on the Loose!</title>
      <description>&lt;p&gt;&lt;object width="400" height="267"&gt;   &lt;param name="allowfullscreen" value="true" /&gt;   &lt;param name="allowscriptaccess" value="always" /&gt;   &lt;param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1316102&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;   &lt;embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1316102&amp;amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="267"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;A dinosaur at the LA Museum of Natural History inspects a group of children. Watching them run away at the end of the video &amp;#8211; Priceless.&lt;/p&gt;</description>
      <pubDate>Tue, 22 Jul 2008 05:52:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:e51ae63d-d8ff-4d30-a465-64bb8df848c0</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/07/22/dinosaur-on-the-loose</link>
      <category>Inspiration</category>
    </item>
    <item>
      <title>These are a Few of My Favorite Things</title>
      <description>&lt;p&gt;A few of my favorite applications published major releases this week. The most known being the &lt;a href="http://www.mozilla.com/firefox/" target="_blank"&gt;Firefox web browser&lt;/a&gt;. On Tuesday, the Mozilla team launched version 3 of their flagship product, Mozilla Firefox. It includes many bug fixes and an enhanced bookmarking system (love it). Within 24 hours, Firefox wracked up over 8 million downloads making it the most downloaded software ever.&lt;/p&gt;

&lt;p&gt;The venerable &lt;a href="http://www.winehq.org/" target="_blank"&gt;Wine (Wine Is Not an Emulator)&lt;/a&gt; project finally reached version 1.0. For those not familiar with Unix-like operating systems, Wine allows users to execute Microsoft Windows programs on Linux, Mac OS X, FreeBSD, and Solaris. It&amp;#8217;s a must have for those who just can&amp;#8217;t quite give up their favorite Windows software.&lt;/p&gt;

&lt;p&gt;This may not be considered a major release, but the folks at reddit have &lt;a href="http://blog.reddit.com/2008/06/reddit-goes-open-source.html" target="_blank"&gt;announced&lt;/a&gt; the open-sourcing of their social news website, &lt;a href="http://www.reddit.com" target="_blank"&gt;reddit.com&lt;/a&gt;. IMO reddit.com takes the best elements of both slashdot.org and digg.com and combines them to make something even better. Kudos reddit, Mozilla, and Wine!&lt;/p&gt;</description>
      <pubDate>Fri, 20 Jun 2008 10:17:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:78b2b93b-0900-42d8-acf4-12728393c42c</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/06/20/these-are-a-few-of-my-favorite-things</link>
      <category>Inspiration</category>
      <category>Life</category>
      <trackback:ping>http://crunchlife.com/articles/trackback/69</trackback:ping>
    </item>
    <item>
      <title>DIY Multi-Touch Pad</title>
      <description>&lt;p&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/pQpr3W-YmcQ&amp;amp;hl=en"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/pQpr3W-YmcQ&amp;amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 23 May 2008 09:04:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:5c7fa795-b338-4a68-8c46-1470be66f662</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/05/23/diy-multi-touch-pad</link>
      <category>Inspiration</category>
      <trackback:ping>http://crunchlife.com/articles/trackback/65</trackback:ping>
    </item>
    <item>
      <title>Festo Air Jelly</title>
      <description>&lt;p&gt;&lt;a href="http://www.festo.com/cms/de_de/5890.htm" target="_blank"&gt;Amazing&lt;/a&gt;. I&amp;#8217;d love to see more natural design in programming languages.&lt;/p&gt;

&lt;p&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/F_citFkSNtk&amp;amp;hl=en"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/F_citFkSNtk&amp;amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 24 Apr 2008 13:08:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:d7e7948a-02bf-4759-a012-877059bb949e</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/04/24/festo-air-jelly</link>
      <category>Inspiration</category>
      <trackback:ping>http://crunchlife.com/articles/trackback/55</trackback:ping>
    </item>
    <item>
      <title>Boston Dynamics Big Dog March 2008</title>
      <description>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/W1czBcnX1Ww&amp;hl=en"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/W1czBcnX1Ww&amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt; 



</description>
      <pubDate>Thu, 20 Mar 2008 06:40:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:e4eb6847-eddc-44a0-bb33-11863664bd8d</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/03/20/boston-dynamics-big-dog-march-2008</link>
      <category>Inspiration</category>
    </item>
  </channel>
</rss>

