<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-27747415-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

A collection of infographics, research material, art and spontaneous thoughts related to urban agriculture, sustainability and the Vertical Theory project.:

Vertical Farms: A Sustainable Approach to Urban Agriculture

To see all photos taken during the research, design and build phase of this project check out my flickr set.



	#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif;  width:360px;}
	/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
	   We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */


	Subscribe to our mailing list
* indicates required

	Email Address  *

	

    Email Format 
    html
text
mobile

	
		
		
		



var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';
try {
    var jqueryLoaded=jQuery;
    jqueryLoaded=true;
} catch(err) {
    var jqueryLoaded=false;
}
var head= document.getElementsByTagName('head')[0];
if (!jqueryLoaded) {
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js';
    head.appendChild(script);
    if (script.readyState &amp;&amp; script.onload!==null){
        script.onreadystatechange= function () {
              if (this.readyState == 'complete') mce_preload_check();
        }    
    }
}
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://downloads.mailchimp.com/js/jquery.form-n-validate.js';
head.appendChild(script);
var err_style = '';
try{
    err_style = mc_custom_error_style;
} catch(e){
    err_style = '#mc_embed_signup input.mce_inline_error{border-color:#6B0505;} #mc_embed_signup div.mce_inline_error{margin: 0 0 1em 0; padding: 5px 10px; background-color:#6B0505; font-weight: bold; z-index: 1; color:#fff;}';
}
var head= document.getElementsByTagName('head')[0];
var style= document.createElement('style');
style.type= 'text/css';
if (style.styleSheet) {
  style.styleSheet.cssText = err_style;
} else {
  style.appendChild(document.createTextNode(err_style));
}
head.appendChild(style);
setTimeout('mce_preload_check();', 250);

