<?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"
	>

<channel>
	<title>WinterRoot</title>
	<atom:link href="http://www.winterroot.net/site/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.winterroot.net/site/wordpress</link>
	<description>Vision Tech for Counter Tech</description>
	<pubDate>Wed, 30 Sep 2009 01:37:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Git For Web Programming #1</title>
		<link>http://www.winterroot.net/site/wordpress/2009/08/31/git-for-web-programming-1/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/08/31/git-for-web-programming-1/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 06:35:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=144</guid>
		<description><![CDATA[
Git is a powerful version control tool, so powerful, even more so than with subversion, you yourself define the strategy that you use to employ it&#8217;s features.  There are myraid ways of doing things and what&#8217;s best really depends on what you are doing.  In my opinion two of the most important features of git [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="GIT LOGO" src="http://git.or.cz/git-logo.png" alt="" width="72" height="27" /></p>
<p><a href="http://git-scm.com/">Git</a> is a powerful version control tool, so powerful, even more so than with subversion, you yourself define the strategy that you use to employ it&#8217;s features.  There are myraid ways of doing things and what&#8217;s best really depends on what you are doing.  In my opinion two of the most important features of git are the ability to easily track incremental commits during development without breaking the entire build for all users and it&#8217;s support for sharing commits between branches.  Both of these features solve major problems with subversion, in which there is no way to commit changes that aren&#8217;t ready for primetime while still retaining a readable revision history in the repository.</p>
<p>Beyond these features though, I have found a few capabilities within git that are ideally suited to web programming.  One is the use of the rebase option to update live sites while keeping those sites on version control.  Often, once a site is live either the installation environment or extensive use will uncover latent bugs in the build.  Sometimes it&#8217;s quickest to just fix these on the live site, and move them back into the repository trunk from there.  If the site is not on version control, copying of files is the only option, thereby losing detailed commit history.  On the other hand, a live site has different database and server settings, sometimes intermixed in settings file that have configurations that are global to both development and live installations.   Git rebase can be used to solve this in a slick way.</p>
<p><span id="more-144"></span></p>
<p>Consider the trunk branch on my development server</p>
<p><code>r1 - r2 - r3 -r4</code></p>
<p>where r4 is the latest commit.  We got live by issuing git clone on the live server, where we now have the same revision history.  However we need to update settings for the live server (or staging, or whatever else).  So we issue</p>
<p>git branch production</p>
<p>git checkout production</p>
<p>At this point we are on the production branch, so make our changes and commit.  All is well and the site is live.  The production branch contains the following revision history</p>
<p style="padding-left: 120px;"><code>p1</code></p>
<p style="padding-left: 90px;">/</p>
<p>r1 - r2 - r3 -r4</p>
<p>However we continue development, so now the trunk is</p>
<pre>r1 - r2 - r3 -r4 -r5 -r6 -r7</pre>
<p>We want go live with the changes, but we don&#8217;t want to take the site down even for a minute.  Anyone who has used git a little will know that the rebase command allows for an easy way to create the revision history</p>
<p style="padding-left: 300px;"><code><br />
p1</code></p>
<p style="padding-left: 270px;"><code><br />
/</code></p>
<p><code><br />
r1 - r2 - r3 - r4 - r5 - r6 - r7<br />
</code></p>
<p>The key here tho, is not to rebase the live installation off of the branch &#8216;master&#8217; as you normally would, but instead to rebase off of &#8216;origin master&#8217;.  Normally you would rebase by first switching to the master branch (git checkout master), pulling down changes (git pull), moving back to production (git checkout production) and then rebasing (git rebase master).  However for the live site this would mean going offline.  A much better option is to never leave the production branch and simply issue</p>
<p><code><br />
git pull<br />
git rebase origin master<br />
</code></p>
<p>This will rebase the production branch off of the remote tracking branch pulled down by the fetch, and keep local changes on the tip of the branch.   Git is very fast, and the rebase takes place in the blink of an eye normally.  Of course it&#8217;s always a good idea to take your site offline when you update, but since a lot of folks updating sites are doing so by ftp or rsync while the site is live, this is by far a better option. All of the updated changes are stored on the live server in the remote tracking branch and need only to have their changes copied over into the checked out copy which is viewable by users.  This is also much safer since a network failure has 0 possibility of leaving the live site in a confusing in-between state.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/08/31/git-for-web-programming-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WinterRoot Holistic Technology</title>
		<link>http://www.winterroot.net/site/wordpress/2009/08/29/new-ad-for-winterroot/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/08/29/new-ad-for-winterroot/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 01:47:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=111</guid>
		<description><![CDATA[
As part of a trade for work on the website for EdibleWOW managazine ( http://www.ediblecommunities.com/wow ) I was given credit for a quarter page ad in their print magazine.  I&#8217;ve never considered advertising for WinterRoot before, but I thought this was an intriguing opportunity to share my ideas about technology.  A notion of a &#8216;holisitic&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/ediblewowadd-web1.gif"><img class="alignnone size-medium wp-image-114" title="WinterRoot Ad for Edible WOW Magazine" src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/ediblewowadd-web1-236x300.gif" alt="" width="236" height="300" /></a></p>
<p>As part of a trade for work on the website for EdibleWOW managazine ( <a href="http://www.ediblecommunities.com/wow">http://www.ediblecommunities.com/wow</a> ) I was given credit for a quarter page ad in their print magazine.  I&#8217;ve never considered advertising for WinterRoot before, but I thought this was an intriguing opportunity to share my ideas about technology.  A notion of a &#8216;holisitic&#8217; approach to technology has always been of interest to me, but only in recent years has my theory of how this might function begun to build out.  This graphic present some ideas pushing in that direction, and presents the additional elements I am slowly adding to WinterRoot&#8217;s capabilities.  I am actively seeking and exploring projects that bring together Information Systems, Alternative Energy, and Permaculture as long term goals - there will be a lot of additional information here on these  pursuits as things progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/08/29/new-ad-for-winterroot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recent sites using MoPCMS</title>
		<link>http://www.winterroot.net/site/wordpress/2009/07/15/recent-sites-using-mopcms/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/07/15/recent-sites-using-mopcms/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 00:49:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=97</guid>
		<description><![CDATA[One of my big projects through this year has been putting a lot of energy behind redesigning and rebuilding the Content Management System we routinely deploy at Made Of People, the interactive media collective started by my close collaborator Thiago deMello Bueno.  Over the years we&#8217;d created a collection of software for building out user [...]]]></description>
			<content:encoded><![CDATA[<p>One of my big projects through this year has been putting a lot of energy behind redesigning and rebuilding the Content Management System we routinely deploy at <a href="http://www.madeofpeople.org/">Made Of People</a>, the interactive media collective started by my close collaborator Thiago deMello Bueno.  Over the years we&#8217;d created a collection of software for building out user editable websites in a highly customized way, but as our libraries grew it became more and more obvious that a low level rebuild of the entire system was going to be necessary.  We&#8217;ve moved the php core to Kohana and the Javascript to mootools, and created our custom tools on top of those libraries, giving us a fully Object Oriented Design paradigm and really opening up what we can do with the system.  As this development has proceeded this year, we&#8217;ve been very pleased to see our system deployed on a variety of sites.  Soon a demo will be available but in the meantime we&#8217;re happy to announce a few slick sites that have gone live on top of our framework:</p>
<p>Cartwheel IT:  <a href="http://cartwheelit.com/">http://cartwheelit.com/</a> - collaboration with Objective Subject</p>
<p>Toy.  : <a href="http://www.toyny.com/">http://www.toyny.com/</a></p>
<p>Detroit Garden Works:  <a href="http://www.detroitgardenworks.com/ ">http://www.detroitgardenworks.com/ </a>- collaboration with Motor City Publishing</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/07/15/recent-sites-using-mopcms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Critical Engagement with Technology</title>
		<link>http://www.winterroot.net/site/wordpress/2009/06/02/critical-engagement-with-technology/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/06/02/critical-engagement-with-technology/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 00:28:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SoundSystem Culture]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=82</guid>
		<description><![CDATA[This spring, Amanda LeClair of WDET, public radio in Detroit, asked me to record a statement on my perspectives on Detroit and electronic music.  Naturally I seized the opportunity to present some of the ideas we work with in the Void Tactical Media project.  As it was part of several pieces by various local electronic [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/splashlogo.jpg"><img class="alignnone size-medium wp-image-84" style="float: left;" title="splashlogo" src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/splashlogo-294x300.jpg" alt="" width="294" height="300" /></a>This spring, Amanda LeClair of WDET, public radio in Detroit, asked me to record a statement on my perspectives on Detroit and electronic music.  Naturally I seized the opportunity to present some of the ideas we work with in the Void Tactical Media project.  As it was part of several pieces by various local electronic musicians, coordinated with the techno festival that takes place downtown, I decided to explore some of the more critical vectors in thinking about technology and our metro area.  It&#8217;s my stance that rather than exalting technology, media art has the unique ability to offer valuable critique and nurture a more rounded engagement with science.  The full text follows, along with a link to a pdf of the essay as it as recorded.  Additionally, we&#8217;ve got the the new side designed and working for Void Tactical: <a href="http://void.fromthegut.org">http://void.fromthegut.org</a>.</p>
<p style="text-align: left;"><span id="more-82"></span></p>
<p>PDF: <a href="http://www.fromthegut.org/void/writings/vtxt009_criticalengagement.pdf">http://www.fromthegut.org/void/writings/vtxt009_criticalengagement.pdf</a></p>
<p>FULL TEXT:</p>
<p>In bridging science and media, electronic music achieves a unique vantage point: the ability to explore complex relationships between society and engineering. Humanity since pre-history has been inseparable from it&#8217;s technology, and yet still today we struggle to understand the implications and consequences of our innovations. Electronic music is a platform for creative confrontation between man and his generalized tools, affording a space in which we can embrace technology while simultaneously continuing our critique of it. This critical engagement supersedes the attitudes of total rejection or blind appropriation that too often limit our understanding of applied science. Through engagement we can ask a more productive question: not whether technology itself is good or bad but rather what we ought to use it for.</p>
<p>As the many threads of electronic music blossomed in the late 20th century, it&#8217;s massive dance parties both offered an alternative to heavily commercial corporate record labels and suggested an integrated place for technology in culture. Nevertheless, as it itself became increasingly commercialized, excess and drug abuse replaced critique of science and technology. Beginning as a generative space of new ideas, electronic dance culture culture is known instead for it&#8217;s escapism - a<br />
reflection of consumer society rather than a critique of it. This is tragic. The power of electronic music lies not in running away from the world but rather in its demonstration of what we can build with mastery of all tools available to us.</p>
<p>In Detroit, this perspective is crucial - yet a popular critique of industrial technology has never gained mainstream traction here. Despite the auto industry&#8217;s complicity in destroying community, mass transit, ecology, and the economy, the moniker of &#8216;Motor City&#8217; remains bouyant. Electronic music, contrary to its claims of vision for the future, has in fact rarely offered comment on this situation , on the contrary appropriating the iconography and context of Detroit&#8217;s now dissipated industrial economy.<br />
Like the Dream Cruise, techno in Detroit now largely supports a culture of nostalgia. The transformative potential of electronic music, valuable insight grasped through risky confrontation with technology, has been stunted here. The successes of Detroit Techno in the early 90s were a first step, but now it must live up to it&#8217;s radical potential: that in Detroit our story of technology must no longer be a celebration of industrial society but rather our transcendence of it.<br />
Today, we must engage technology to sharpen analysis, not as a brand or a way to make a quick buck. In doing so exists the opportunity to bolster understanding and good decision making. The electronic music party need not be a celebration of selling digestible concepts. Instead we should celebrate renewal and new ideas, replacing blind allegiance to a style, genre, or concept with flexibility and experimentation. For some, crafting purposeful music from machines, programs, and wires is a<br />
crucial struggle - with each performer or producer presenting not just a unique composition, but also a unique process. This improvisational technology looks far beyond the uniformity of minimal techno or General Motors, reaching for hybrid spaces with entirely different implications. Technology doesn&#8217;t just mean dirty cars and poisonous factories, nor an easily consumable sound or living to party. Within technology also exist the openings for expanding freedom and supporting alternative perspectives, for pushing back against those who make us as pawns or destroy our planet. In those moments when the jubilant dance party meets with an honest exploration of ideas, we can hear electronic music&#8217;s deepest message: that our engagement with technology creates the lives that we live.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/06/02/critical-engagement-with-technology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kombucha Ferment, Secondary Ferment, and Bottling</title>
		<link>http://www.winterroot.net/site/wordpress/2009/05/15/kombucha-sucess-and-bottling/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/05/15/kombucha-sucess-and-bottling/#comments</comments>
		<pubDate>Sat, 16 May 2009 02:06:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=120</guid>
		<description><![CDATA[The dark flecks on this scoby are yeast colonies.  Once the yeast really get established you are on the way to having delicious and healthful kombucha.  We also found that putting the fermented tea through a secondary ferment is really the way to go.  Removing the scoby and bottling the tea after its reached the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/kombucha-with-yeast1.jpg"><img class="alignnone size-medium wp-image-126" title="Kombucha with Yeast" src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/kombucha-with-yeast1-300x286.jpg" alt="" width="300" height="286" /></a>The dark flecks on this scoby are yeast colonies.  Once the yeast really get established you are on the way to having delicious and healthful kombucha.  We also found that putting the fermented tea through a secondary ferment is really the way to go.  Removing the scoby and bottling the tea after its reached the approapriate acidity allow the pro-biotic to go into a anaerobic ferment (the normal fermentation is aerobic) which uses up excess sugar in the tea without increasing the acidity and also produces the CO2 which causes the tea to become effervescent.  Doing the secondary ferment with ginger really makes a superior beverage.</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/kombucha-bottled.jpg"><img class="alignnone size-medium wp-image-122" title="Kombucha Secondary Ferment" src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/08/kombucha-bottled-300x240.jpg" alt="" width="300" height="240" /></a></p>
<p><a rel="attachment wp-att-122" href="http://www.winterroot.net/site/wordpress/2009/05/15/kombucha-sucess-and-bottling/kombucha-bottled/"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/05/15/kombucha-sucess-and-bottling/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solar Panel Install</title>
		<link>http://www.winterroot.net/site/wordpress/2009/02/20/solar-panel-install/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/02/20/solar-panel-install/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 23:13:59 +0000</pubDate>
		<dc:creator>deepwinter</dc:creator>
		
		<category><![CDATA[Alternative Technology]]></category>

		<category><![CDATA[solar 'solar panel install' detroit]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/2009/02/20/solar-panel-install/</guid>
		<description><![CDATA[Today we finally mounted this commerically manufactured panel outside. I was able to assemble this mounting strategy with minimal hardware from the store and some scrap lumber. The goal was to make it adjustable, so the front of the panel is mounted with hinges and the back uses threaded rod (see pics below). Unfortunately I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/mounted.jpg"><img class="alignnone size-medium wp-image-60" title="mounted.jpg" src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/mounted-300x225.jpg" alt="" width="300" height="225" /></a>Today we finally mounted this commerically manufactured panel outside. I was able to assemble this mounting strategy with minimal hardware from the store and some scrap lumber. The goal was to make it adjustable, so the front of the panel is mounted with hinges and the back uses threaded rod (see pics below). Unfortunately I didn&#8217;t realize that a 70 degree angle would be optimal for winter at this lattitude, so even at its maximum it only goes up to about 55 degrees - some shims will be necessary. In general though, I&#8217;m happy with the result - the hinges on the front still ensure it&#8217;s adustability. This is a 40 W panel, so even with an average of 4-5 hours of direct sunlight in Michingan winter, I&#8217;m hoping to be able to run all the lights (compact flourescent) in our loft off this one panel - we should be able to store over 160W/h a day on average, which is significant. The wires run inside through a hole in the wall to a charge controller, which charges a battery. Thanks again to Hong, who is the actual owner of this panel.</p>
<p><span id="more-65"></span></p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/outside.jpg" alt="outside.jpg" width="458" height="610" /></p>
<p>The view from the ground.</p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/back-of-panel.jpg" alt="back of panel.jpg" width="610" height="458" /></p>
<p>Rear assembly</p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/assembled.jpg" alt="assembled.jpg" width="610" height="458" /></p>
<p>With threaded rod.</p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/02/bending.jpg" alt="bending.jpg" width="610" height="458" /></p>
<p>Bending the threaded rod.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/02/20/solar-panel-install/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tracking SQL changes with SVN Post Commit Hook</title>
		<link>http://www.winterroot.net/site/wordpress/2009/02/09/tracking-sql-changes-with-svn-post-commit-hook/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/02/09/tracking-sql-changes-with-svn-post-commit-hook/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 21:10:03 +0000</pubDate>
		<dc:creator>deepwinter</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[svn git hooks sql]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=54</guid>
		<description><![CDATA[One of the more annoying features of doing web development is tracking changes made to the database alongside revisions to the code that runs the site. I&#8217;ve been getting into subversion post-commit hooks lately, and my currently solution to this problem is to create a hook which dumps the database structure and commits it to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the more annoying features of doing web development is tracking changes made to the database alongside revisions to the code that runs the site. I&#8217;ve been getting into subversion post-commit hooks lately, and my currently solution to this problem is to create a hook which dumps the database structure and commits it to a git repository, with a comment which can be used to link that database structure to the revision in subversion it corresponds to. You can then use git to generate patch files that are easy to follow for making updates to database structure.</p>
<p>my post commit hook looks like this <br/></p>
<pre>
#!/bin/sh <br/>mysqldump --defaults-extra-file=/home/deepwinter/svn/newframework/hooks/db.cnf -d -h dev2.madeofpeople.org -u madeofpeople11 newframework &gt; /home/deepwinter/sites_sql/newframework/dump.sql <br/>cd /home/deepwinter/sites_sql/newframework/ <br/>MESSAGE="SQL committed for build revision $2 in $1" <br/>git commit -a -m"$MESSAGE"<br/></pre>
<p>post-commit itself, the file called by subversion looks like this:</p>
<pre>
<br/>#!/bin/sh
<br/>REPOS="$1"<br/>REV="$2"
<br/>/home/deepwinter/svn/newframework/hooks/sqldump.sh "$REPOS" "$REV"<br/></pre>
<p>A good further development of this will be a way for patches to generate database structure update code automatically off a patch.</p>
<pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/02/09/tracking-sql-changes-with-svn-post-commit-hook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Starting to build the  wind generator</title>
		<link>http://www.winterroot.net/site/wordpress/2009/01/27/starting-to-build-the-wind-generator/</link>
		<comments>http://www.winterroot.net/site/wordpress/2009/01/27/starting-to-build-the-wind-generator/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 05:22:31 +0000</pubDate>
		<dc:creator>deepwinter</dc:creator>
		
		<category><![CDATA[Alternative Technology]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=50</guid>
		<description><![CDATA[
At this month&#8217;s breakcore pancakes we decided to make a start on investigating DIY wind power. We are interested in these plans http://www.scoraigwind.com/pirate%20oldies/Brakedrum%20windmill%201998.pdf because they involve the use of a reused automobile part, something we surely have a LOT of in Detroit. I&#8217;m not expecting that we&#8217;ll be able to follow these plans exactly, but [...]]]></description>
			<content:encoded><![CDATA[<p style="TEXT-ALIGN: left"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/01/winding-coil.jpg" style="DISPLAY: inline" height="400" alt="winding coil.jpg" width="300"/></p>
<p>At this month&#8217;s breakcore pancakes we decided to make a start on investigating DIY wind power. We are interested in these plans <a href="http://www.scoraigwind.com/pirate oldies/Brakedrum windmill 1998.pdf">http://www.scoraigwind.com/pirate%20oldies/Brakedrum%20windmill%201998.pdf</a> because they involve the use of a reused automobile part, something we surely have a LOT of in Detroit. I&#8217;m not expecting that we&#8217;ll be able to follow these plans exactly, but this is the right idea. Plus Hugh Piggott, the author, describes a lot of principles that are very valuable to understand when doing this sort of thing. He also has some books which look to be really good. We didn&#8217;t get particularly far, but advanced our ideas about winding coils. We tried to wind them with the winding machine configured laterally, but now we think that doing the vertical way (pictured) will work better after all. I also didn&#8217;t totally understand the shape of the outside wood pieces, but after trying it out I understand how they are supposed to work. I&#8217;ll post up pictures of the complete winding machine after the next try.</p>
<p><span id="more-50"></span></p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/01/winding.jpg" style="DISPLAY: inline; WIDTH: 670px; HEIGHT: 503px" title="Winding Coils" height="503" width="670" alt="winding.jpg"/></p>
<p>winding coils</p>
<p><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2009/01/magnet-wire.jpg" alt="magnet wire.jpg" height="503" width="670"/></p>
<p>the &#8216;magnet wire&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2009/01/27/starting-to-build-the-wind-generator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refridgerator Heat Reuse</title>
		<link>http://www.winterroot.net/site/wordpress/2008/12/09/refridgerator-heat-reuse/</link>
		<comments>http://www.winterroot.net/site/wordpress/2008/12/09/refridgerator-heat-reuse/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 01:31:05 +0000</pubDate>
		<dc:creator>deepwinter</dc:creator>
		
		<category><![CDATA[Alternative Technology]]></category>

		<category><![CDATA[refridgerator heat reuse kombucha incubator]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=45</guid>
		<description><![CDATA[It&#8217;s winter in Michigan and I&#8217;ve been keeping the heater between 60 and 65 degrees. My kombucha culture, on the other hand, prefers a temperature between 70 and 80 degrees, so the culure was growing VERY slowly. I&#8217;ve been very interested in energy reuse lately, so I started looking for something I could use to [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s winter in Michigan and I&#8217;ve been keeping the heater between 60 and 65 degrees. My kombucha culture, on the other hand, prefers a temperature between 70 and 80 degrees, so the culure was growing VERY slowly. I&#8217;ve been very interested in energy reuse lately, so I started looking for something I could use to build an incubator without utilizing extra energy. The solution I found is the refridgerator. When the coolant is re-compressed it gives off a lot of heat, this is how it transfers the heat from inside the fridge to the outside. I used some cardboard and some reflective insulation:</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0060.jpg" title="IMG_0060.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-011p28b4ca5d-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: block; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px; TEXT-ALIGN: center" height="300" width="400" alt="IMG_0060.jpg" border="0"/></a></p>
<p>To build a box on top of the fridge. Basically the heat moves up the back into the box where it is trapped. Colder air falls out of the incubator where the box goes beyond the edge of the fridge. This sets up a convection current and keeps most of the heat within the insulated box. Also the box had to be insulated against the fridge itself, which is cold on the outside.</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0063.jpg" title="IMG_0063.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-012p29e0e58f-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: block; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px; TEXT-ALIGN: center" height="400" width="300" alt="IMG_0063.jpg" border="0"/></a></p>
<p>(the coils on the back of the fridge are under the shiny insulation) This is actually very effective for rasing the tempeture, I&#8217;ve measured at times 10 degrees above the ambient room temperature. The kombucha culture now grows much faster.</p>
<p xmlns="" class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/refridgerator+heat+reuse+kombucha+incubator" class="ztag" rel="tag">refridgerator heat reuse kombucha incubator</a></span>  <br/> <span class="ztags"><span class="ztagspace">Del.icio.us</span> : <a href="http://del.icio.us/tag/refridgerator%20heat%20reuse%20kombucha%20incubator" class="ztag" rel="tag">refridgerator heat reuse kombucha incubator</a></span>  <br/> <span class="ztags"><span class="ztagspace">Zooomr</span> : <a href="http://www.zooomr.com/search/photos/?q=refridgerator%20heat%20reuse%20kombucha%20incubator" class="ztag" rel="tag">refridgerator heat reuse kombucha incubator</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2008/12/09/refridgerator-heat-reuse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DIY Grey Water In Progress</title>
		<link>http://www.winterroot.net/site/wordpress/2008/12/09/diy-grey-water-in-progress/</link>
		<comments>http://www.winterroot.net/site/wordpress/2008/12/09/diy-grey-water-in-progress/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 01:02:22 +0000</pubDate>
		<dc:creator>deepwinter</dc:creator>
		
		<category><![CDATA[Alternative Technology]]></category>

		<category><![CDATA[grey water]]></category>

		<guid isPermaLink="false">http://www.winterroot.net/site/wordpress/?p=40</guid>
		<description><![CDATA[I wanted to set up a greywater system to reuse water from our sinks in the toilet tank. At first I just took off the the drain pipe and used the bucket method. This works, but it&#8217;s not really the best way to live. I&#8217;m not ready for a complex system yet, and storage of [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to set up a greywater system to reuse water from our sinks in the toilet tank. At first I just took off the the drain pipe and used the bucket method. This works, but it&#8217;s not really the best way to live. I&#8217;m not ready for a complex system yet, and storage of grey water is one of the ways to really get yourself in trouble with a system - untreated grey water needs to be used within 24 hours of collection. I decided to simply run a pipe from the sink to the toilet tank. To do so, I had to take the sink off the wall and raise it a foot or so.</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0007.jpg" title="IMG_0007.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-004p4f79166c-tn.jpg" style="DISPLAY: inline; FLOAT: left; MARGIN-LEFT: auto; MARGIN-RIGHT: auto" height="400" width="300" alt="IMG_0007.jpg" border="0"/></a></p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0030.jpg" title="IMG_0030.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-005n62be7469-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: inline; FLOAT: left; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px" height="400" width="300" alt="IMG_0030.jpg" border="0"/></a></p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0039.jpg" title="IMG_0039.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-006p45e484bb-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: block; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px; TEXT-ALIGN: center" height="400" width="300" alt="IMG_0039.jpg" border="0"/></a></p>
<p>Once the sink was raised, I attached the pipe. I had to get a new drain insert for the sink and saw it down to allow the sink to sit at an appropriate level and still drain into the toilet.</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0080.jpg" title="IMG_0080.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-007n288d76eb-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: inline; FLOAT: left; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px" height="400" width="300" alt="IMG_0080.jpg" border="0"/></a></p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0084.jpg" title="IMG_0084.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-008p124534fd-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: inline; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px" height="400" width="300" alt="IMG_0084.jpg" border="0"/></a></p>
<p>the final setup, simple but effective:</p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0082.jpg" title="IMG_0082.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-009nd595932-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: inline; FLOAT: left; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px" height="300" width="400" alt="IMG_0082.jpg" border="0"/></a></p>
<p><a href="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/img-0081.jpg" title="IMG_0081.jpg"><img src="http://www.winterroot.net/site/wordpress/wp-content/uploads/2008/12/zrtn-010n2732b6b0-tn.jpg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; DISPLAY: block; MARGIN-LEFT: auto; BORDER-LEFT: #000000 1px; MARGIN-RIGHT: auto; BORDER-BOTTOM: #000000 1px; TEXT-ALIGN: center" height="300" width="400" alt="IMG_0081.jpg" border="0"/></a></p>
<p>The end product of this experiment works pretty well. The volume of water used in the sink isn&#8217;t always enough to keep the toilet full tho, and often it&#8217;s necessary to run the sink for a bit to fill up the tank. Leaving the automatic tank filler connected isn&#8217;t an option since if pressure in the lines drops suddenly grey water can be pulled back into the plumbing system. The next step will be to connect another sink in the vicinity to the toilet to increase the amount of grey water. The other sink is a kitchen since so it will definately require some kind of trap to keep food particles (at least medium or large ones) out of the toilet tank.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.winterroot.net/site/wordpress/2008/12/09/diy-grey-water-in-progress/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
