<?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>Paras Chopra's Blog &#187; Biology</title>
	<atom:link href="http://paraschopra.com/blog/category/biology/feed" rel="self" type="application/rss+xml" />
	<link>http://paraschopra.com/blog</link>
	<description>business + science + philosophy + technology</description>
	<lastBuildDate>Sun, 22 Aug 2010 09:38:19 +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>Digital Evolution Basics</title>
		<link>http://paraschopra.com/blog/personal/digital-evolution-basics.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/personal/digital-evolution-basics.htm#comments</comments>
		<pubDate>Thu, 25 Jun 2009 16:22:28 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://paraschopra.com/blog/?p=406</guid>
		<description><![CDATA[For those who are not aware of digital evolution, I am writing a quick short summary. Digital evolution means evolution of computer programs who compete for limited resources such as CPU and memory. In short, it goes something like this:
- You define a universe, which is virtual memory (space) and CPU (time)
- You create energy [...]


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/digital-evolution.htm' rel='bookmark' title='Permanent Link: Digital Evolution'>Digital Evolution</a></li><li><a href='http://paraschopra.com/blog/biology/pypond-a-digital-life-simulator-in-python.htm' rel='bookmark' title='Permanent Link: PyPond: A digital life simulator in Python'>PyPond: A digital life simulator in Python</a></li><li><a href='http://paraschopra.com/blog/biology/is-evolution-predictable.htm' rel='bookmark' title='Permanent Link: Is Evolution Predictable?'>Is Evolution Predictable?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>For those who are not aware of digital evolution, I am writing a quick short summary. Digital evolution means evolution of computer programs who compete for limited resources such as CPU and memory. In short, it goes something like this:</p>
<p>- You define a universe, which is virtual memory (space) and CPU (time)<br />
- You create energy (CPU cycles)<br />
- You define an extremely limited instruction set for Virtual Machine (Physics). Instruction set being limited is important because you want to mimic physics, not chemistry or biology<br />
- You seed randomly generated programs of varying length<br />
- You start parallel execution the random programs<br />
- Each instruction eats up energy and at random times you feed energy into universe<br />
- At random times mis-execute program instructions<br />
- Run it for a long time and Voila! finally self replication gets evolved from very simple instructions<br />
- Then arms race gets started between programs and things get interesting</p>
<p>Some people argue that digital evolution is not merely an emulation of real thing but is indeed a real manifestation of evolution and I tend to believe the same.</p>
<p>To download the digital evolution simulator written by me in Python (called PyPond), head to: Download: <a href="http://paraschopra.com/projects/pypond/PyPond_without_graphics.py">Normal version</a> or With <a href="http://paraschopra.com/projects/pypond/PyPond_with_graphics.py">graphics version</a> (requires PyGame library)</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/digital-evolution.htm' rel='bookmark' title='Permanent Link: Digital Evolution'>Digital Evolution</a></li><li><a href='http://paraschopra.com/blog/biology/pypond-a-digital-life-simulator-in-python.htm' rel='bookmark' title='Permanent Link: PyPond: A digital life simulator in Python'>PyPond: A digital life simulator in Python</a></li><li><a href='http://paraschopra.com/blog/biology/is-evolution-predictable.htm' rel='bookmark' title='Permanent Link: Is Evolution Predictable?'>Is Evolution Predictable?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/personal/digital-evolution-basics.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PyPond: A digital life simulator in Python</title>
		<link>http://paraschopra.com/blog/biology/pypond-a-digital-life-simulator-in-python.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/pypond-a-digital-life-simulator-in-python.htm#comments</comments>
		<pubDate>Thu, 17 Jul 2008 05:08:35 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">http://www.paraschopra.com/blog/?p=380</guid>
		<description><![CDATA[Today, I am releasing PyPond which I made as my final year project. PyPond is a digital life simulator in Python inspired from Nanopond 
Download: Normal version or With graphics version (requires PyGame library)


Possibly related posts (automagically generated):Digital Evolution BasicsPerl V/S PythonShould Life neccessarily be tangible?


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/personal/digital-evolution-basics.htm' rel='bookmark' title='Permanent Link: Digital Evolution Basics'>Digital Evolution Basics</a></li><li><a href='http://paraschopra.com/blog/personal/perl-vs-python.htm' rel='bookmark' title='Permanent Link: Perl V/S Python'>Perl V/S Python</a></li><li><a href='http://paraschopra.com/blog/biology/should-life-neccessarily-be-tangible.htm' rel='bookmark' title='Permanent Link: Should Life neccessarily be tangible?'>Should Life neccessarily be tangible?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Today, I am releasing PyPond which I made as my final year project. PyPond is a <a href="http://www.paraschopra.com/blog/biology/digital-evolution.htm">digital life</a> simulator in Python inspired from <a href="http://adam.ierymenko.name/nanopond.shtml">Nanopond</a> </p>
<p><em>Download</em>: <a href="http://paraschopra.com/projects/pypond/PyPond_without_graphics.py">Normal version</a> or <a href="http://paraschopra.com/projects/pypond/PyPond_with_graphics.py">With graphics version</a> (requires <a href="http://www.pygame.org/">PyGame</a> library)</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/personal/digital-evolution-basics.htm' rel='bookmark' title='Permanent Link: Digital Evolution Basics'>Digital Evolution Basics</a></li><li><a href='http://paraschopra.com/blog/personal/perl-vs-python.htm' rel='bookmark' title='Permanent Link: Perl V/S Python'>Perl V/S Python</a></li><li><a href='http://paraschopra.com/blog/biology/should-life-neccessarily-be-tangible.htm' rel='bookmark' title='Permanent Link: Should Life neccessarily be tangible?'>Should Life neccessarily be tangible?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/pypond-a-digital-life-simulator-in-python.htm/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The HIV Game</title>
		<link>http://paraschopra.com/blog/biology/the-hiv-game.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/the-hiv-game.htm#comments</comments>
		<pubDate>Sun, 11 May 2008 08:35:31 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">http://www.paraschopra.com/blog/?p=357</guid>
		<description><![CDATA[Cool concept.


Possibly related posts (automagically generated):The Turing-roulette GameGame Theory and Cancer


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/philosophy/the-turing-roulette-game.htm' rel='bookmark' title='Permanent Link: The Turing-roulette Game'>The Turing-roulette Game</a></li><li><a href='http://paraschopra.com/blog/biology/game-theory-and-cancer.htm' rel='bookmark' title='Permanent Link: Game Theory and Cancer'>Game Theory and Cancer</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sciencedaily.com/releases/2008/05/080508122520.htm">Cool concept.</a></p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/philosophy/the-turing-roulette-game.htm' rel='bookmark' title='Permanent Link: The Turing-roulette Game'>The Turing-roulette Game</a></li><li><a href='http://paraschopra.com/blog/biology/game-theory-and-cancer.htm' rel='bookmark' title='Permanent Link: Game Theory and Cancer'>Game Theory and Cancer</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/the-hiv-game.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self cloning by a creature</title>
		<link>http://paraschopra.com/blog/biology/self-cloning-by-a-creature.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/self-cloning-by-a-creature.htm#comments</comments>
		<pubDate>Thu, 20 Mar 2008 15:35:45 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">http://www.paraschopra.com/blog/biology/self-cloning-by-a-creature.htm</guid>
		<description><![CDATA[Spooky.


No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.newscientist.com/channel/life/dn13460-creature-clones-itself-to-avoid-becoming-fish-food.html?feedId=online-news_rss20">Spooky</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/self-cloning-by-a-creature.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Craig Venter trying to creating CO2 eating life</title>
		<link>http://paraschopra.com/blog/biology/craig-venter-trying-to-creating-co2-eating-life.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/craig-venter-trying-to-creating-co2-eating-life.htm#comments</comments>
		<pubDate>Thu, 20 Mar 2008 15:15:05 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">http://www.paraschopra.com/blog/biology/craig-venter-trying-to-creating-co2-eating-life.htm</guid>
		<description><![CDATA[Have a look here.


Possibly related posts (automagically generated):Fly-eating robot powers itselfBio-Intelligence: Creating chess playing bacteriaGet-A-Life: How true is comparison of Artificial Life with the real one?


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/fly-eating-robot-powers-itself.htm' rel='bookmark' title='Permanent Link: Fly-eating robot powers itself'>Fly-eating robot powers itself</a></li><li><a href='http://paraschopra.com/blog/biology/bio-intelligence-creating-chess-playing-bacteria.htm' rel='bookmark' title='Permanent Link: Bio-Intelligence: Creating chess playing bacteria'>Bio-Intelligence: Creating chess playing bacteria</a></li><li><a href='http://paraschopra.com/blog/biology/get-a-life-how-true-is-comparison-of-artificial-life-with-the-real-one.htm' rel='bookmark' title='Permanent Link: Get-A-Life: How true is comparison of Artificial Life with the real one?'>Get-A-Life: How true is comparison of Artificial Life with the real one?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Have a look <a href="http://news.yahoo.com/s/afp/20080228/ts_afp/scienceusitgenetics;_ylt=AptyWwW1wiZRtcLis2t1pq8PLBIF">here</a>.</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/fly-eating-robot-powers-itself.htm' rel='bookmark' title='Permanent Link: Fly-eating robot powers itself'>Fly-eating robot powers itself</a></li><li><a href='http://paraschopra.com/blog/biology/bio-intelligence-creating-chess-playing-bacteria.htm' rel='bookmark' title='Permanent Link: Bio-Intelligence: Creating chess playing bacteria'>Bio-Intelligence: Creating chess playing bacteria</a></li><li><a href='http://paraschopra.com/blog/biology/get-a-life-how-true-is-comparison-of-artificial-life-with-the-real-one.htm' rel='bookmark' title='Permanent Link: Get-A-Life: How true is comparison of Artificial Life with the real one?'>Get-A-Life: How true is comparison of Artificial Life with the real one?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/craig-venter-trying-to-creating-co2-eating-life.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is Dust another form of life?</title>
		<link>http://paraschopra.com/blog/biology/is-dust-another-form-of-life.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/is-dust-another-form-of-life.htm#comments</comments>
		<pubDate>Sat, 18 Aug 2007 13:51:13 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">GUID</guid>
		<description><![CDATA[[URL=http://space.newscientist.com/article.ns?id=dn12466&#038;feedId=online-news_rss20]Maybe.[/URL]
...


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/get-a-life-how-true-is-comparison-of-artificial-life-with-the-real-one.htm' rel='bookmark' title='Permanent Link: Get-A-Life: How true is comparison of Artificial Life with the real one?'>Get-A-Life: How true is comparison of Artificial Life with the real one?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://space.newscientist.com/article.ns?id=dn12466&#038;feedId=online-news_rss20">Maybe</a>.</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/get-a-life-how-true-is-comparison-of-artificial-life-with-the-real-one.htm' rel='bookmark' title='Permanent Link: Get-A-Life: How true is comparison of Artificial Life with the real one?'>Get-A-Life: How true is comparison of Artificial Life with the real one?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/is-dust-another-form-of-life.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bacteria makes Gasoline</title>
		<link>http://paraschopra.com/blog/biology/bacteria-makes-gasoline.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/bacteria-makes-gasoline.htm#comments</comments>
		<pubDate>Sat, 18 Aug 2007 13:30:42 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">GUID</guid>
		<description><![CDATA[[URL=http://www.technologyreview.com/Biztech/19128/]Is this the future?[/URL]
...


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/intelligent-bacteria.htm' rel='bookmark' title='Permanent Link: Intelligent Bacteria..'>Intelligent Bacteria..</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.technologyreview.com/Biztech/19128/">Is this the future</a>?</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/intelligent-bacteria.htm' rel='bookmark' title='Permanent Link: Intelligent Bacteria..'>Intelligent Bacteria..</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/bacteria-makes-gasoline.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synthetic Biology Primer</title>
		<link>http://paraschopra.com/blog/biology/synthetic-biology-primer.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/synthetic-biology-primer.htm#comments</comments>
		<pubDate>Fri, 20 Jul 2007 13:14:45 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">GUID</guid>
		<description><![CDATA[OpenWetWare.org has an interesting "[URL=http://openwetware.org/images/3/3d/SB_Primer_100707.pdf]Primer for Synthetic Biology, Part I -- Molecular
Biology/Biochemistry for Novices[/URL]" by Scott Mohr (It is 69 Pages long PDF document). The document...


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/personal/review-paper-on-synthetic-biology.htm' rel='bookmark' title='Permanent Link: Review Paper on Synthetic Biology'>Review Paper on Synthetic Biology</a></li><li><a href='http://paraschopra.com/blog/biology/synthetic-biology-20-conference-at-uc-berkeley.htm' rel='bookmark' title='Permanent Link: Synthetic Biology 2.0 Conference at UC Berkeley'>Synthetic Biology 2.0 Conference at UC Berkeley</a></li><li><a href='http://paraschopra.com/blog/biology/what-is-synthetic-biology.htm' rel='bookmark' title='Permanent Link: What is Synthetic Biology?'>What is Synthetic Biology?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>OpenWetWare.org has an interesting &#8220;<a href="http://openwetware.org/images/3/3d/SB_Primer_100707.pdf">Primer for Synthetic Biology, Part I &#8212; Molecular<br />
Biology/Biochemistry for Novices</a>&#8221; by Scott Mohr (It is 69 Pages long PDF document). The document explains molecular biology in extremely simple terms. It is a must download if you are just beginning to explore the fascinating field of molecular biology.</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/personal/review-paper-on-synthetic-biology.htm' rel='bookmark' title='Permanent Link: Review Paper on Synthetic Biology'>Review Paper on Synthetic Biology</a></li><li><a href='http://paraschopra.com/blog/biology/synthetic-biology-20-conference-at-uc-berkeley.htm' rel='bookmark' title='Permanent Link: Synthetic Biology 2.0 Conference at UC Berkeley'>Synthetic Biology 2.0 Conference at UC Berkeley</a></li><li><a href='http://paraschopra.com/blog/biology/what-is-synthetic-biology.htm' rel='bookmark' title='Permanent Link: What is Synthetic Biology?'>What is Synthetic Biology?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/synthetic-biology-primer.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A robot powered by rat brain</title>
		<link>http://paraschopra.com/blog/biology/a-robot-powered-by-rat-brain.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/a-robot-powered-by-rat-brain.htm#comments</comments>
		<pubDate>Sun, 08 Jul 2007 12:03:21 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">GUID</guid>
		<description><![CDATA[Well not exactly a rat brain, but a rat brain model instead. [URL=http://www.newscientisttech.com/article/dn12192-ratbrained-robot-thinks-like-the-real-thing.html]Have a look at the news here[/URL].
...


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/a-robot-powered-by-biology.htm' rel='bookmark' title='Permanent Link: A robot powered by Biology'>A robot powered by Biology</a></li><li><a href='http://paraschopra.com/blog/biology/brain-body.htm' rel='bookmark' title='Permanent Link: Brain -> Body'>Brain -> Body</a></li><li><a href='http://paraschopra.com/blog/biology/fly-eating-robot-powers-itself.htm' rel='bookmark' title='Permanent Link: Fly-eating robot powers itself'>Fly-eating robot powers itself</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Well not exactly a rat brain, but a rat brain model instead. <a href="http://www.newscientisttech.com/article/dn12192-ratbrained-robot-thinks-like-the-real-thing.html">Have a look at the news here</a>.</p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/biology/a-robot-powered-by-biology.htm' rel='bookmark' title='Permanent Link: A robot powered by Biology'>A robot powered by Biology</a></li><li><a href='http://paraschopra.com/blog/biology/brain-body.htm' rel='bookmark' title='Permanent Link: Brain -> Body'>Brain -> Body</a></li><li><a href='http://paraschopra.com/blog/biology/fly-eating-robot-powers-itself.htm' rel='bookmark' title='Permanent Link: Fly-eating robot powers itself'>Fly-eating robot powers itself</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/a-robot-powered-by-rat-brain.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A talk on regenerative medicine</title>
		<link>http://paraschopra.com/blog/biology/a-talk-on-regenerative-medicine.htm?nucrss=1</link>
		<comments>http://paraschopra.com/blog/biology/a-talk-on-regenerative-medicine.htm#comments</comments>
		<pubDate>Fri, 06 Jul 2007 14:00:07 +0000</pubDate>
		<dc:creator>Paras Chopra</dc:creator>
				<category><![CDATA[Biology]]></category>

		<guid isPermaLink="false">GUID</guid>
		<description><![CDATA[An excellent talk on the use of regenerative medicine to hack the human body to regenerate parts of it.


...


<b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/technology/google-talk.htm' rel='bookmark' title='Permanent Link: Google Talk'>Google Talk</a></li><li><a href='http://paraschopra.com/blog/biology/how-to-tackle-evolution-in-synthetic-biology.htm' rel='bookmark' title='Permanent Link: How to tackle Evolution in Synthetic Biology?'>How to tackle Evolution in Synthetic Biology?</a></li><li><a href='http://paraschopra.com/blog/biology/what-is-synthetic-biology.htm' rel='bookmark' title='Permanent Link: What is Synthetic Biology?'>What is Synthetic Biology?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>An excellent talk on the use of regenerative medicine to hack the human body to regenerate parts of it.</p>
<p><center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="320" height="285" id="VE_Player" align="middle"><param name="movie" value="http://static.videoegg.com/ted/flash/loader.swf"><PARAM NAME="FlashVars" VALUE="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/ALANRUSSELL-WARNING-2006_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true"><param name="quality" value="high"><param name="allowScriptAccess" value="always"><param name="bgcolor" value="#FFFFFF"><param name="scale" value="noscale"><param name="wmode" value="window"><embed src="http://static.videoegg.com/ted/flash/loader.swf" FlashVars="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/ALANRUSSELL-WARNING-2006_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true" quality="high" allowScriptAccess="always" bgcolor="#FFFFFF" scale="noscale" wmode="window" width="320" height="285" name="VE_Player" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object></center></p>


<p><b>Possibly related posts</b> (automagically generated):<ul><li><a href='http://paraschopra.com/blog/technology/google-talk.htm' rel='bookmark' title='Permanent Link: Google Talk'>Google Talk</a></li><li><a href='http://paraschopra.com/blog/biology/how-to-tackle-evolution-in-synthetic-biology.htm' rel='bookmark' title='Permanent Link: How to tackle Evolution in Synthetic Biology?'>How to tackle Evolution in Synthetic Biology?</a></li><li><a href='http://paraschopra.com/blog/biology/what-is-synthetic-biology.htm' rel='bookmark' title='Permanent Link: What is Synthetic Biology?'>What is Synthetic Biology?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://paraschopra.com/blog/biology/a-talk-on-regenerative-medicine.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