var mce_preload_checks = 0;
function mce_preload_check(){
    if (mce_preload_checks&gt;40) return;
    mce_preload_checks++;
    try {
        var jqueryLoaded=jQuery;
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    try {
        var validatorLoaded=jQuery("#fake-form").validate({});
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    mce_init_form();
}
function mce_init_form(){
    jQuery(document).ready( function($) {
      var options = { errorClass: 'mce_inline_error', errorElement: 'div', onkeyup: function(){}, onfocusout:function(){}, onblur:function(){}  };
      var mce_validator = $("#mc-embedded-subscribe-form").validate(options);
      $("#mc-embedded-subscribe-form").unbind('submit');//remove the validator so we can get into beforeSubmit on the ajaxform, which then calls the validator
      options = { url: 'http://vertical-theory.us4.list-manage2.com/subscribe/post-json?u=7487a9efaa24bae6453f59863&amp;id=7e93078a1c&amp;c=?', type: 'GET', dataType: 'json', contentType: "application/json; charset=utf-8",
                    beforeSubmit: function(){
                        $('#mce_tmp_error_msg').remove();
                        $('.datefield','#mc_embed_signup').each(
                            function(){
                                var txt = 'filled';
                                var fields = new Array();
                                var i = 0;
                                $(':text', this).each(
                                    function(){
                                        fields[i] = this;
                                        i++;
                                    });
                                $(':hidden', this).each(
                                    function(){
                                        var bday = false;
                                        if (fields.length == 2){
                                            bday = true;
                                            fields[2] = {'value':1970};//trick birthdays into having years
                                        }
                                    	if ( fields[0].value=='MM' &amp;&amp; fields[1].value=='DD' &amp;&amp; (fields[2].value=='YYYY' || (bday &amp;&amp; fields[2].value==1970) ) ){
                                    		this.value = '';
									    } else if ( fields[0].value=='' &amp;&amp; fields[1].value=='' &amp;&amp; (fields[2].value=='' || (bday &amp;&amp; fields[2].value==1970) ) ){
                                    		this.value = '';
									    } else {
	                                        this.value = fields[0].value+'/'+fields[1].value+'/'+fields[2].value;
	                                    }
                                    });
                            });
                        return mce_validator.form();
                    }, 
                    success: mce_success_cb
                };
      $('#mc-embedded-subscribe-form').ajaxForm(options);
      
      
    });
}
function mce_success_cb(resp){
    $('#mce-success-response').hide();
    $('#mce-error-response').hide();
    if (resp.result=="success"){
        $('#mce-'+resp.result+'-response').show();
        $('#mce-'+resp.result+'-response').html(resp.msg);
        $('#mc-embedded-subscribe-form').each(function(){
            this.reset();
    	});
    } else {
        var index = -1;
        var msg;
        try {
            var parts = resp.msg.split(' - ',2);
            if (parts[1]==undefined){
                msg = resp.msg;
            } else {
                i = parseInt(parts[0]);
                if (i.toString() == parts[0]){
                    index = parts[0];
                    msg = parts[1];
                } else {
                    index = -1;
                    msg = resp.msg;
                }
            }
        } catch(e){
            index = -1;
            msg = resp.msg;
        }
        try{
            if (index== -1){
                $('#mce-'+resp.result+'-response').show();
                $('#mce-'+resp.result+'-response').html(msg);            
            } else {
                err_id = 'mce_tmp_error_msg';
                html = ' '+msg+'';
                
                var input_id = '#mc_embed_signup';
                var f = $(input_id);
                if (ftypes[index]=='address'){
                    input_id = '#mce-'+fnames[index]+'-addr1';
                    f = $(input_id).parent().parent().get(0);
                } else if (ftypes[index]=='date'){
                    input_id = '#mce-'+fnames[index]+'-month';
                    f = $(input_id).parent().parent().get(0);
                } else {
                    input_id = '#mce-'+fnames[index];
                    f = $().parent(input_id).get(0);
                }
                if (f){
                    $(f).append(html);
                    $(input_id).focus();
                } else {
                    $('#mce-'+resp.result+'-response').show();
                    $('#mce-'+resp.result+'-response').html(msg);
                }
            }
        } catch(e){
            $('#mce-'+resp.result+'-response').show();
            $('#mce-'+resp.result+'-response').html(msg);
        }
    }
}



Abstract

The goal of this project is to design vertical farming systems to promote agriculture in urban environments. As the availability of food, water and energy resources becomes scarcer in an age of detrimental climate change, it will become paramount for food resources to be produced locally and for individuals, families and communities to become self-sufficient in regards to food, waste and energy. As oil prices increase, air quality declines and the global food supply diminishes, alternative methods of farming will be essential to urban living. Indoor vertical gardens and farms utilize minimal space compared to traditional farming, efficiently using space while simultaneously improving air quality, providing insulation to structures, and supplying fresh foods.  

An ideal urban vertical farm system will address the food needs of individuals, families or small communities. Vertical farms can be either a collection of plants grown horizontally in a vertical system or a literally vertical vegetated wall surface. Rain collection systems that impart water directly to soil or plants will be tested in order to minimize consumption and maximize efficiency of water and energy use during the growing process. Plants will ideally rely on passive sunlight but other lighting options will also be explored. The system may also include elements to address home waste and grey water serving a dual function of food supply and waste filtration. 

A verifiable and functional system could provide a long-term solution for individual users to increasing food prices and decreasing usable farmland. This project addresses larger global sustainability needs by creating a solution that is implemented on a small scale.

Keywords: Vertical Garden, Vertical Farm, Urban Garden, Urban Farm, Urban Agriculture, Industrial Agriculture, Rain Reclamation, Grey Water, LED, Hydroponic, Aeroponic, Green Wall


Problem Statement

Traditional farmlands are in a state of constant destruction and failure due to droughts, floods, pests and other detrimental elements created by global climate change. As the global population rapidly approaches 10 billion people there will no longer be sufficient farmland to supply food to all individuals. The United Nations reports that in 1970 there was one acre of farmland per person, this decreased to one-half acre in 2000 and is estimated to reach one-third acre by the year 2050. Seventy percent of globally available fresh water is currently used for irrigation, rendering it useless for drinking once contaminated by fertilizers, pesticides or one of the myriad of potentially hazardous chemicals used on industrial crops.

Urban farming addresses the ever increasing need of local and affordable foods by bringing food production to the individual, family or community. In recent years there has been a rise in demand for locally grown fruits and vegetables and an increase in urban farming programs including community gardens. Progress towards a new paradigm in agriculture is occurring but requires additional education, systems research and implementation. This project is intended to serve as an additional stepping stone in the process of shifting from large scale industrial agriculture to smaller-scale local urban farming. As farming moves from traditional farmlands to urban areas, farmlands that have been damaged by monoculture, harsh chemicals and overuse will be revitalized and returned to a more natural ecological state. In order to protect the diminishing available fresh water, rain water capture and recapture of water within the structure could be utilized for indoor farming systems. Additionally, vertical farms will reduce the production of greenhouse gas emission by limiting energy consumption for growing and shipping.  

Urban vertical farms could be grown in the homes, at schools or in restaurants – offering fresh fruits and vegetables for immediate consumption and cooking. Modern life has led to a rampant increase in obesity and related health problems such as diabetes. Vertical farms could provide local, fresh, unprocessed foods to a larger under-served population such as those living in low-income communities. Fresh, organic foods are often costly and not accessible to these communities. Accessibility to full service grocery stores is often diminished in low-income communities forcing families to turn to low-quality processed foods offered in convenience stores and fast food restaurants.  

Indoor vertical gardens will also provide improved air quality and serve as thermal barriers/insulators. Because indoor vertical farms will rely on passive sunlight they will be visible to both the inhabitants and the outside world, creating a beautification of urban environments. The perceived advantages of a vertically oriented system include an efficient use of space, gravity as a function of watering plants in a hydroponic system, and maximum accessibility to passive sunlight through windows (able to use entirety of window). Aesthetic qualities are also an important consideration. There is a perceived innate value in plant life that tends to provide an aspect of beauty, but the system itself can greatly diminish or accentuate that beauty depending on arrangement of components, materials used and technologies in place.</description><title>vertical theory: farming in urban environments</title><generator>Tumblr (3.0; @verticaltheory)</generator><link>http://www.vertical-theory.com/</link><item><title>Wild Farming - Wikipedia</title><description>&lt;a href="http://en.wikipedia.org/wiki/Wild_farming"&gt;Wild Farming - Wikipedia&lt;/a&gt;: &lt;p&gt;&lt;a class="tumblr_blog" href="http://permatech.tumblr.com/post/23849018879/wild-farming-wikipedia" target="_blank"&gt;permatech&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The agricultural technique known as “Wild Farming” is a growing alternative to “&lt;a href="http://en.wikipedia.org/wiki/Factory_farming" title="Factory farming" target="_blank"&gt;factory farming&lt;/a&gt;”. &lt;strong&gt;Wild farming&lt;/strong&gt; consists of planting crops that are highly associated and supportive to the natural ecosystem.&lt;sup class="reference" id="cite_ref-imh_0-0"&gt;&lt;a href="http://en.wikipedia.org/wiki/Wild_farming#cite_note-imh-0" target="_blank"&gt;[1]&lt;/a&gt;&lt;/sup&gt; This includes &lt;a href="http://en.wikipedia.org/wiki/Intercropping" title="Intercropping" target="_blank"&gt;intercropping&lt;/a&gt; with native plants, following the contours and geography of the land, and supporting local food chains.&lt;sup class="reference" id="cite_ref-alt_1-0"&gt;&lt;a href="http://en.wikipedia.org/wiki/Wild_farming#cite_note-alt-1" target="_blank"&gt;[2]&lt;/a&gt;&lt;/sup&gt; The goal is to produce large crop yields, while still promoting a healthy environment. Wild farming is a backlash against the dominance of factory farming. Up until the mid 20th century, agicultural crop yields relied on natural inputs such as rainfall patterns, natural soil resources, recycling of organic matter, and built-in biological control mechanisms.&lt;sup class="reference" id="cite_ref-alt_1-1"&gt;&lt;a href="http://en.wikipedia.org/wiki/Wild_farming#cite_note-alt-1" target="_blank"&gt;[2]&lt;/a&gt;&lt;/sup&gt; Currently, agricultural practices have been conventionalized to include large monocropped fields and use of synthetics: pesticides and fertilizers. Avoiding the conventional farming practices, wild farming adopts many practices from sustainable agricultural systems such as &lt;a href="http://en.wikipedia.org/wiki/Agroecology" title="Agroecology" target="_blank"&gt;agroecology&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Permaculture" title="Permaculture" target="_blank"&gt;permaculture&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Forest_farming" title="Forest farming" target="_blank"&gt;forest farming&lt;/a&gt;, and &lt;a href="http://en.wikipedia.org/wiki/Greywater" title="Greywater" target="_blank"&gt;greywater&lt;/a&gt; systems. The four basic guiding principles of the wild farming movement are:&lt;/p&gt;
&lt;p&gt;1. Direct managers to develop long-term vision for future of landscape&lt;/p&gt;
&lt;p&gt;2. Basic recognition of ecosystem processes.&lt;/p&gt;
&lt;p&gt;3. High value on biological diversity.&lt;/p&gt;
&lt;p&gt;4. To consider the quality of life of the community as well as the self.&lt;/p&gt;
&lt;p&gt;via &lt;a class="tumblr_blog" href="http://fuckyeahpermaculture.tumblr.com/post/23730017909/wild-farming-wikipedia" target="_blank"&gt;fuckyeahpermaculture&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://www.vertical-theory.com/post/23963859676</link><guid>http://www.vertical-theory.com/post/23963859676</guid><pubDate>Mon, 28 May 2012 20:16:10 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>via Farmer D Organics</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m4flbpQCnR1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;via &lt;a href="https://www.facebook.com/pages/Farmer-D-Organics/195638330269" target="_blank"&gt;Farmer D Organics&lt;/a&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23547175382</link><guid>http://www.vertical-theory.com/post/23547175382</guid><pubDate>Tue, 22 May 2012 11:50:13 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Plant Pods by Domenic Fiorello Studio
Create a green wall in a...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4e3i6kSOa1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h3&gt;&lt;a href="http://inhabitat.com/model-citizens-creates-a-hub-for-emerging-green-creatives-at-ny-design-week/shelf-planters-by-dominic-fiorello-studio/?extend=1" target="_blank"&gt;Plant Pods by Domenic Fiorello Studio&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span&gt;Create a green wall in a modern and minimalistic way with &lt;/span&gt;&lt;a href="http://domenicfiorello.com/" target="_blank"&gt;Domenic Fiorello Studio&lt;/a&gt;&lt;span&gt;’s Plant Pods. Each shelf-like planter can hold a small succulent that doesn’t require much water. The pods are made from white oak.&lt;/span&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23495586753</link><guid>http://www.vertical-theory.com/post/23495586753</guid><pubDate>Mon, 21 May 2012 16:27:42 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Greenhouse Island by Peter Buley
Short on space and hungry for...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4e3fdHYCF1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h3&gt;&lt;a href="http://inhabitat.com/model-citizens-creates-a-hub-for-emerging-green-creatives-at-ny-design-week/" target="_blank"&gt;Greenhouse Island by Peter Buley&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span&gt;Short on space and hungry for some fresh greens? This kitchen island by designer and woodworker &lt;/span&gt;&lt;a href="http://www.analogmodern.com/" target="_blank"&gt;Puter Buley &lt;/a&gt;&lt;span&gt;allows apartment dwellers to better utilize their limited space by turning a common household feature into what’s essentially a greenhouse. The design uses energy-efficient lights — two LEDs and 2 T5 CFL — and is sure to provide for some interesting lighting scenarios.&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;via Inhabitat&lt;/span&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23495500832</link><guid>http://www.vertical-theory.com/post/23495500832</guid><pubDate>Mon, 21 May 2012 16:26:01 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Terrarium Mask by Krystal Persaud
Here’s another one for a...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4e3c70z0p1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h3&gt;&lt;a href="http://inhabitat.com/model-citizens-creates-a-hub-for-emerging-green-creatives-at-ny-design-week/terrarium-mask-by-krystal-persaud/" target="_blank"&gt;Terrarium Mask by Krystal Persaud&lt;/a&gt;&lt;/h3&gt;
&lt;h3&gt;Here’s another one for a post-apocalyptic world — &lt;a href="http://www.krystalpersaud.com/" target="_blank"&gt;Krystal Persaud&lt;/a&gt;’s terrarium mask uses living plants to filter pollution. Simply zip open the terrarium mask and enjoy some fresh oxygen.&lt;/h3&gt;
&lt;p&gt;&lt;span&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23495403371</link><guid>http://www.vertical-theory.com/post/23495403371</guid><pubDate>Mon, 21 May 2012 16:24:07 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Weight of the Nation &amp; Obesity Prevention</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4dyjeGthw1qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;h1&gt;&lt;a href="http://www.foodandtechconnect.com/site/2012/05/11/infographic-weight-of-the-nation-obesity-prevention/" rel="bookmark" title="Permanent Link to Infographic of the Week: Weight of the Nation &amp; Obesity Prevention" target="_blank"&gt;Weight of the Nation &amp; Obesity Prevention&lt;/a&gt;&lt;/h1&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23490593996</link><guid>http://www.vertical-theory.com/post/23490593996</guid><pubDate>Mon, 21 May 2012 14:40:26 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Bay Area Maker Faire 2012</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4dxjyMC4h1qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Bay Area Maker Faire 2012&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23489702659</link><guid>http://www.vertical-theory.com/post/23489702659</guid><pubDate>Mon, 21 May 2012 14:19:10 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Organic Food &amp; Beverage Sales Reach $29.2 Billion in 2011</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m4dxfwuMnZ1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;h1&gt;&lt;a href="http://www.foodandtechconnect.com/site/2012/05/07/infographic-organic-food-beverages-reaches-29-2-billion-in-2011/" rel="bookmark" title="Permanent Link to Infographic of the Week: Organic Food &amp; Beverage Sales Reach $29.2 Billion in 2011" target="_blank"&gt;Organic Food &amp; Beverage Sales Reach $29.2 Billion in 2011&lt;/a&gt;&lt;/h1&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23489601742</link><guid>http://www.vertical-theory.com/post/23489601742</guid><pubDate>Mon, 21 May 2012 14:16:44 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Bay Area Maker Faire 2012</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4d8zw37u61qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Bay Area Maker Faire 2012&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23472996795</link><guid>http://www.vertical-theory.com/post/23472996795</guid><pubDate>Mon, 21 May 2012 05:28:44 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Bay Area Maker Faire 2012!</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m4d8rq67Mg1qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Bay Area Maker Faire 2012!&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23472907392</link><guid>http://www.vertical-theory.com/post/23472907392</guid><pubDate>Mon, 21 May 2012 05:23:50 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Emeryville Community Garden</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m4725eF2MG1qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Emeryville Community Garden&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23263735531</link><guid>http://www.vertical-theory.com/post/23263735531</guid><pubDate>Thu, 17 May 2012 21:15:14 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Artist Transforms Furniture Into Indoor Micro-Farms
Opening this...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m46g4q90Uo1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;h1 class="post-title single-title entry-title"&gt;&lt;a href="http://crispgreen.com/2012/05/artist-transforms-furniture-into-indoor-micro-farms/" rel="bookmark" title="Artist Transforms Furniture Into Indoor Micro-Farms" target="_blank"&gt;Artist Transforms Furniture Into Indoor Micro-Farms&lt;/a&gt;&lt;/h1&gt;
&lt;h3&gt;Opening this month in a New York gallery, Jenna Spevack’s urban agriculture inspired exhibition showcases in-home micro-farms.&lt;/h3&gt;
&lt;h3&gt;See more images and read the &lt;a href="http://crispgreen.com/2012/05/artist-transforms-furniture-into-indoor-micro-farms/" target="_blank"&gt;full story here.&lt;/a&gt; &lt;/h3&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23235330548</link><guid>http://www.vertical-theory.com/post/23235330548</guid><pubDate>Thu, 17 May 2012 13:19:38 -0400</pubDate><category>art</category><category>design</category><category>jenna spevack</category><category>mixed greens gallery</category><category>urban ag</category><category>urban agriculture</category><dc:creator>kmackay</dc:creator></item><item><title>Sneak Peek: Top 7 Sustainable Exhibits to See at Maker Faire Bay...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m46e8mRgTV1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h1 class="post-title single-title entry-title"&gt;&lt;a href="http://greenupgrader.com/19934/bay-area-maker-faire/" rel="bookmark" title="Sneak Peek: Top 7 Sustainable Exhibits to See at Maker Faire Bay Area this Weekend" target="_blank"&gt;Sneak Peek: Top 7 Sustainable Exhibits to See at Maker Faire Bay Area this Weekend&lt;/a&gt;&lt;/h1&gt;
&lt;h3&gt;This Saturday and Sunday, makers and DIYers from across the country will be showing their work, doing demos and leading how-to sessions at Maker Faire Bay Area.&lt;/h3&gt;
&lt;p&gt;Vertical Theory will be there too! Read the full story &lt;a href="http://greenupgrader.com/19934/bay-area-maker-faire/" target="_blank"&gt;here. &lt;/a&gt; &lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23233667636</link><guid>http://www.vertical-theory.com/post/23233667636</guid><pubDate>Thu, 17 May 2012 12:38:46 -0400</pubDate><category>maker faire</category><category>san mateo</category><category>bay area maker faire</category><category>vertical theory</category><category>karen mackay</category><dc:creator>kmackay</dc:creator></item><item><title>Bocci lights by Omer Arbel</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m45p3sX6nj1qa9dlko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;h1 class="photo-title" id="title_div7110374643"&gt;&lt;a href="http://www.flickr.com/photos/azure_magazine/7110374643/" target="_blank"&gt;Bocci lights by Omer Arbel&lt;/a&gt;&lt;/h1&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23219138887</link><guid>http://www.vertical-theory.com/post/23219138887</guid><pubDate>Thu, 17 May 2012 03:35:52 -0400</pubDate><category>design</category><category>art</category><category>glass</category><category>living wall</category><dc:creator>kmackay</dc:creator></item><item><title>rabbitisland:


</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_lgzms88Mbg1qatvuao1_r1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://rabbitisland.tumblr.com/post/3431507929/about" target="_blank"&gt;rabbitisland&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://www.vertical-theory.com/post/23210635734</link><guid>http://www.vertical-theory.com/post/23210635734</guid><pubDate>Wed, 16 May 2012 23:33:21 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>liquidsand:

The Gathering Grove by Ryo Sekino
via New Glass...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m44wi0q3A11qcg2dno1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://liquidsand.tumblr.com/post/23183776027/the-gathering-grove-by-ryo-sekino-via-new-glass" target="_blank"&gt;liquidsand&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The Gathering Grove by &lt;a href="http://www.ryosekino.com/" target="_blank"&gt;Ryo Sekino&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;via &lt;a href="http://www.cmog.org/library/gathering-grove-slide?sm_vid_Technique=blown&amp;sm_vid_Subjects=Glass%20art%20Japan%2021st%20century%20Pictorial%20works.&amp;goto=node/51201&amp;filter=%22bundle%3Alibrary%20AND%20bs_new_glass_review%3Atrue%22&amp;sort=bs_has_image%20desc%2Cscore%20desc&amp;object=7" target="_blank"&gt;New Glass Review&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://www.vertical-theory.com/post/23184772985</link><guid>http://www.vertical-theory.com/post/23184772985</guid><pubDate>Wed, 16 May 2012 17:32:43 -0400</pubDate><category>art</category><category>glass</category><category>nature</category><dc:creator>kmackay</dc:creator></item><item><title>Brick Biotope: Modular Homes For Urban Wildlife
Brick Biotope is...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m44lnadCmy1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h1 class="post-title single-title entry-title"&gt;&lt;a href="http://crispgreen.com/2012/05/brick-biotope-modular-homes-for-urban-wildlife/" rel="bookmark" title="Brick Biotope: Modular Homes For Urban Wildlife" target="_blank"&gt;Brick Biotope: Modular Homes For Urban Wildlife&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;a href="http://extra.wdka.nl/fabrikaat/team-1-moulding/" target="_blank"&gt;&lt;em&gt;Brick Biotope&lt;/em&gt;&lt;/a&gt;&lt;span&gt; is a series of bricks designed specifically to provide a natural living environment for birds within the urban landscape. Inspired by the disappearance of the House Sparrow in the Netherlands, &lt;/span&gt;&lt;em&gt;Brick Biotope&lt;/em&gt;&lt;span&gt;responds to the desire to create hand-made objects in a digital world…Read more &lt;a href="http://crispgreen.com/2012/05/brick-biotope-modular-homes-for-urban-wildlife/" target="_blank"&gt;here&lt;/a&gt;. &lt;/span&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23171700062</link><guid>http://www.vertical-theory.com/post/23171700062</guid><pubDate>Wed, 16 May 2012 13:23:34 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>sfmoma:


Ever since R. Buckminster Fuller popularized the...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m437zpC7ue1r064gzo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://sfmoma.tumblr.com/post/23131045628/ever-since-r-buckminster-fuller-popularized-the" target="_blank"&gt;sfmoma&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Ever since R. Buckminster Fuller popularized the design in the mid-20th century, there’s been something captivating about the geodesic dome. While the structure typically makes architecture lovers salivate, now it’s conquering the heart of another type of urbanist: the city farmer. A new dome-based prototype promises an affordable method of rooftop aquaculture for apartment and commercial buildings—as the website calls it, getting “fish from the sky.” &lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;(via &lt;a href="http://www.good.is/post/a-geodesic-dome-promises-fish-from-the-sky/" target="_blank"&gt;A Geodesic Dome Promises Fish from the Sky - GOOD&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://www.vertical-theory.com/post/23135219213</link><guid>http://www.vertical-theory.com/post/23135219213</guid><pubDate>Tue, 15 May 2012 20:29:26 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>Check it out today New York. </title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m42xqsjOMv1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://cooper.edu/events-and-exhibitions/events/michael-ben-eli-sustainability-by-design" target="_blank"&gt;Check it out today New York. &lt;/a&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23116832364</link><guid>http://www.vertical-theory.com/post/23116832364</guid><pubDate>Tue, 15 May 2012 15:49:40 -0400</pubDate><dc:creator>kmackay</dc:creator></item><item><title>
Homestead SKILLSHARE FESTIVAL

</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m42wo6LM6p1qa9dlko1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;div class="headline"&gt;
&lt;h1 class="title"&gt;&lt;span&gt;&lt;a href="http://www.hayesvalleyfarm.com/blog/605-homestead-skillshare-festival.html" target="_blank"&gt;Homestead SKILLSHARE FESTIVAL&lt;/a&gt;&lt;/span&gt;&lt;/h1&gt;
&lt;/div&gt;
&lt;p class="articleinfo"&gt;&lt;span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/p&gt;</description><link>http://www.vertical-theory.com/post/23115570566</link><guid>http://www.vertical-theory.com/post/23115570566</guid><pubDate>Tue, 15 May 2012 15:26:30 -0400</pubDate><dc:creator>kmackay</dc:creator></item></channel></rss>

