<?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>

  .rav_project {
    margin-bottom: 5px;
  }
  
  .rav_project a.rav_title {
    font-size: .9em;
  }
  
  .rav_project .rav_progress_text {
    position: relative;
    text-align: center;
  }

  .rav_project .rav_progress_bar_wrapper {
    border: 1px solid #eee;
    margin-top: 2px;
  } 

  .rav_project .rav_progress_bar { 
    position: relative;
    padding: 1px;
    border-left: 1px solid #aaa;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background-color: #eee;
  }

  .rav_project .rav_progress_bar .rav_progress_filled { 
    position: absolute;
  }
  
  .rav_project .rav_photo_link {
    margin-bottom: 5px;
    display: block;
    width: 77px;
    height: 77px;
    margin-left: 1px;
    margin-top: 5px;
    border: 1px solid #cccccc;
  }
  
  .rav_project .rav_photo_link img {
    width: 75px;
    height: 75px;
    border: 1px solid #ffffff;
  }
  
  .rav_project_with_photos {
    margin-bottom: 20px;
  }
  

  RavelryThing = function() {
    var progressData = null;
    
    // Dollar and Dollar E convenience
    var $ = function(id) { return document.getElementById(id); };

    var $E = function(data) {
        var el;
        if ('string' == typeof data) {
          el = document.createTextNode(data);
        } else {
          el = document.createElement(data.tag);
          delete(data.tag);
          if ('undefined' != typeof data.children) {
            for (var i=0, child=null; 'undefined' != typeof (child=data.children[i]); i++) { if (child) { el.appendChild($E(child)); } }
            delete(data.children);
          }
          for (attr in data) { 
            if (attr == 'style') {
              for (s in data[attr]) {
                el.style[s] =  data[attr][s];
              } 
            } else if (data[attr]) {
              el[attr]=data[attr]; 
            }
          }
        }
        return el;
    };
    
    return {
      progressReceived: function(data) {
        progressData = data;
      },

      /*
        Allowed options are: color, width, height, photos (true/false), 
        projects (list of permalinks for specific projects). For example:
        drawProgressBars({color: 'red', width: 200, height: 20});
      */
      drawProgressBars: function(options) {
        if (!progressData) return;
        
        if (!options) options = {};
        if ('number' == typeof options.height) options.height += 'px';
        if (!options.height) options.height = '1.3em';
        if (!options.width) options.width = 100;
        if (!options.color) options.color = 'lightgreen';
        if (!options.container) options.container = 'rav_progress_bars';
        
        var container = $(options.container);
        if (!container) {
          // using unicode so that Blogger doesn't get cranky 
          document.write("\u003cdiv id='" + options.container + "'\u003e\u003c/div\u003e");
          container = $(options.container);
        }
        
        var selectedProjects = progressData.projects;
        if (options.projects) {
          // user has selected individual projects
          var projectsById = new Object();
          for (var i=0; i &lt; selectedProjects.length; i++) {
            projectsById[selectedProjects[i].permalink] = selectedProjects[i];
          }
          selectedProjects = new Array();
          for (var i=0; i &lt; options.projects.length; i++) {
            var project = projectsById[options.projects[i]];
            if (project) {
              selectedProjects.push(project);
            }
          }
        }
        
        for (var i=0; i &lt; selectedProjects.length; i++) {
          var project = selectedProjects[i];
          var filledStyle = { width: Math.round((project.progress/100) * options.width) + 'px', height: options.height, backgroundColor: options.color};
          var barStyle = { width: (options.width) + 'px', height: options.height};
          var className = 'rav_project'
          
          var photo = null;
          if (options.photos &amp;&amp; project.thumbnail) {
            className += ' rav_project_with_photos';
            photo = { tag: 'a', className: 'rav_photo_link', href: project.thumbnail.flickrUrl, children: [
                {tag: 'img', src: project.thumbnail.src }
              ]
            };
          }
          
          var title = null;
          if (options.title != false) {
            title = { tag: 'a', className: 'rav_title', href: project.url, children: [project.name] };
          }
          
          container.appendChild($E({
            tag: 'div',
            className: className,
            children: [ title, photo,
              { tag: 'div', className: 'rav_progress_bar_wrapper', style: barStyle, children: [
                { tag: 'div', className: 'rav_progress_bar', style: barStyle, children: [
                  {tag: 'div', className: 'rav_progress_filled', style: filledStyle},
                  {tag: 'div', className: 'rav_progress_text', style: barStyle, 
                    children: [ project.progress + '%' ]}
                ]}
              ]}
            ]
          }));
        }
      }
    }
  }();


