<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lojic Technologies Blog &#187; science</title>
	<atom:link href="http://lojic.com/blog/category/science/feed/" rel="self" type="application/rss+xml" />
	<link>http://lojic.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 28 May 2010 16:11:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Precision Quadrotor Flying</title>
		<link>http://lojic.com/blog/2010/05/28/precision-quadrotor-flying/</link>
		<comments>http://lojic.com/blog/2010/05/28/precision-quadrotor-flying/#comments</comments>
		<pubDate>Fri, 28 May 2010 16:09:30 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=812</guid>
		<description><![CDATA[Wow &#8211; pretty amazing! HT Michael Hale via RT :)

]]></description>
			<content:encoded><![CDATA[<p>Wow &#8211; pretty amazing! HT Michael Hale via RT :)</p>
<p><object width="600" height="360"><param name="movie" value="http://www.youtube.com/v/MvRTALJp8DM&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/MvRTALJp8DM&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="600" height="360"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2010/05/28/precision-quadrotor-flying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve Sunrise, Sunset &amp; Twilight Info in Ruby</title>
		<link>http://lojic.com/blog/2009/03/11/retrieve-sunrise-sunset-twilight-in-ruby/</link>
		<comments>http://lojic.com/blog/2009/03/11/retrieve-sunrise-sunset-twilight-in-ruby/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 05:41:54 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[usno]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=418</guid>
		<description><![CDATA[Sunrise, Sunset &#38; Twilight
I was curious about the exact time of sunrise &#38; sunset at my location, so I found this US Naval Observatory site. In the process, I learned a more precise definition of  twilight. I wanted to be able to automate the process of retrieving the information, so my first attempt was [...]]]></description>
			<content:encoded><![CDATA[<h2>Sunrise, Sunset &amp; Twilight</h2>
<p><a href="http://lojic.com/blog/wp-content/uploads/2009/03/seascape_after_sunset_900x600.jpg"><img class="alignleft size-medium wp-image-441" title="Twilight" src="http://lojic.com/blog/wp-content/uploads/2009/03/seascape_after_sunset_900x600-300x200.jpg" alt="Twilight" width="300" height="200" /></a>I was curious about the exact time of sunrise &amp; sunset at my location, so I found this <a href="http://aa.usno.navy.mil/data/docs/RS_OneDay.php">US Naval Observatory</a> site. In the process, I learned a more precise definition of  <a href="http://aa.usno.navy.mil/faq/docs/RST_defs.php#top"><em>twilight</em></a>. I wanted to be able to automate the process of retrieving the information, so my first attempt was to simply put the query parameters used in the form in the URL as an HTTP GET request, but the server wouldn&#8217;t accept that, so I needed to issue an HTTP POST request.<br />
<br style="clear: left;" /></p>
<h2>Ruby Code</h2>
<p>Ruby is a great language for this sort of task, so I put together the following simple program:</p>
<pre>require 'net/http'

YOUR_ID    = ''    # A unique ID per comment above
YOUR_CITY  = ''    # The name of your city
YOUR_STATE = ''    # Two letter state abbreviation

now   = Time.now
month = now.month
day   = now.day + 1 # Tomorrow
year  = now.year

Net::HTTP.start('aa.usno.navy.mil') do |query|
  response = query.post('/cgi-bin/aa_pap.pl',
    "FFX=1&amp;amp;amp;amp;ID=#{YOUR_ID}&amp;amp;amp;amp;xxy=#{year}&amp;amp;amp;amp;xxm=#{month}&amp;amp;amp;amp;xxd=#{day}&amp;amp;amp;amp;st=#{YOUR_STATE}&amp;amp;amp;amp;place=#{YOUR_CITY}&amp;amp;amp;amp;ZZZ=END")
  if response.body =~ /Begin civil twilight[^0-9]*(\d+:\d{2} [ap].m.).*Sunrise[^0-9]*(\d+:\d{2} [ap].m.).*Sunset[^0-9]*(\d+:\d{2} [ap].m.).*End civil twilight[^0-9]*(\d+:\d{2} [ap].m.)/m
    puts "#{month}/#{day}/#{year}"
    puts "Begin Twilight: #{$1}"
    puts "Sunrise       : #{$2}"
    puts "Sunset        : #{$3}"
    puts "End Twilight  : #{$4}"
  end
end</pre>
<p>You just need to edit the three constants that begin with YOUR_. The id used on the Navy web form is &#8216;AA&#8217;, but they have a comment in the HTML that requests you use a unique id of your own up to 8 characters to help them with tracking. You can find a more complete version of <a href="http://github.com/lojic/sample_code/blob/7b41e88adefd84154a54c97de86924f8517dca2c/ruby/sunrise_http_post.rb">the code</a> in my <a href="http://github.com/lojic">github profile</a>.</p>
<h2>Emacs Goodness</h2>
<p>After writing the above Ruby script, I made it executable, &#8216;chmod +x sunrise.rb&#8217;, and placed it in my path so I could write a simple Emacs function to invoke it.</p>
<pre>(defun bja-sunrise ()
  "Display sunrise, sunset &amp;amp; twilight information."
  (interactive)
  (shell-command "sunrise.rb"))</pre>
<p>Imagine my surprise when I invoked the Emacs apropos help &#8216;C-h a&#8217; to see my newly defined function and discovered that Emacs, naturally, already has several commands to display sunrise/sunset information!</p>
<dl>
<dt>calendar-mouse-sunrise/sunset</dt>
<dd>Show sunrise/sunset times for mouse-selected date.</dd>
<dt>calendar-sunrise-sunset</dt>
<dd>Local time of sunrise and sunset for date under cursor.</dd>
<dt>sunrise-sunset</dt>
<dd>Local time of sunrise and sunset for today.  Accurate to a few seconds.</dd>
</dl>
<p>It doesn&#8217;t, however, display <strong>twilight</strong> information, so my simple function still has a purpose in life. Emacs is awesome :)</p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2009/03/11/retrieve-sunrise-sunset-twilight-in-ruby/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dolphin Bubble Rings</title>
		<link>http://lojic.com/blog/2008/01/22/dolphin-bubble-rings/</link>
		<comments>http://lojic.com/blog/2008/01/22/dolphin-bubble-rings/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 14:25:13 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[animals]]></category>
		<category><![CDATA[nature]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/2008/01/22/dolphin-bubble-rings/</guid>
		<description><![CDATA[My uncle passed on a link he received from my cousin to an amazing video showing dolphins cleverly making sophisticated bubble rings and manipulating them in interesting ways:

]]></description>
			<content:encoded><![CDATA[<p>My uncle passed on a link he received from my cousin to an amazing video showing dolphins cleverly making sophisticated bubble rings and manipulating them in interesting ways:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/TMCf7SNUb-Q&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TMCf7SNUb-Q&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2008/01/22/dolphin-bubble-rings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crayon Physics</title>
		<link>http://lojic.com/blog/2007/12/01/crayon-physics/</link>
		<comments>http://lojic.com/blog/2007/12/01/crayon-physics/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 16:08:23 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/2007/12/01/crayon-physics/</guid>
		<description><![CDATA[I found this video of a &#8220;crayon physics&#8221; game on Robert Scoble&#8217;s site &#8211; very cool!

]]></description>
			<content:encoded><![CDATA[<p>I found this video of a &#8220;crayon physics&#8221; game on <a href="http://scobleizer.com/2007/12/01/i-might-become-a-tablet-pc-evangelist-again/">Robert Scoble&#8217;s site</a> &#8211; very cool!</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/QsTqspnvAaI&#038;rel=0&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/QsTqspnvAaI&#038;rel=0&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/12/01/crayon-physics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best seats to survive a plane crash.</title>
		<link>http://lojic.com/blog/2007/07/21/best-seats-to-survive-a-plane-crash/</link>
		<comments>http://lojic.com/blog/2007/07/21/best-seats-to-survive-a-plane-crash/#comments</comments>
		<pubDate>Sat, 21 Jul 2007 18:29:36 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[safety]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=89</guid>
		<description><![CDATA[
MYTH: It Doesn&#8217;t Matter Where You Sit
	&#8220;It&#8217;s like a lottery to pick your seat.&#8221;
-Nora Marshall, passenger survival expert, National Transportation Safety Board
	&#8220;One seat is as safe as the other.&#8221;
-Boeing Web site
	&#8220;It&#8217;s an age-old question. There&#8217;s just no way to say.&#8221;
-Federal Aviation Administration spokesman
	&#8220;There is no safest seat.&#8221;
-airsafe.com
REALITY: It&#8217;s Safer In the Back.
The funny thing about [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.popularmechanics.com/images/aloha-737-wreck-0807.jpg" alt="Plane wreck" /></p>
<blockquote><p>MYTH: It Doesn&#8217;t Matter Where You Sit</p>
<p>	&#8220;It&#8217;s like a lottery to pick your seat.&#8221;<br />
-Nora Marshall, passenger survival expert, National Transportation Safety Board</p>
<p>	&#8220;One seat is as safe as the other.&#8221;<br />
-Boeing Web site</p>
<p>	&#8220;It&#8217;s an age-old question. There&#8217;s just no way to say.&#8221;<br />
-Federal Aviation Administration spokesman</p>
<p>	&#8220;There is no safest seat.&#8221;<br />
-airsafe.com</p>
<p>REALITY: It&#8217;s Safer In the Back.</p>
<p>The funny thing about all those expert opinions: They&#8217;re not really based on hard data about actual airline accidents. A look at real-world crash stats, however, suggests that the farther back you sit, the better your odds of survival. Passengers near the tail of a plane are about 40 percent more likely to survive a crash than those in the first few rows up front.
</p></blockquote>
<p><a href="http://www.popularmechanics.com/science/air_space/4219452.html">Popular Mechanics article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/07/21/best-seats-to-survive-a-plane-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oregon Man Flies 193 Miles In Lawn Chair</title>
		<link>http://lojic.com/blog/2007/07/11/oregon-man-flies-193-miles-in-lawn-chair/</link>
		<comments>http://lojic.com/blog/2007/07/11/oregon-man-flies-193-miles-in-lawn-chair/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 15:33:15 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=86</guid>
		<description><![CDATA[I learned about this lawn chair flight from Matt Promise&#8217;s blog.
Balloons suspend Kent Couch in a lawn chair as he floats in the skies near Bend, Ore., Saturday, July 7, 2007. Couch, on his way to Idaho, carried a global positioning system device, a two-way radio, a digital camcorder and a cell phone. He also [...]]]></description>
			<content:encoded><![CDATA[<p>I learned about this lawn chair flight from <a href="http://www.sciencebehindthings.com/oregon-man-flies-in-his-lawn-chair-193-miles-from-oregon-to-idaho/">Matt Promise&#8217;s blog</a>.</p>
<blockquote><p>Balloons suspend Kent Couch in a lawn chair as he floats in the skies near Bend, Ore., Saturday, July 7, 2007. Couch, on his way to Idaho, carried a global positioning system device, a two-way radio, a digital camcorder and a cell phone. He also had instruments to measure his altitude and speed and about four plastic bags holding five gallons of water each to act as a ballast, he could turn a spigot, release water and rise.  </p></blockquote>
<blockquote><p>Couch is the latest American to emulate Larry Walters â€” who in 1982 rose three miles above Los Angeles in a lawn chair lifted by balloons. Walters had surprised an airline pilot, who radioed the control tower that he had just passed a guy in a lawn chair. </p></blockquote>
<p>Here is <a href="http://www.foxnews.com/story/0,2933,288809,00.html">an article</a> on Fox News.</p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/07/11/oregon-man-flies-193-miles-in-lawn-chair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spider Car</title>
		<link>http://lojic.com/blog/2007/06/19/spider-car/</link>
		<comments>http://lojic.com/blog/2007/06/19/spider-car/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 13:21:52 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[robotics]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=67</guid>
		<description><![CDATA[Three months to design, six months to build, $15,000 in parts&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Three months to design, six months to build, $15,000 in parts&#8230;</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/qlJLqvrlsLs"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qlJLqvrlsLs" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/06/19/spider-car/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Real Rain Man</title>
		<link>http://lojic.com/blog/2007/05/04/the-real-rain-man/</link>
		<comments>http://lojic.com/blog/2007/05/04/the-real-rain-man/#comments</comments>
		<pubDate>Fri, 04 May 2007 17:47:18 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=65</guid>
		<description><![CDATA[Who was the game winning pitcher in game three of the 1926 world series? Who were the four people in George Washington&#8217;s cabinet? When was Sir Walter Raleigh executed? What day of the week was that? Kim Peek has no trouble answering questions like these and thousands more from memory. He is the person the [...]]]></description>
			<content:encoded><![CDATA[<p>Who was the game winning pitcher in game three of the 1926 world series? Who were the four people in George Washington&#8217;s cabinet? When was Sir Walter Raleigh executed? What day of the week was that? Kim Peek has no trouble answering questions like these and thousands more from memory. He is the person the &#8220;Rain Man&#8221; character was based on. He reads eight books a day. A page that would normally take three minutes to read takes him eight to ten seconds. He reads the left page with his left eye and the right page with his right eye and retains 98% of it. The neurologist who originally diagnosed him only gave them five minutes of his time because he was late for a golf game; he said they should put Kim in an institution and forget about him.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/k2T45r5G3kA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/k2T45r5G3kA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Other parts of the series:</p>
<p><a href="http://www.youtube.com/watch?v=NJjAbs-3kc8">Part Two of Five</a></p>
<p><a href="http://www.youtube.com/watch?v=Auufbu_ZdDI">Part Three of Five</a></p>
<p><a href="http://www.youtube.com/watch?v=vRPxMDj33S4">Part Four of Five</a></p>
<p><a href="http://www.youtube.com/watch?v=a1aA5osvYgY">Part Five of Five</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/05/04/the-real-rain-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFL Mercury Nightmare</title>
		<link>http://lojic.com/blog/2007/04/30/cfl-mercury-nightmare/</link>
		<comments>http://lojic.com/blog/2007/04/30/cfl-mercury-nightmare/#comments</comments>
		<pubDate>Tue, 01 May 2007 04:46:15 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[safety]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=61</guid>
		<description><![CDATA[I came across a story on slashdot.org regarding one man&#8217;s &#8220;nightmare&#8221; from using a compact fluorescent lightbulb (CFL). I had no idea that CFL&#8217;s contained mercury! I did a little more research and found the following links:
CFL Bulbs Have One Hitch: Toxic Mercury
&#8220;But the bulbs contain small amounts of mercury, a neurotoxin, and the companies [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a <a href="http://www.canada.com/nationalpost/financialpost/story.html?id=aa7796aa-e4a5-4c06-be84-b62dee548fda">story</a> on slashdot.org regarding one man&#8217;s &#8220;nightmare&#8221; from using a compact fluorescent lightbulb (CFL). I had no idea that CFL&#8217;s contained mercury! I did a little more research and found the following links:</p>
<p><a href="http://www.npr.org/templates/story/story.php?storyId=7431198">CFL Bulbs Have One Hitch: Toxic Mercury</a><br />
&#8220;But the bulbs contain small amounts of mercury, a neurotoxin, and the companies and federal government haven&#8217;t come up with effective ways to get Americans to recycle them.&#8221;</p>
<p>&#8220;Experts agree that it&#8217;s not easy for most people to recycle these bulbs. Even cities that have curbside recycling won&#8217;t take the bulbs. So people have to take them to a hazardous-waste collection day or a special facility.&#8221;</p>
<p><a href="http://pediatrics.aappublications.org/cgi/content/abstract/79/5/786">Exposure to Mercury From Fluorescent Light Bulbs</a><br />
&#8220;The diagnosis was mercury poisoning, and an investigation of his environment disclosed that he had been exposed to mercury from broken fluorescent light bulbs.&#8221;</p>
<p>I also found some articles that attempted to minimize the risks of CFL&#8217;s, but they seemed to be primarily from companies that sell CFL&#8217;s. I would advise educating yourself on the pros/cons of CFL&#8217;s prior to using them.</p>
<p>While reading some of the articles, I came across <a href="http://en.wikipedia.org/wiki/Dimethylmercury">Dimethylmercury</a> (not in CFL&#8217;s). This nasty neurotoxin was responsible for <a href="http://en.wikipedia.org/wiki/Karen_Wetterhahn">killing</a> a researcher who accidentally spilled a <strong>drop or two</strong> on her latex gloved hand! Absorbing a thousandth of a milliliter is fatal.</p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/04/30/cfl-mercury-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inner Life of the Cell</title>
		<link>http://lojic.com/blog/2007/04/14/inner-life-of-the-cell/</link>
		<comments>http://lojic.com/blog/2007/04/14/inner-life-of-the-cell/#comments</comments>
		<pubDate>Sat, 14 Apr 2007 15:20:36 +0000</pubDate>
		<dc:creator>Brian Adkins</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[nature]]></category>

		<guid isPermaLink="false">http://lojic.com/blog/?p=45</guid>
		<description><![CDATA[SIGGRAPH award winning animation of the inner life of the cell. To see a version with narration, click the image below, then choose the version appropriate for your internet connection speed:

]]></description>
			<content:encoded><![CDATA[<p><a href="http://multimedia.mcb.harvard.edu/">SIGGRAPH award winning animation of the inner life of the cell</a>. To see a version with narration, click the image below, then choose the version appropriate for your internet connection speed:</p>
<p><a href='http://multimedia.mcb.harvard.edu/media.html' title='innerlife_super.jpg'><img src='http://lojic.com/blog/wp-content/uploads/2007/04/innerlife_super.jpg' alt='innerlife_super.jpg' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://lojic.com/blog/2007/04/14/inner-life-of-the-cell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
