<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>wax ideal &#187; project</title>
	<atom:link href="http://waxideal.com/blog/category/project/feed/" rel="self" type="application/rss+xml" />
	<link>http://waxideal.com/blog</link>
	<description>learning to be human, since 1984</description>
	<lastBuildDate>Thu, 12 Apr 2012 19:49:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using Windows 7 Symlinks</title>
		<link>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/</link>
		<comments>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 05:19:40 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[document storage]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=469</guid>
		<description><![CDATA[I ran into a problem with integrating my web development/design projects on my computer with my local webserver. To further explain: I keep all my professional work, including client files, on a separate hard drive partition so that I can easily and regularly back them up, let&#8217;s call it g:\ Client files for web projects [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a problem with integrating my web development/design projects on my computer with my local webserver. To further explain:</p>
<ul>
<li>I keep all my professional work, including client files, on a separate hard drive partition so that I can easily and regularly back them up, let&#8217;s call it g:\</li>
<li>Client files for web projects are organized as such: g:\clients\client-name\project-name , so that if a long-term client wants a site redesign, I can easily keep these separate rather than dumping them into a single public_html directory for each client</li>
<li>My local testing server is pointed at a different partition, let&#8217;s call it h:\</li>
<li>I want to be able to serve individual projects via the testing server, but only work on the project files</li>
</ul>
<p>Naturally, I thought of unix aliases but I&#8217;m currently running Windows 7 so I tried shortcuts. Didn&#8217;t work. After a little digging, I found the solution: symlinks (which work in numerous OSes &#8211; thanks for the correction). From the command line, type:</p>
<pre>mklink /D H:\target\directory\linkname G:\clients\client-name\project-name</pre>
<p>mklink /D creates a symlink, or a soft link that is the Windows equivalent to unix aliases. The first argument is the directory where you want the link to be placed, and the second is the source directory. Easy as pie.</p>
<p>Be careful when deleting/writing content &#8211; the linked directory allows you to manipulate the original file!</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Links on How to Fill a Concave Polygon</title>
		<link>http://waxideal.com/blog/2009/11/18/links-on-how-to-fill-a-concave-po/</link>
		<comments>http://waxideal.com/blog/2009/11/18/links-on-how-to-fill-a-concave-po/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 03:31:04 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[equations]]></category>
		<category><![CDATA[graphics rendering]]></category>
		<category><![CDATA[jitter]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[openGL]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=357</guid>
		<description><![CDATA[I&#8217;m working on a project in Max/Jitter and have run into a problem: dynamically filling a complex (concave, crossed, or holed) polygon. Here are some resources that explain the math behind find the area of and or filling such shapes: http://www.songho.ca/opengl/gl_tessellation.html http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf http://www.freepatentsonline.com/EP0425189.html http://mathopenref.com/coordpolygonarea.html http://www.flipcode.com/archives/Polygon_Tessellation_In_OpenGL.shtml http://www.flipcode.com/archives/Efficient_Polygon_Triangulation.shtml http://glprogramming.com%Proxy-Connection: keep-alive Cache-Control: max-age=0 red/chapter02.html http://glprogramming.com/red/chapter11.html]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a project in Max/Jitter and have run into a problem: dynamically filling a complex (concave, crossed, or holed) polygon. Here are some resources that explain the math behind find the area of and or filling such shapes:</p>
<ol>
<li><a href="http://www.songho.ca/opengl/gl_tessellation.html" target="_blank" title="the open gl tessalator">http://www.songho.ca/opengl/gl_tessellation.html</a></li>
<li><a href="http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf" target="_blank">http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf</a></li>
<li><a href="http://www.freepatentsonline.com/EP0425189.html" target="_blank">http://www.freepatentsonline.com/EP0425189.html</a></li>
<li><a href="http://mathopenref.com/coordpolygonarea.html" target="_blank">http://mathopenref.com/coordpolygonarea.html</a></li>
<li><a href="http://www.flipcode.com/archives/Polygon_Tessellation_In_OpenGL.shtml" target="_blank">http://www.flipcode.com/archives/Polygon_Tessellation_In_OpenGL.shtml</a></li>
<li><a href="http://www.flipcode.com/archives/Efficient_Polygon_Triangulation.shtml" target="_blank">http://www.flipcode.com/archives/Efficient_Polygon_Triangulation.shtml</a></li>
<li><a href="http://glprogramming.com/red/chapter02.html" target="_blank">http://glprogramming.com%Proxy-Connection: keep-alive<br />
Cache-Control: max-age=0</p>
<p>red/chapter02.html</a></li>
<li><a href="http://glprogramming.com/red/chapter11.html" target="_blank">http://glprogramming.com/red/chapter11.html</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2009/11/18/links-on-how-to-fill-a-concave-po/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call to Action and Things to Come</title>
		<link>http://waxideal.com/blog/2008/09/22/call-to-action-and-things-to-come/</link>
		<comments>http://waxideal.com/blog/2008/09/22/call-to-action-and-things-to-come/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 20:13:40 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[Milwaukee]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=180</guid>
		<description><![CDATA[Hi there, awesome blog readers! Last week hit an all-time record high of 167 readers, averaging 24 per day!  On top of that, I've gotten some wonderfully kind in-person and online feedback over the past two weeks, and total hits are quickly approaching 2000. I want to do an even better job, but I need your help.]]></description>
			<content:encoded><![CDATA[<p>Hi there, awesome blog readers! Last week hit an all-time record high of 167 readers, averaging 24 per day!  On top of that, I&#8217;ve gotten some wonderfully kind in-person and online feedback over the past two weeks, and total hits are quickly approaching 2000. I want to do an even better job, but I need <em>your</em> help.</p>
<p>Here&#8217;s how you can do that: let me know what you like about my blog, what you don&#8217;t like, what you&#8217;d like to see more of. If there&#8217;s a particular recipe or technique you&#8217;d like to see, post a comment or send me an email. I&#8217;ll do my best to realize all requests. You can also help by subscribing to my RSS feed. If you don&#8217;t know what that is, watch this video:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/0klgLsSxGsU&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/0klgLsSxGsU&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p>Finally, if you like what I write about, tell somebody. Pass the link on to friends, family—whoever you think will get something out of it.</p>
<p>I&#8217;m hoping to post more DIY and community centered content that relates to food. As Autumn&#8217;s nearly here, there should be some good stuff to wrap up Wisconsin&#8217;s growing season. While that means no more farmers&#8217; markets and fresh produce, I&#8217;ll try my best to find relevant and interesting winter food information, as well as things that are applicable year-round. It&#8217;ll be a challenge, but one that I am very much looking forward to.</p>
<p>Thanks for reading, and please, interact!</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/09/22/call-to-action-and-things-to-come/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Em-pear Strikes Back</title>
		<link>http://waxideal.com/blog/2008/09/12/the-em-pear-strikes-back/</link>
		<comments>http://waxideal.com/blog/2008/09/12/the-em-pear-strikes-back/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 08:54:06 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[food production]]></category>
		<category><![CDATA[gardening]]></category>
		<category><![CDATA[Milwaukee]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/2008/09/12/the-em-pear-strikes-back/</guid>
		<description><![CDATA[Its just past 3:30 in the morning and though tired, I don't really feel it. So, I went for a super-mini bike ride up the street to check on the pears I mentioned awhile back. Unlike last time, I spotted a cluster instantly. They're not full size yet, nor should they be. Afterall, its barely September. Anyhow, here's a photo:]]></description>
			<content:encoded><![CDATA[<p>I know, the clever titles are killing you.</p>
<p>Its just past 3:30 in the morning and though tired, I don&#8217;t really feel it. So, I went for a super-mini bike ride up the street to check on the <a href="http://waxideal.com/blog/2008/07/15/a-pear-antly-apropos/" title="A-pear-antly Apropos" target="_blank">pears I mentioned awhile back</a>. Unlike last time, I spotted a cluster instantly. They&#8217;re not full size yet, nor should they be. Afterall, its barely September. Anyhow, here&#8217;s a photo:</p>
<p><a href="http://waxideal.com/blog/wp-content/uploads/2008/09/photo-793.jpg" title="Take a bite out of crime…and pears."><img src="http://waxideal.com/blog/wp-content/uploads/2008/09/photo-793.jpg" alt="Take a bite out of crime…and pears." /></a></p>
<p>I found a long stick near the tree and used it to knock a few morsels off their boughs. Weirdly, all of them had a really soft side. At first I thought it was due to them hitting the road, or from the impact of the stick. But I probed further and found this:</p>
<p><a href="http://waxideal.com/blog/wp-content/uploads/2008/09/photo-796.jpg" title="Gross Pear!"><img src="http://waxideal.com/blog/wp-content/uploads/2008/09/photo-796.jpg" alt="Gross Pear!" /></a></p>
<p>Looks like either:</p>
<p>a) general underdevelopment (though not likely)<br />
b) some sort of insect infestation (though the darker bits didn&#8217;t seem like insect eggs&#8230;but I&#8217;m no entomologist)<br />
c)  aliens (yes, Dr. Who&#8217;s fault)</p>
<p>Anybody have any ideas?</p>
<p>I did manage to get one which had a significantly smaller patch and only nibbled one side (seen in first photograph). It was a bit tart and much harder than a ripe pear, but the sweetness had definitely started to develop and the skin was nice and crisp.</p>
<p>This led me to a pretty decent idea: I&#8217;m going to build a tree-fruit harvester out of recycled goods. I&#8217;ll post the process on here in the weeks to come, along with photos of the tree, its yield, the surroundings, and related recipes. Keep your eyes open and your mouths closed–chewing delicious food, of course!</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/09/12/the-em-pear-strikes-back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Milwaukee Bike Collective</title>
		<link>http://waxideal.com/blog/2008/08/28/milwaukee-bike-collective/</link>
		<comments>http://waxideal.com/blog/2008/08/28/milwaukee-bike-collective/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 08:39:11 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[restaurants]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/2008/08/28/milwaukee-bike-collective/</guid>
		<description><![CDATA[I had a ridiculously tiring Wednesday, but knowing that I'd be going to the Bike Collective afterwards kept me going through the day.]]></description>
			<content:encoded><![CDATA[<p>I had a ridiculously tiring Wednesday, but knowing that I&#8217;d be going to the <a href="http://www.bikecollective.org/" title="Milwaukee Bike Collective" target="_blank">Bike Collective</a> afterwards kept me going through the day. I also had lunch with a coworker at <a href="http://www.yelp.com/biz/thai-palace-restaurant-milwaukee" title="Thai Palace Reviews on Yelp" target="_blank">Thai Palace</a> on Old World Third Street. The place is really hit or miss for anything but the entrées and drinks (the lunch service has been especially lackadaisical). That being said, my veggie curry was delicious but I wish I could say the same for my companion&#8217;s food. Moving on.</p>
<p>Immediately after work I biked to 29th and Clybourn, two streets south of Wisconsin Avenue.</p>
<p><a href="http://waxideal.com/blog/wp-content/uploads/2008/08/what3.gif" title="Milwaukee Bike Collective"><img src="http://waxideal.com/blog/wp-content/uploads/2008/08/what3.gif" alt="Milwaukee Bike Collective" /></a><br />
<iframe src="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=29th+and+clybourn+milwaukee,+wi&amp;sll=37.0625,-95.677068&amp;sspn=36.915634,90.791016&amp;ie=UTF8&amp;ll=43.044805,-87.946243&amp;spn=0.008328,0.022166&amp;z=14&amp;output=embed&amp;s=AARTsJp6bm1ZyqRD68OFMex0CbP7zMo-7g" marginheight="0" marginwidth="0" frameborder="0" height="350" scrolling="no" width="425"></iframe><br />
<small><a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=29th+and+clybourn+milwaukee,+wi&amp;sll=37.0625,-95.677068&amp;sspn=36.915634,90.791016&amp;ie=UTF8&amp;ll=43.044805,-87.946243&amp;spn=0.008328,0.022166&amp;z=14&amp;source=embed" style="color: #0000ff; text-align: left">View Larger Map</a></small><br />
Upon rolling up to the building, I saw Pops sitting outside. After recognizing who I was, he welcomed me in, registered me, and showed me around the place. There are frames <em>everywhere.</em> Frames upon frames upon frames. They seemed to multiply as the night came on. Wheels hung from the racks, organized parts filled boxes, and tools twitched in their resting places, anticipating the work ahead.</p>
<p><a href="http://waxideal.com/blog/wp-content/uploads/2008/08/who2.gif" title="Milwaukee Bike Collective"><img src="http://waxideal.com/blog/wp-content/uploads/2008/08/who2.gif" alt="Milwaukee Bike Collective" /></a></p>
<p>A few more people arrived &#8211; another familiar face, besides Pops. And it turns out we know a bunch of the same people. Afterall, isn&#8217;t Milwaukee the biggest small town in the United States? We futzed around the shop a bit, I lingered through lugged frames and Huffys alike, and started stripping down a bike to fix up for Center Street Daze. Eventually we had a very informal but comfortable meeting &#8211; during which I ate the remainder of my lunch (so good). Anyhow, there&#8217;s lots to do, and I don&#8217;t know how much time I&#8217;ll have to contribute. It always seems I take on more work than I can handle &#8211; but I like a challenge and it keeps me sharp, so we&#8217;ll see how things go.</p>
<p>If you&#8217;re interested in getting involved, whether it be to fix bikes, donate parts, work on the website, flyers, etc. &#8211; let me know. Alternatively, just contact the collective. Their info can be found <a href="http://www.bikecollective.org/" title="Milwaukee Bike Collective" target="_blank">here</a>. I&#8217;ll get some of my own photos soon &#8211; forgot to bring a camera! So photo credits to whoever took them!</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/08/28/milwaukee-bike-collective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>101 Things in 1001 Days</title>
		<link>http://waxideal.com/blog/2008/08/26/101-things-in-1001-days/</link>
		<comments>http://waxideal.com/blog/2008/08/26/101-things-in-1001-days/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 23:49:28 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[goals]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/2008/08/26/101-things-in-1001-days/</guid>
		<description><![CDATA[Awhile ago, a friend told me about a project called 101 Things in 1001 Days. Check it out. Here's my list:]]></description>
			<content:encoded><![CDATA[<p>Awhile ago, a <a title="Sam's Blog" href="http://samtater.blogspot.com/" target="_blank">friend</a> told me about a project called <a title="101 Things in 1001 Days" href="http://www.triplux.com/1001/" target="_blank">101 Things in 1001 Days</a>. Check it out. Here&#8217;s my list (Some of the stuff on here I&#8217;ve done before&#8230;but would like to do again):</p>
<ul>
<li>Biking
<ol>
<li>register with the USAC and USCF</li>
<li>race regularly</li>
<li>obtain at least cat 3 (preferably cat 2) status</li>
<li>fix crank and bottom bracket of my orange road bike</li>
<li><span style="text-decoration: line-through;">get a winter bike</span> 19 OCTOBER 2008</li>
<li>get bike rollers to train indoors during winter</li>
<li><span style="text-decoration: line-through;">build a fixed gear/track bicycle (just to have, and to train)</span> 19 OCTOBER 2008 (would still like to build one)</li>
<li>join a cycling club/team</li>
<li>bike over 25mph for at least 10 miles</li>
<li>bike to a different state (of the United persuasion—the mind is a given)</li>
<li><span style="text-decoration: line-through;">bike through the valley</span> (With Ginnie and Phil)<span style="text-decoration: line-through;"><br />
</span></li>
</ol>
</li>
<li>Exercise/Outdoors
<ol>
<li><span style="text-decoration: line-through;">run at least 4 miles per week for 4 weeks</span></li>
<li><span style="text-decoration: line-through;">run 10k</span> (AUTUMN 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li>start doing yoga again, at least 3 times per week if not more</li>
<li>do daily calisthenics</li>
<li>go camping</li>
<li>go canoeing</li>
<li>go kayaking</li>
<li>camp for 3 days with only a knife</li>
<li>canoe the Milwaukee River</li>
</ol>
</li>
<li>Business
<ol>
<li>register my business with the state and IRS as an LLC</li>
<li>finish developing letterhead/<span style="text-decoration: line-through;">business cards</span> (SEPTEMBER 2009)/document system</li>
</ol>
</li>
<li>School
<ol>
<li><span style="text-decoration: line-through;">finish college!</span> (Holy Shit! 11 January 2010)</li>
</ol>
</li>
<li>Job/Work
<ol>
<li><span style="text-decoration: line-through;">quit my current job</span> (Double Holy Shit! 16 January 2010)</li>
<li><span style="text-decoration: line-through;">get a real job (one that pays me what I&#8217;m worth)</span> 30 September 2010</li>
<li><span style="text-decoration: line-through;">put together a portfolio for getting a job! (In progress)</span> (JUNE 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li><span style="text-decoration: line-through;">work 2 jobs simultaneously</span> (2009)<span style="text-decoration: line-through;"><br />
</span></li>
</ol>
</li>
<li>Food
<ol>
<li>take a cooking class</li>
<li><span style="text-decoration: line-through;">learn how to make sushi</span> (20 November 2009)</li>
<li><del datetime="2009-05-25T04:34:23+00:00">grow an awesome garden</del>(MAY-NOV2009)</li>
<li>complete with vermiculture bin</li>
<li><del datetime="2009-05-25T04:34:23+00:00">and composting heap</del>(MAY 2009)</li>
<li>harvest urban fruit (will do this soon! 2011 raspberries in summer &amp; pears during autumn&#8230;)</li>
<li><span style="text-decoration: line-through;">make falafel</span> (15 JANUARY 2010)</li>
<li><span style="text-decoration: line-through;">find or develop a consistent and easy French bread recipe</span> 29 DECEMBER 2008 (taught 25+ at the <a title="CCC" href="http://en.wikipedia.org/wiki/Cream_City_Collectives" target="_blank">CCC</a>)</li>
<li><span style="text-decoration: line-through;">maintain my own bread dough starter</span>(Spring 2009)</li>
<li><span style="text-decoration: line-through;">bake at least one batch of bread per week</span> DECEMBER/JANUARY 2009 (Have been baking 3+ batches weekly)</li>
<li>make limoncello</li>
<li><span style="text-decoration: line-through;">brew beer</span> (SUMMER 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li><span style="text-decoration: line-through;">make wine from grapes</span> (SUMMER 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li><span style="text-decoration: line-through;">make dolmades with fresh grape leaves</span> (SUMMER 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li><span style="text-decoration: line-through;">make cheese from scratch</span>(JUNE 2009)</li>
<li>make flour</li>
<li>bowhunt for deer</li>
<li>trap hare and cook them</li>
<li>go fishing and cook my catch</li>
<li>catch octopus and cook it</li>
<li><span style="text-decoration: line-through;">slaughter a chicken (and cook it?)</span> (June 2010)<span style="text-decoration: line-through;"><br />
</span></li>
<li>harvest honey</li>
<li><span style="text-decoration: line-through;">teach 10 people how to cook a simple, fast, flexible meal </span>15 JANUARY 2009</li>
<li><span style="text-decoration: line-through;">find five good ethnic food stores/markets in Milwaukee, not including El Rey or Pete&#8217;s</span> (Viet Hoa, Pacific Produce, Asian Mart, Jasmine , Chu Hai)</li>
</ol>
</li>
<li>Crafts/Projects
<ol>
<li>teach at least 5 people how to knit (1. Gavin 11 DECEMBER 2008 2. Dana 29 December 2009)</li>
<li>knit a sweater</li>
<li>knit socks</li>
<li>make shoes or slippers (more like moccasins) by hand</li>
<li>sew some curtains</li>
<li>build a bookshelf</li>
<li>improve my sewing skills (learn to sew from a pattern)</li>
<li>sew some aprons</li>
<li>make a messenger bag from old plastic bags</li>
<li>make grocery bags out of recycled t-shirts and other scraps</li>
</ol>
</li>
<li>Housing/Household
<ol>
<li><span style="text-decoration: line-through;">move to a new apartment [house]</span> 15 FEB 2010</li>
<li><span style="text-decoration: line-through;">care for a cat</span></li>
<li><span style="text-decoration: line-through;">clean my closet</span> 13 FEB 2010</li>
<li><span style="text-decoration: line-through;">fix the light fixture in the back room</span></li>
</ol>
</li>
<li>Time Management/Organization/Fixing
<ol>
<li><span style="text-decoration: line-through;">develop a daily routine</span></li>
<li><span style="text-decoration: line-through;">develop a weekly routine</span></li>
<li><span style="text-decoration: line-through;">develop a monthly routine</span></li>
<li>wake up before 8am regularly without an alarm clock (almost there&#8230;)</li>
<li><span style="text-decoration: line-through;">organize my books</span></li>
<li><span style="text-decoration: line-through;">buy/make a daily planner, and use it…daily</span> 14 FEB 2010</li>
<li><span style="text-decoration: line-through;">install subversion on my webhost</span> Switch to GIT</li>
</ol>
</li>
<li>Entertainment/Leisure/Volunteering
<ol>
<li>watch at least the first ¼ of the original Dr. Who series in order</li>
<li>read one fiction book per month for pleasure</li>
<li>hold a David Lynch marathon viewing festival weekend</li>
<li>volunteer at People&#8217;s Books at least 20 hours</li>
<li>volunteer at the Bike Collective at least 20 hours (6 hours total: 10 JANUARY 2009)</li>
</ol>
</li>
<li>Travel/Destinations
<ol>
<li><span style="text-decoration: line-through;">West Coast (San Francisco, Spring 2011)</span></li>
<li>New York City</li>
<li>Greece (and possibly travel through Europe)</li>
<li><span style="text-decoration: line-through;">a planetarium</span>(AUTUMN 2010)</li>
<li>the Domes</li>
<li>the Milwaukee County Historical Society (do research for old Rustbelt businesses, typefaces, logos, etc)</li>
</ol>
</li>
<li>Writing
<ol>
<li>blog at least 4 times per week, consistently for 6 months</li>
<li>finish The Ruthless King book and illustrations</li>
<li>finish the Busku book and illustrations</li>
<li>start writing another children&#8217;s book (Concept developed 21 JANUARY 2009)</li>
<li>write a book for big people (In progress)</li>
</ol>
</li>
<li>Design/Photography/Programming
<ol>
<li>redesign my blog</li>
<li>model something in 3D with Maya</li>
<li>find 10 easily accessible rooftops in Milwaukee and take photographs from atop (3 found so far&#8230;)</li>
<li><span style="text-decoration: line-through;">walk around the city collecting textures with photos and rubbings (then organize them) (MAY 2010 &#8211; in Wausau)</span></li>
<li>design another cd package</li>
</ol>
</li>
<li>To Buy/Pay for
<ol>
<li>get a nice digital SLR</li>
<li>library fines</li>
<li><span style="text-decoration: line-through;">buy OR BUILD a really nice bike (race worthy) </span><span style="text-decoration: line-through;">and accessories (shoes, </span><span style="text-decoration: line-through;">helmet, etc) </span>(helmet, gloves, socks 21 JANUARY 2009)(shoes &#8211; OCTOBER 2010)(dura ace 7800 full component group &#8211; MAY 2011)</li>
<li><span style="text-decoration: line-through;">buy some nice Golas</span> 28 SEPTEMBER 2008</li>
</ol>
</li>
<li>Learn/Education/Exploration
<ol>
<li>all the constellations in the zodiac</li>
<li>take another French class</li>
<li><span style="text-decoration: line-through;">find a good secret hiding spot in the city</span>(19 JULY 2009)</li>
<li>determine my haplotype distribution</li>
</ol>
</li>
</ul>
<p>I am certain I&#8217;ll add more things to this list, so here&#8217;s an area for additional tasks:</p>
<ol>
<li>make papermaking equipment, then paper</li>
<li>keep bees (Still illegal in Milwaukee: I found this out on 20 JANUARY 2009)</li>
<li><span style="text-decoration: line-through;">learn to drive stick (APRIL 2010)</span></li>
<li>make kombucha</li>
<li>make vinegar</li>
<li>teach another cooking class</li>
<li>go morrelling</li>
<li><span style="text-decoration: line-through;">grow mushrooms </span>(Started 16 FEB 2010)</li>
<li>make screen printing equipment</li>
<li><span style="text-decoration: line-through;">make PCB etching tank</span> (March 2011)</li>
</ol>
<p>Progress: 43/101 (111)</p>
<p>Finally, I found this awesome artist duo from São Paolo called <a title="Mulheres Barbadas" href="http://www.mulheresbarbadas.com/" target="_blank">mulheres barbadas</a> (bearded ladies, in Portuguese) while looking through some websites. Here&#8217;s one of their collaborations:</p>
<p><a title="Mulheres Barabadas - Black &amp; White Book" href="http://waxideal.com/blog/wp-content/uploads/2008/08/mulheres.jpg"><img src="http://waxideal.com/blog/wp-content/uploads/2008/08/mulheres.jpg" alt="Mulheres Barabadas - Black &amp; White Book" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/08/26/101-things-in-1001-days/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A-pear-antly Apropos</title>
		<link>http://waxideal.com/blog/2008/07/15/a-pear-antly-apropos/</link>
		<comments>http://waxideal.com/blog/2008/07/15/a-pear-antly-apropos/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 05:59:58 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[food production]]></category>
		<category><![CDATA[gardening]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=91</guid>
		<description><![CDATA[My last few posts haven&#8217;t been food related &#8211; nor have I posted recently. I figure it&#8217;s time to get back into the habit of writing about what I&#8217;m doing &#8211; especially with regard to food. That is, afterall, the main reason I started this blog. That said, I&#8217;ve spent the past nine or so [...]]]></description>
			<content:encoded><![CDATA[<p>My last few posts haven&#8217;t been food related &#8211; nor have I posted recently. I figure it&#8217;s time to get back into the habit of writing about what I&#8217;m doing &#8211; especially with regard to food. That is, afterall, the main reason I started this blog.</p>
<p>That said, I&#8217;ve spent the past nine or so months bouncing an urban gleaning project around in my wrinkle-patch. The main focus is communal fruit-tree harvesting. I&#8217;ve developed a logo and a loose plan but I need to rally a group of people to help. By getting people involved in community projects in a gradual way &#8211; especially people from different backgrounds &#8211; we can help those in need and build meaningful relationships that encourage learning and growth in our city.</p>
<p>Ideally, property owners whose land yields fruit (apples, pears, etc.) will be contacted or will contact the group to harvest their fruit. A portion can be kept by the owners and/or volunteers, or entirely donated to food banks in the area. Volunteers will ideally ride bikes, or will use minimal non-renewable resources to transport and harvest the fruit. There&#8217;s currently no timeline as to when this will happen &#8211; probably not this year &#8211; but it could be possible if enough people back it up.</p>
<p>I&#8217;m writing about this because I rode by a nearby pear-tree whose boughs are starting to produce teensy-beensy fruit-lumps. It was dark, as this happened only a few minutes ago, but I managed to steal one of the little-ones from its mother. Here&#8217;s a photo:</p>
<p><a href="http://waxideal.com/blog/wp-content/uploads/2008/07/photo-735.jpg" title="baby pear, not even in diapers"><img src="http://waxideal.com/blog/wp-content/uploads/2008/07/photo-735.jpg" alt="baby pear, not even in diapers" /></a></p>
<p>I&#8217;m also posting because I need help from you, Milwaukee! If you&#8217;re interested in participating, have ideas to discuss, or simply think I&#8217;m a total ass for doing this, don&#8217;t hesitate to post a comment. I would love to hear your opinions.</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/07/15/a-pear-antly-apropos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