It seems lately there’ve been a lot of people misinterpreting my tumblr. All I do here is post things that make me think or that are newsworthy. As I originally said, “just a collection of links that interest me and that I think you nerds will enjoy.” 
Whether I agree with them or not is beside the point. The point is for us to gather what knowledge we can from the article, think about it, and then move on.

“When somebody persuades me that I am wrong, I change my mind. What do you do?” —John Maynard Keynes

  





50 Books challenge 2009: 31 of 50  RavelryThing.drawProgressBars({color: '#094D58'}); Color by COLOURlovers



News links:BBC World NewsThe EconomistNew York TimesScientific AmericanHow Stuff Works


Tag Cloud:
</description><title>Mollie's Bubbles</title><generator>Tumblr (3.0; @molliet)</generator><link>http://mollietaylor.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MollieTaylor" /><feedburner:info uri="mollietaylor" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Planet Money: "We Bought A Toxic Asset!"</title><description>&lt;a href="http://www.npr.org/blogs/money/2010/03/podcast_we_bought_a_toxic_asse.html"&gt;Planet Money: "We Bought A Toxic Asset!"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/OwWCG_HiA8c" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/OwWCG_HiA8c/439097469</link><guid isPermaLink="false">http://mollietaylor.com/post/439097469</guid><pubDate>Wed, 10 Mar 2010 10:03:51 -0500</pubDate><category>economics</category><feedburner:origLink>http://mollietaylor.com/post/439097469</feedburner:origLink></item><item><title>Purdue University: "Impact of Biofeedstock Production on Hydrology/Water Quality in Midwest and Southeast USA" [PDF]</title><description>&lt;a href="https://engineering.purdue.edu/biomasswq/project%20flyer-final.pdf"&gt;Purdue University: "Impact of Biofeedstock Production on Hydrology/Water Quality in Midwest and Southeast USA" [PDF]&lt;/a&gt;: &lt;p&gt;(via my dad)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/FKTy6ooeaGI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/FKTy6ooeaGI/432322501</link><guid isPermaLink="false">http://mollietaylor.com/post/432322501</guid><pubDate>Sun, 07 Mar 2010 08:03:50 -0500</pubDate><category>water</category><category>water quality</category><category>hydrology</category><category>agriculture</category><category>biofuel</category><category>energy</category><category>water-energy nexus</category><feedburner:origLink>http://mollietaylor.com/post/432322501</feedburner:origLink></item><item><title>Nature: "Cultivating new talent"</title><description>&lt;a href="http://www.nature.com/naturejobs/2010/100304/full/nj7285-128a.html"&gt;Nature: "Cultivating new talent"&lt;/a&gt;: &lt;p&gt;(via my dad)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/K3mksGdjP3w" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/K3mksGdjP3w/431241989</link><guid isPermaLink="false">http://mollietaylor.com/post/431241989</guid><pubDate>Sat, 06 Mar 2010 20:02:02 -0500</pubDate><category>multidisciplinary</category><category>international affairs</category><category>economics</category><category>agriculture</category><feedburner:origLink>http://mollietaylor.com/post/431241989</feedburner:origLink></item><item><title>The Economist: "The spread of GM crops: Taking root"</title><description>&lt;a href="http://www.economist.com/business-finance/displaystory.cfm?story_id=15580864"&gt;The Economist: "The spread of GM crops: Taking root"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/RU0uG-Ktrkg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/RU0uG-Ktrkg/430180430</link><guid isPermaLink="false">http://mollietaylor.com/post/430180430</guid><pubDate>Sat, 06 Mar 2010 08:01:50 -0500</pubDate><category>agriculture</category><category>GM crops</category><feedburner:origLink>http://mollietaylor.com/post/430180430</feedburner:origLink></item><item><title>The Economist: "Animal welfare in China: Off the menu"</title><description>&lt;a href="http://www.economist.com/world/asia/displaystory.cfm?story_id=15580840"&gt;The Economist: "Animal welfare in China: Off the menu"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/aq5FwHHBcwA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/aq5FwHHBcwA/429454696</link><guid isPermaLink="false">http://mollietaylor.com/post/429454696</guid><pubDate>Fri, 05 Mar 2010 22:34:01 -0500</pubDate><category>livestock</category><category>agriculture</category><feedburner:origLink>http://mollietaylor.com/post/429454696</feedburner:origLink></item><item><title>Visual Economics: “Healthcare Costs Around the...</title><description>&lt;img src="http://27.media.tumblr.com/tumblr_kynsidkv3n1qzjsazo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.visualeconomics.com/healthcare-costs-around-the-world_2010-03-01/"&gt;Visual Economics: “Healthcare Costs Around the World”&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/8rZwIkVdOXc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/8rZwIkVdOXc/422556957</link><guid isPermaLink="false">http://mollietaylor.com/post/422556957</guid><pubDate>Tue, 02 Mar 2010 15:34:55 -0500</pubDate><category>chart</category><category>economics</category><category>healthcare</category><feedburner:origLink>http://mollietaylor.com/post/422556957</feedburner:origLink></item><item><title>“Fear the Boom and Bust” a Hayek vs. Keynes Rap...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/d0nERTFo-Sk&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/d0nERTFo-Sk&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;“Fear the Boom and Bust” a Hayek vs. Keynes Rap Anthem&lt;/p&gt;
&lt;p&gt;&lt;a href="http://econstories.tv/home.html"&gt;econstories.tv&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/HUe9o0FuzQU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/HUe9o0FuzQU/416656297</link><guid isPermaLink="false">http://mollietaylor.com/post/416656297</guid><pubDate>Sat, 27 Feb 2010 22:07:05 -0500</pubDate><category>economics</category><category>financial crisis</category><feedburner:origLink>http://mollietaylor.com/post/416656297</feedburner:origLink></item><item><title>WHO: "Health risks in aquifer recharge using reclaimed water"</title><description>&lt;a href="http://www.who.int/water_sanitation_health/wastewater/wsh0308/en/index.html"&gt;WHO: "Health risks in aquifer recharge using reclaimed water"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/DKFa8oFFV84" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/DKFa8oFFV84/412478780</link><guid isPermaLink="false">http://mollietaylor.com/post/412478780</guid><pubDate>Thu, 25 Feb 2010 22:34:02 -0500</pubDate><category>aquifers</category><category>groundwater</category><category>treated wastewater</category><category>wastewater</category><category>recharge</category><category>groundwater recharge</category><feedburner:origLink>http://mollietaylor.com/post/412478780</feedburner:origLink></item><item><title>NY Times: "Disaster Awaits Cities in Earthquake Zones"</title><description>&lt;a href="http://www.nytimes.com/2010/02/25/science/earth/25quake.html?ref=world"&gt;NY Times: "Disaster Awaits Cities in Earthquake Zones"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/ij12BnHeOEA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/ij12BnHeOEA/411951131</link><guid isPermaLink="false">http://mollietaylor.com/post/411951131</guid><pubDate>Thu, 25 Feb 2010 18:08:52 -0500</pubDate><category>earthquake</category><category>earth science</category><category>science</category><category>engineering</category><category>international affairs</category><feedburner:origLink>http://mollietaylor.com/post/411951131</feedburner:origLink></item><item><title>NY Times: "Aquaponics, a Gardening System Using Fish and Circulating Water"</title><description>&lt;a href="http://www.nytimes.com/2010/02/18/garden/18aqua.html?scp=1&amp;sq=the%20spotless%20garden&amp;st=cse"&gt;NY Times: "Aquaponics, a Gardening System Using Fish and Circulating Water"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/TMzH6je3Us4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/TMzH6je3Us4/397465516</link><guid isPermaLink="false">http://mollietaylor.com/post/397465516</guid><pubDate>Thu, 18 Feb 2010 19:34:51 -0500</pubDate><category>water</category><category>aquaponics</category><feedburner:origLink>http://mollietaylor.com/post/397465516</feedburner:origLink></item><item><title>Earthweek: "Drying Stratosphere Dampens Global Warming"</title><description>&lt;a href="http://www.earthweek.com/2010/ew100205/ew100205b.html"&gt;Earthweek: "Drying Stratosphere Dampens Global Warming"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/7S0Yyzwcu30" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/7S0Yyzwcu30/384947268</link><guid isPermaLink="false">http://mollietaylor.com/post/384947268</guid><pubDate>Thu, 11 Feb 2010 23:34:06 -0500</pubDate><category>climate</category><category>science</category><feedburner:origLink>http://mollietaylor.com/post/384947268</feedburner:origLink></item><item><title>Watch General Petraeus' Dialogue</title><description>&lt;a href="http://www.inta.gatech.edu/news-events/news/release.php?id=4050"&gt;Watch General Petraeus' Dialogue&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/WFf76B83so0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/WFf76B83so0/380613811</link><guid isPermaLink="false">http://mollietaylor.com/post/380613811</guid><pubDate>Tue, 09 Feb 2010 17:25:50 -0500</pubDate><category>petraeus</category><category>iraq</category><category>georgia tech</category><category>international affairs</category><feedburner:origLink>http://mollietaylor.com/post/380613811</feedburner:origLink></item><item><title>2lingual search</title><description>&lt;a href="http://www.2lingual.com/"&gt;2lingual search&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/WJzCvFSrYi0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/WJzCvFSrYi0/379920191</link><guid isPermaLink="false">http://mollietaylor.com/post/379920191</guid><pubDate>Tue, 09 Feb 2010 08:01:52 -0500</pubDate><category>research</category><feedburner:origLink>http://mollietaylor.com/post/379920191</feedburner:origLink></item><item><title>River Network: "DOE Report to Congress: Reducing Water Consumption of Concentrating Solar Power"</title><description>&lt;a href="http://www.rivernetwork.org/blog/7/2010/01/07/doe-report-congress-reducing-water-consumption-csp"&gt;River Network: "DOE Report to Congress: Reducing Water Consumption of Concentrating Solar Power"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/ZS38pevhVHQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/ZS38pevhVHQ/363146696</link><guid isPermaLink="false">http://mollietaylor.com/post/363146696</guid><pubDate>Sun, 31 Jan 2010 08:01:49 -0500</pubDate><category>water</category><category>water-energy nexus</category><category>energy</category><category>solar power</category><feedburner:origLink>http://mollietaylor.com/post/363146696</feedburner:origLink></item><item><title>The Jerusalem Post: "Netafim opens a new factory... in Turkey"</title><description>&lt;a href="http://www.jpost.com/Israel/Article.aspx?id=167175"&gt;The Jerusalem Post: "Netafim opens a new factory... in Turkey"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/KMym7v5JcnY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/KMym7v5JcnY/362048066</link><guid isPermaLink="false">http://mollietaylor.com/post/362048066</guid><pubDate>Sat, 30 Jan 2010 17:51:04 -0500</pubDate><category>turkey</category><category>israel</category><category>water</category><category>drip irrigation</category><category>irrigation</category><feedburner:origLink>http://mollietaylor.com/post/362048066</feedburner:origLink></item><item><title>NYTimes: “Deadly Haitian Quake in the Seismically Active...</title><description>&lt;img src="http://27.media.tumblr.com/tumblr_kwv55x13jn1qzjsazo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.nytimes.com/2010/01/26/science/26fault.html?ref=science"&gt;NYTimes: “Deadly Haitian Quake in the Seismically Active Caribbean”&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/gkfSTa_VkTw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/gkfSTa_VkTw/357852313</link><guid isPermaLink="false">http://mollietaylor.com/post/357852313</guid><pubDate>Thu, 28 Jan 2010 08:01:51 -0500</pubDate><category>science</category><category>earth science</category><category>earthquake</category><feedburner:origLink>http://mollietaylor.com/post/357852313</feedburner:origLink></item><item><title>NYTimes.com - Editorial Observer: "A Legal Puzzle - Can a Baby Have Three Biological Parents?"</title><description>&lt;a href="http://www.nytimes.com/2010/01/26/opinion/26tues3.html?scp=1&amp;sq=a%20legal%20puzzle%20baby&amp;st=cse"&gt;NYTimes.com - Editorial Observer: "A Legal Puzzle - Can a Baby Have Three Biological Parents?"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/o_qUTQWq4ic" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/o_qUTQWq4ic/356973590</link><guid isPermaLink="false">http://mollietaylor.com/post/356973590</guid><pubDate>Wed, 27 Jan 2010 20:03:55 -0500</pubDate><category>science</category><category>biology</category><feedburner:origLink>http://mollietaylor.com/post/356973590</feedburner:origLink></item><item><title>NYTimes: "Corporate Money to Pay for Scientific Research? Get Over It"</title><description>&lt;a href="http://www.nytimes.com/2010/01/26/science/26tier.html?8dpc"&gt;NYTimes: "Corporate Money to Pay for Scientific Research? Get Over It"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/Xpb1t3RYZjI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/Xpb1t3RYZjI/356474138</link><guid isPermaLink="false">http://mollietaylor.com/post/356474138</guid><pubDate>Wed, 27 Jan 2010 14:02:49 -0500</pubDate><category>science</category><category>research</category><feedburner:origLink>http://mollietaylor.com/post/356474138</feedburner:origLink></item><item><title>DTN/The Progressive Farmer: "Study: 'Algae Fuels Have Large Footprint' "</title><description>&lt;a href="http://www.dtnprogressivefarmer.com/dtnag/common/link.do?symbolicName=/ag/blogs/template1&amp;blogHandle=ethanol&amp;blogEntryId=8a82c0bc265f7041012665ee39920054"&gt;DTN/The Progressive Farmer: "Study: 'Algae Fuels Have Large Footprint' "&lt;/a&gt;: &lt;p&gt;(via my dad) &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/doH3-0AFR8c" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/doH3-0AFR8c/356088956</link><guid isPermaLink="false">http://mollietaylor.com/post/356088956</guid><pubDate>Wed, 27 Jan 2010 08:01:51 -0500</pubDate><category>algae</category><category>alternate energy</category><category>energy</category><category>sustainability</category><category>water</category><category>water-energy nexus</category><feedburner:origLink>http://mollietaylor.com/post/356088956</feedburner:origLink></item><item><title>Green Inc. Blog - NYTimes.com: "California to Subsidize Solar Water Heaters"</title><description>&lt;a href="http://greeninc.blogs.nytimes.com/2010/01/21/solar-water-heaters-get-a-boost-in-california/"&gt;Green Inc. Blog - NYTimes.com: "California to Subsidize Solar Water Heaters"&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/MollieTaylor/~4/bOJcupo9Klc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/MollieTaylor/~3/bOJcupo9Klc/355560435</link><guid isPermaLink="false">http://mollietaylor.com/post/355560435</guid><pubDate>Tue, 26 Jan 2010 23:35:01 -0500</pubDate><category>california</category><category>water-energy nexus</category><category>water</category><category>energy</category><feedburner:origLink>http://mollietaylor.com/post/355560435</feedburner:origLink></item></channel></rss>
