Friday, November 30, 2012

Plant Clones from Cuttings

Introduction:
Whether you are a commercial planter or just a backyard gardener, plant propagation through cuttings can serve as a great way to multiply your number of plants without breaking the bank. Since cutting propagation requires minimal supplies and maintenance, it may be possible to mass produce plants and sell them on eBay.


The goal for this project:
-Design, build, and implement a system to mass produce plants while maintaining a low upkeep cost. 
-Sell the plants online at a price that is affordable for shoppers, but also brings in a realistic profit.

Step One: Choosing the Plant
-The most important aspect of this entire project is to choose the plant that fits our ideal specifications. We want the plant to have a fast growth rate, root quickly, exhibit traits that prove desirable to potential customers, and require relatively low levels of light for proper growth.
-For this project, we chose to go with Brugmansia, more commonly known as Angel's Trumpet. This plant does well with moist soil, full sun to part shade, root at an extremely fast rate, and are famous for their long, downward pointing flowers.



Step Two: How to Gather Cuttings
-While the procedure varies from plant to plant, a proper cutting will almost always contain a length of branch several inches long, and at least one leaf node. The leaf nodes are the points on a plant where leaves attach, which contain the necessary cells to form new branches.




Step Three: Method of Cutting Propagation
-Before you can start rooting your cuttings, the method of propagation must be determined. Some growers use drip irrigation, and root their cuttings in segments of sponge, others use gravel and periodically 'flood' the cuttings with nutrient rich water. We will be going with a simple, low maintenance technique consisting of a large, watertight tray with a light source mounted above. The cuttings will be placed in small cups of dirt with pre-drilled holes on the bottom. To water our cuttings, we will simply pour water into the tray, allowing all of the dirt to absorb it through the cup bottoms. Since we are planning on mass producing a large number of plants, this watering method will save us a lot of time.

Step Four: Constructing the Tray/Propagator 
-We designed our propagator to hold 100 plant cups, so there will be a considerable amount of weight that it must support. For this reason, we chose to use Superstrut for the framework, and 1/4 PVC sheets for the bottom and sides. If you do not have access to PVC sheets, plywood will work just as well, just be sure to give it a heavy coat of paint and sealer.
-For the light source, we picked up a cheap 4ft fluorescent fixture and mounted it using angle iron and rebar.










Analysis of Project:
-After one week, the cuttings were very well rooted and beginning to grow branches from the leaf nodes. After two weeks they had a cluster of large leaves and were ready for sale on eBay.








Friday, January 20, 2012

Useful Web Design Code, Tips, and References.

     Making your very own website can be fun, educational, and give you something to show off to your friends. However, adding certain features to your site like centering all of the content or embedding a movie/game can be a little tricky.
     This post will be continuously updated with useful code, tips, and website references that will help you make your website everything you want it to be.
----------------------------------------------------------------------------------------------------------------------------------
1) News Reel:
-A useful feature for any website is a news reel. This can be used to say 'Hi' to friends, inform people of important updates, and even contain links to other sites. The best free news reel code I have found would be the 'Scrolling News Ticker' by Mioplanet.
http://www.mioplanet.com/rsc/newsticker_javascript.htm
-This news reel has a VERY smooth glide from right to left, and can be customized easily by following the directions on their page.
-Here is an exampe of how the news reel can be used: www.trisolate.com
----------------------------------------------------------------------------------------------------------------------------------
2) Center your Content:
-If you are having problems making your website content appear in the center of the page, you can create a simple class that centers the content for any size browser window. This means that for any resolution, or browser window size, your website content will sit at the dead center of your window.
-This code was found on: http://www.dreamweaverclub.com/css-center-content.php
-This is a website that is currently using this code: www.trisolate.com
-To create this class, add the following code to each page that you want centered:

     THE HTML:
          <body>
          <div class="wrapper"> all content goes here </div>
          </body>


     THE CSS:
          body {
          text-align : center ;
          min-width : 770px ;
          }
          div.wrapper {
          width : 770px ;
          text-align : left ;
          margin-left : auto ;
          margin-right : auto ;
          position : relative ;
          }
----------------------------------------------------------------------------------------------------------------------------------
3) Embed a Flash Game (swf file) or a YouTube Video
-Some websites, like youtube.com and http://www.addictinggames.com/embeddable-games/index.jsp will allow you to put their games and videos on your site by providing you with an embed code. The embed code will make the video or game show up wherever you put the code on your webpage. The easiest way to work with an embed code is to put it in a Div Tag, that way you can move the game or video wherever you want.


-Here is an example embed code from: http://www.addictinggames.com/embeddable-games/index.jsp

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"         codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0"      id="gameObject" width="550" height="400"><param name="movie" value="/newGames/action-games/tank2010/tank2010_w.swf"/><param name="menu" value="false"/><param  name="allowscriptaccess" value="always"/><param name="allownetworking" value="all"/><embed  src="/newGames/action-games/tank2010/tank2010_w.swf" width="550" height="400" menu="false"   allowscriptaccess="always" allownetworking="all" name="gameObject" type="application/x-shockwave- flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object><span style="font- size:11px;"><br/><a href="" style="font-size:11px;">Games</a>:<a  href="http://www.addictinggames.com/action-games/index.jsp" style="font-size:11px;">Play Action Games  on AddictingGames</a><br/><a href="http://www.addictinggames.com/legal/terms-use.jsp" style="font- size:11px;">Terms of Use</a> | <a href="http://www.addictinggames.com/legal/copyright.jsp" style="font- size:11px;">&copy; 2011 Atom Entertainment, Inc., a subsidiary of Viacom International Inc. All Rights  Reserved.</a></span>


-Here is an example embed code from: www.youtube.com

<iframe width="560" height="315" src="http://www.youtube.com/embed/2sWWoDGOSQU?rel=0" frameborder="0" allowfullscreen></iframe>


-And finally, this is what an embedded video looks like: http://trisolate.com/HoneyBeesWaxMoths.html

----------------------------------------------------------------------------------------------------------------------------------