<?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>Velo, Rapido</title>
	<atom:link href="http://velociraptor.info/notes/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://velociraptor.info/notes</link>
	<description>This is about a few different things.</description>
	<lastBuildDate>Mon, 30 Apr 2012 18:10:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>grub &gt; _</title>
		<link>http://velociraptor.info/notes/?p=1165</link>
		<comments>http://velociraptor.info/notes/?p=1165#comments</comments>
		<pubDate>Mon, 30 Apr 2012 15:13:21 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1165</guid>
		<description><![CDATA[J handed off his Eee to me today. He&#8217;s studying for finals and also moving and his laptop choked. Machines always fail when you need them most: so back your shit up, okay? He said it was only booting to a command prompt, which isn&#8217;t quite accurate. It boots into Windows just fine, but booting [...]]]></description>
			<content:encoded><![CDATA[<p>J handed off his Eee to me today. He&#8217;s studying for finals and also moving and his laptop choked. Machines always fail when you need them most: so back your shit up, okay? He said it was only booting to a command prompt, which isn&#8217;t quite accurate. It boots into Windows just fine, but booting to Ubuntu lands you (me) at a <a href="http://www.linuxjournal.com/article/4622">Grub</a> prompt. </p>
<p>Luckily, I keep a USB stick with RIP Linux on it handy. RIP Linux is handy. <a href="http://superuser.com/questions/418555/boot-an-eee-pc-from-usb-or-handle-grub-prompt">Booting from USB</a> was not as easy as it could have been but I did work it out. </p>
<p>Useful commands: fdisk -l, mkdir, mount, fsck. </p>
<p>Useful rundown: <a href="http://ubuntuforums.org/showthread.php?t=1639198">this post on WUBI</a>, especially the tip on looking for &#8220;root.disk&#8221; and running <code>fsck</code> if you can&#8217;t mount it. </p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>=SUMPRODUCT</title>
		<link>http://velociraptor.info/notes/?p=1163</link>
		<comments>http://velociraptor.info/notes/?p=1163#comments</comments>
		<pubDate>Sun, 29 Apr 2012 00:15:16 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1163</guid>
		<description><![CDATA[I knew what I wanted: a way to define a &#8220;weight&#8221; column that would tell me how many times a particular pair of values appeared in my spreadsheet. I spent some time (a lot of it) searching the web using various sentences about frequency and counting. I read a lot of documentation for =FREQUENCY (which [...]]]></description>
			<content:encoded><![CDATA[<p>I knew what I wanted: a way to define a &#8220;weight&#8221; column that would tell me how many times a particular pair of values appeared in my spreadsheet. I spent some time (a lot of it) searching the web using various sentences about frequency and counting. I read a lot of documentation for <a href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_FREQUENCY_function">=FREQUENCY</a> (which isn&#8217;t quite what I need) and <a href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_COUNTIF_function">=COUNTIF</a> (which works for one column, but not for two). At some point I realized I was looking for <a href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_SUMPRODUCT_function">=SUMPRODUCT</a>. So here&#8217;s a secret: I don&#8217;t understand how or why SUMPRODUCT works. I kind of do know that you can use it for a test like this, but I was really struggling to wrap my head around why it is the right tool. </p>
<p>I get it now, though. What clicked for me was <a href="http://www.xldynamic.com/source/xld.SUMPRODUCT.html#explain">xldynamic&#8217;s explanation</a> of the arrays that a SUMPRODUCT formula creates when you include comparisons. </p>
<p>And I want to know how many rows have the exact same values in columns D and E:</p>
<p>	=SUMPRODUCT(($D$2:$D$224=D2)*($E$2:$E$224=E2))</p>
<p>Worth knowing: a <a href="http://en.wikipedia.org/wiki/Boolean_algebra_%28logic%29">boolean</a> result can be represented as TRUE/FALSE, YES/NO or 1/0. I don&#8217;t know why that is, by which I mean, it makes sense to me intuitively but I can&#8217;t actually explain it to you. So perhaps we&#8217;ll explore that in the Ladygrammar <del datetime="2012-04-28T23:38:53+00:00">Book</del> Computing Club. For now, just trust me. We&#8217;re going to represent TRUE as 1 and FALSE as 0. </p>
<p>So. If I were dealing with a table like this:</p>
<table align=CENTER CELLSPACING=0 COLS=2 RULES=NONE BORDER=0>
<tbody>
<tr>
<td><strong>Value A</strong></td>
<td><strong>Value B</strong></td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="25">25</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="25">25</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="35">35</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="37">37</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="42">42</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="0">0</td>
</tr>
<tr>
<td SDVAL="1">1</td>
<td SDVAL="11">11</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="3">3</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="9">9</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="9">9</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="25">25</td>
</tr>
<tr>
<td SDVAL="2">2</td>
<td SDVAL="2">2</td>
</tr>
<tr>
<td SDVAL="2">2</td>
<td SDVAL="7">7</td>
</tr>
</tbody>
</table>
<p>I&#8217;d use a =SUMPRODUCT formula to create two arrays about each row, and add up the product of each array. So the first instance of the formula would first compare my first Col A value (&#8220;0&#8243;) to every other value in Col A and create an array of the results (which are TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE). Then it would compare my first Col B value (&#8220;25&#8243;) to every other value in Column B and create an array of those results. Then it iterate through those two arrays and create a third array which contains the product of each pair of values. TRUE * TRUE is 1, FALSE * TRUE is 0, FALSE * FALSE is 0. </p>
<table ALIGN=center CELLSPACING=0 COLS=3 RULES=NONE BORDER=0>
<tbody>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td>1 * 1 = 1</td>
</tr>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td>1 * 1 = 1</td>
</tr>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>1 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>1 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>1 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>1 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="1" SDNUM="1033;0;BOOLEAN">TRUE</td>
<td>0 * 1 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
<tr>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td SDVAL="0" SDNUM="1033;0;BOOLEAN">FALSE</td>
<td>0 * 0 = 0</td>
</tr>
</tbody>
</table>
<p>Then it adds up the SUM of all those PRODUCTS. Get it? SUMPRODUCT.</p>
<blockquote><p><code>1 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 = 2</code></p></blockquote>
<p>There are exactly two rows where Col A is 0 and Col B is 25. I repeat that formula for each row, et voila:</p>
<table FRAME=VOID ALIGN=center CELLSPACING=0 COLS=3 RULES=NONE BORDER=0>
<tbody>
<tr>
<td><strong>Value A</strong></td>
<td><strong>Value B</strong></td>
<td><strong>=SUMPRODUCT</strong></td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="25">25</td>
<td SDVAL="2">2</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="25">25</td>
<td SDVAL="2">2</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="35">35</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="37">37</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="42">42</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="0">0</td>
<td SDVAL="0">0</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="1">1</td>
<td SDVAL="11">11</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="3">3</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="9">9</td>
<td SDVAL="2">2</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="9">9</td>
<td SDVAL="2">2</td>
</tr>
<tr>
<td SDVAL="1.5">1.5</td>
<td SDVAL="25">25</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="2">2</td>
<td SDVAL="2">2</td>
<td SDVAL="1">1</td>
</tr>
<tr>
<td SDVAL="2">2</td>
<td SDVAL="7">7</td>
<td SDVAL="1">1</td>
</tr>
</tbody>
</table>
<p>Then, hypothetically, I could use that third column to calculate the radius of points on a <a href="http://datajournalism.2012.journalism.cuny.edu/2012/04/27/d3-scatterplot/">scatterplot</a>. Also handy? Libre Office Calc&#8217;s <em>save as HTML</em> option. </p>
<p>PS. If you&#8217;re clever, you&#8217;ll notice that the scatterplot doesn&#8217;t really show any kind of correlation. That&#8217;s okay &#8212; my project was just to figure out how to make it in D3. </p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asparagus Quiche</title>
		<link>http://velociraptor.info/notes/?p=1160</link>
		<comments>http://velociraptor.info/notes/?p=1160#comments</comments>
		<pubDate>Wed, 04 Apr 2012 18:17:44 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[various]]></category>
		<category><![CDATA[asparagus]]></category>
		<category><![CDATA[dinner]]></category>
		<category><![CDATA[good real food]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1160</guid>
		<description><![CDATA[Had a gin and basil cocktail the other night. I believe &#8220;aspirational&#8221; was the word kthread chose. Eventually, there will be asparagus. In California, there&#8217;s been asparagus for a month already. 8 oz. Asparagus, washed, trimmed and cut into 1 1⁄2 inch lengths 4 lg eggs 1/4 cup milk (or whipping cream, if you&#8217;re decadent [...]]]></description>
			<content:encoded><![CDATA[<p>Had a gin and basil cocktail the other night. I believe &#8220;aspirational&#8221; was the word kthread chose. </p>
<p>Eventually, there will be asparagus. In California, there&#8217;s been asparagus for a month already.</p>
<p>8 oz. Asparagus, washed, trimmed and cut into 1 1⁄2 inch lengths<br />
4 lg eggs<br />
1/4 cup milk (or whipping cream, if you&#8217;re decadent like that.)<br />
1 tsp Dijon mustard<br />
1/8 tsp salt<br />
1/8 tsp cayenne pepper (or more, if desired)<br />
1/4 tsp paprika<br />
1 cup small-curd cottage cheese<br />
1 cup grated Gruyère cheese<br />
1/4 cup grated Parmesan or Romano cheese</p>
<p>Preheat oven to 350°F. Butter a 9 inch pie plate.</p>
<p>Using a small sauté pan with a cover, heat about 1⁄2 cup water just to boiling. Pour in sliced asparagus, cover, and turn off heat. Allow asparagus to steam w/ heat off while<br />
you prepare the other ingredients.</p>
<p>In a large bowl, beat eggs on medium speed until they are very well blended. Blend in the milk, mustard, salt, pepper, and paprika until well combined.</p>
<p>Using a heavy wooden spoon, stir in the cheeses, stirring until well combined. Drain asparagus (should still be bright green, tender but slightly crunchy). Put it into the bottom of the pie pan. Pour the egg mixture over the asparagus and place quiche into oven.</p>
<p>Bake for 30 &#8211; 40 minute, or until quiche has puffed and browned, and is set in center. Allow to cool 5 minutes before slicing.</p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1160</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ambivalence</title>
		<link>http://velociraptor.info/notes/?p=1148</link>
		<comments>http://velociraptor.info/notes/?p=1148#comments</comments>
		<pubDate>Wed, 04 Apr 2012 15:46:56 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[myself]]></category>
		<category><![CDATA[Stating the Obvious]]></category>
		<category><![CDATA[various]]></category>
		<category><![CDATA[apologies]]></category>
		<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1148</guid>
		<description><![CDATA[Part of me wants to ditch this particular project. Part of me wants to push myself to write more. About slow gardening (get to know the dirt) and open newsrooms and (lately, again) games. But &#8230; Tumblr. @embell said Tumblr is for people who don&#8217;t like to write &#8212; I&#8217;m not sure that&#8217;s totally true, [...]]]></description>
			<content:encoded><![CDATA[<p>Part of me wants to ditch this particular project. Part of me wants to push myself to write more. About slow gardening (get to know the dirt) and open newsrooms and (lately, again) games.  </p>
<p>But &#8230; Tumblr.</p>
<p>@embell said Tumblr is for people who don&#8217;t like to write &#8212; I&#8217;m not sure that&#8217;s totally true, but there&#8217;s a strange format to conversations there, a format that I like. </p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1148</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Good Real Food</title>
		<link>http://velociraptor.info/notes/?p=1154</link>
		<comments>http://velociraptor.info/notes/?p=1154#comments</comments>
		<pubDate>Fri, 02 Mar 2012 15:02:03 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[eating]]></category>
		<category><![CDATA[good real food]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1154</guid>
		<description><![CDATA[I&#8217;m slowly retrieving my posts from Good Real Food, as much for my own reference as anything. There are a few more that might just sit there: Bay Leaves from Montenegro Greek Butter Cookies with Sambuca (actually, that&#8217;s pretty much it. If it is winter, eat cookies Cookies while sipping Sambuca.) And there&#8217;s one called [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m slowly retrieving my posts from Good Real Food, as much for my own reference as anything. There are a few more that might just sit there:</p>
<p><a href="http://web.archive.org/web/20090506120213/http://www.goodrealfood.com/2009/03/05/bay-leaves-from-montenegro/">Bay Leaves from Montenegro</a></p>
<p><a href="http://web.archive.org/web/20090502124817/http://www.goodrealfood.com/">Greek Butter Cookies</a> with Sambuca (actually, that&#8217;s pretty much it. If it is winter, eat cookies <a href="http://web.archive.org/web/20090416012917/http://www.gourmet.com/recipes/1970s/1974/04/greek-butter-cookies">Cookies</a> while sipping Sambuca.)</p>
<p>And there&#8217;s one called <strong>Shrimp Curry</strong>, from the nutritional mythology files, which goes like this:</p>
<blockquote><p>I have a few recipes that I saved from my grandmother’s recipe box, most because they struck me somehow and not because I remember her making these things. One is for shrimp curry. It isn’t much bigger than a postage stamp and has floated around my kitchens for the last decade. I realized, as I was reading it over this weekend, that I’ve never actually read this recipe before or I would have been floored by it already.</p>
<p>To make Shrimp Curry one blends <strong>1/2 tsp curry powder</strong> into <strong>1 cup of mayonnaise</strong> and gradually adds <strong>2/3 cup evaporated milk</strong>. Got that? Curry powder, mayo, canned milk. Okay, still with me? You blend these things and add <strong>1 1/2 cups cooked shrimp</strong>, <strong>2 T each of chopped pimiento and bell pepper</strong> and <strong>1 T chopped onion</strong>. Heat these things and serve them over rice.</p>
<p>Next time someone starts rambling about how our grandmothers cooked balanced meals in some long lost once-upon-a-time, do me a favor and set them straight. Some did, some didn’t. </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1154</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dinner This Week (for Kiffy)</title>
		<link>http://velociraptor.info/notes/?p=1139</link>
		<comments>http://velociraptor.info/notes/?p=1139#comments</comments>
		<pubDate>Mon, 27 Feb 2012 15:47:12 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[myself]]></category>
		<category><![CDATA[dinner]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[good real food]]></category>
		<category><![CDATA[regretsy]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1139</guid>
		<description><![CDATA[And for me. Somewhere around this point every winter I&#8217;m at a total loss for meals. To answer Kiersten&#8217;s question (what do you eat for dinner?) and my own (what on earth do we eat now), this time &#8230; I&#8217;ve roasted a squash and cooked a lot of garbanzo beans. I made some lime and [...]]]></description>
			<content:encoded><![CDATA[<p>And for me. Somewhere around this point every winter I&#8217;m at a total loss for meals. To answer Kiersten&#8217;s question (what do you eat for dinner?) and my own (what on earth do we eat now), this time &#8230; I&#8217;ve roasted a squash and cooked a lot of garbanzo beans. I made some <a href="http://pickledcarrots.tumblr.com/post/17892940651/nectar">lime and sesame oil dressing</a> and some <a href="http://orangette.blogspot.com/2007/10/sneaky-sneaky.html">tahini sauce</a>.</p>
<p><strong>Sunday</strong>, squash / miso / mugwort udon / scallion / hard boiled egg (<a href="http://www.katherinemartinelli.com/blog/2012/vegan-tofu-miso-butternut-squash-ramen-recipe/">loosely based on a recipe</a>); carrot and chickpea salad with <a href="http://pickledcarrots.tumblr.com/post/17892940651/nectar">lime/sesame dressing</a>. We got some turkey sausage at the farmers market, so we have to use that soon, too. <strong>Monday</strong>, Possibly sausage spaghetti, or else butternut squash and garbanzo beans with tahini sauce. <strong>Tuesday</strong>, leftover mujaddara (caramelized onions, lentils, short grain brown rice) with yogurt. <strong>Wednesday</strong>, see Monday.<span id="more-1139"></span> </p>
<p>See also: <a href="http://orangette.blogspot.com/2009/01/best-we-can-hope-for.html">cabbage with sambal olek and fennel</a>, and a fried egg; <a href="http://www.mitoku.com/recipes/index/braisedcabbage.html">cabbage with umeboshi</a> plums; <a href="http://www.worldcat.org/oclc/21563875">Moosewood</a>&#8216;s Finnish cabbage with tomato paste, dill, currants. </p>
<p><strong>Unrelated: </strong>my sister makes stuffed felt owls with big eyes for her friends&#8217; babies. They&#8217;re super cute and super easy (though &#8230; my sister sews a lot. Her &#8220;super easy&#8221; might be your first big sewing challenge). Also, courtesy requires us to insist that whatever we&#8217;ve made is no big thing. &#8220;Oh this? It&#8217;s really easy to make.&#8221; You can&#8217;t say &#8220;this was hard to do, but I enjoy a challenge;&#8221; So everyone says &#8220;oh, you should sell those!&#8221; because that&#8217;s what we say today when someone is crafty. <em>Why on earth do you have a job as an ICU nurse when you could make your living sewing stuffed owls?</em>. Etsy hardly invented the idea, but they&#8217;re sugar to its little yeasties, bellows to its glowing coals. You&#8217;ve really got no excuse now! Nonetheless, it has taken me this long to piece together that there&#8217;s something really broken about the idea that if you make something well, you should sell it. That Etsy was <a href="http://www.doublex.com/section/work/etsycom-peddles-false-feminist-fantasy">founded by men</a> who are making a comfortable living off of the <a href="http://www.regretsy.com/category/not-remotely-handmade/">factory produced</a> goods on their <a href="http://www.etsy.com/about?ref=ft_about">&#8220;handmade&#8221;</a> marketplace could perhaps have been a clue, but that&#8217;s not even what I mean. There&#8217;s a corollary conversation about pretending not to work, while also pretending not to be wealthy that also matters. Also, not what I mean. I just mean that actually making things, beautiful things, inspiring things &#8230; it is possible to just make things. You don&#8217;t have to sell them. </p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1139</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bulgarian Pepper Casserole (GRF 9/2010)</title>
		<link>http://velociraptor.info/notes/?p=1143</link>
		<comments>http://velociraptor.info/notes/?p=1143#comments</comments>
		<pubDate>Mon, 27 Feb 2012 14:52:18 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[eating]]></category>
		<category><![CDATA[dinner]]></category>
		<category><![CDATA[good real food]]></category>
		<category><![CDATA[making do]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1143</guid>
		<description><![CDATA[Originally posted September 2010; Retrieved from the Way Back Machine I cannot, for the life of me, imagine walking into a restaurant and selecting “Bulgarian Pepper Casserole” off the menu. I can’t. But Jan made it for the farm trip potluck and it was excellent. And then last week we got of an airplane in [...]]]></description>
			<content:encoded><![CDATA[<p><i>Originally posted September 2010; Retrieved from the Way Back Machine</i></p>
<p>I cannot, for the life of me, imagine walking into a <a href="http://www.moosewoodrestaurant.com/">restaurant</a> and selecting “<a href="http://thewellfednewlyweds.blogspot.com/2009/12/bulgarian-pepper-casserole.html">Bulgarian Pepper Casserole</a>” off the menu. I can’t. But <a href="http://windflowercorkboard.blogspot.com/p/crew.html" title="Okay, so she's the one not profiled.">Jan</a> made it for <a href="http://www.clintonhillcsa.org/2010/farm-trip-august-28-29-2010/">the farm trip potluck</a> and it was excellent. And then last week we got of an airplane in Atlanta, into a car, onto a <a href="/http://velociraptor.info/pictures/v/Travel/tennessee/P1000243.JPG.html">highway</a>. Three hours later we were slowly coming to terms with the fact that it was Sunday and we were tired and would need to make dinner out of groceries we hadn’t bought yet, starting from an empty pantry and for that we’d need a plan. So I <a href="http://velociraptor.info/notes/?p=743">pulled up</a> the recipe. We couldn’t find feta or anything approaching greek olives at the Ducktown Piggly Wiggly, so I bought some jack cheese. I was really tired, so we only bought one onion and one green pepper.  When we got to <a href="http://velociraptor.info/pictures/v/Travel/tennessee/P1000254.JPG.html">the cabin</a> and there was absolutely no reception and my phone browser didn’t have the page cached, so I had to work from memory. We’d found a woman who sold brown eggs from her garage ($1.75/dozen, leave the money in the basket, take the eggs from the fridge), so we had some eggs and it made sense to me to add an egg to the ricotta, so I did. It came out pretty good. I bet with a recipe at hand it’d turn out even better.</p>
<p>Which brings me to this: I want to make more casseroles this fall. Just because. I don’t know why really. Before we left, <a href="http://cairometer.blogspot.com/">Rachel</a> and I assembled a sort of modified enchilada that got me thinking casserole. Onions cooked with roasted peppers (Zach and Rachel have a flame thrower, always fun to use) and a can of beans. Tortillas, softened a bit, wrapped around some cheese and drizzled with mole and some bean juice. Hippie food, but it came out good, especially for a meal that started with “Well, we have a can of beans somewhere, I think.”</p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oggy Two</title>
		<link>http://velociraptor.info/notes/?p=1130</link>
		<comments>http://velociraptor.info/notes/?p=1130#comments</comments>
		<pubDate>Sun, 29 Jan 2012 19:53:09 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[various]]></category>
		<category><![CDATA[fuze]]></category>
		<category><![CDATA[living post]]></category>
		<category><![CDATA[ogg]]></category>
		<category><![CDATA[ogg player]]></category>
		<category><![CDATA[sandisk]]></category>
		<category><![CDATA[sansa]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1130</guid>
		<description><![CDATA[I got a new ogg player for Christmas. (That&#8217;s how it works: I get Christmas presents, Noah gets Hannukah presents) and on the first go round I managed to completely bork the thing. Broke it so&#8217;s I had to send it back to SanDisk. Got it back, plugged it in and started the whole thing [...]]]></description>
			<content:encoded><![CDATA[<p>I got a new ogg player for Christmas. (That&#8217;s how it works: I get Christmas presents, Noah gets Hannukah presents) and on the first go round I managed to completely bork the thing. </p>
<p>Broke it so&#8217;s I had to send it back to SanDisk. Got it back, plugged it in and started the whole thing over again. It seems to hang on syncing with Banshee. </p>
<p>I&#8217;ll explain this more, I swear, but for now, I just want to note that mounting it and manually deleting the &#8220;.m3u&#8221; playlists that Banshee synced &#8212; then I was able to turn it on. I suspect that it was choking trying to index those or something.</p>
<p>Why the Fuze?<br />
I genuinely liked my first Ogg player, an iAudio 7, but when it died (just bricked up one day &#8212; let me know if you want to try unbricking it) I decided that I wanted something that would support multiple playlists. I can&#8217;t really run because my foot is still oddly enflamed, but when I can run, good music makes a huge difference.  I probably don&#8217;t actually need to explain why a person might want more than one playlist. </p>
<p>I was also looking forward to the larger screen, though honestly, the Fuze makes poor use of all that space.</p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1130</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kombucha</title>
		<link>http://velociraptor.info/notes/?p=1127</link>
		<comments>http://velociraptor.info/notes/?p=1127#comments</comments>
		<pubDate>Wed, 25 Jan 2012 18:04:30 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[eating]]></category>
		<category><![CDATA[fermentation]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[kombucha]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1127</guid>
		<description><![CDATA[When I started brewing kombucha, I had a hard time distilling the instructions (which are everywhere) into the nuts and bolts. Here&#8217;s the thing no one just spells out: for every 3 quarts of tea, use about 1 cup of sugar. The rest of it goes like this: You need a container. Glass is best, [...]]]></description>
			<content:encoded><![CDATA[<p>When I started brewing kombucha, I had a hard time distilling the instructions (which are <a href="http://duckduckgo.com/?q=brewing+kombucha">everywhere</a>) into the nuts and bolts. Here&#8217;s the thing no one just spells out: for every 3 quarts of tea, use about 1 cup of sugar. The rest of it goes like this:</p>
<p>You need a <strong>container</strong>. Glass is best, metal and plastic are no good. Some people use ceramic, which is fine, though I like a transparent container so I can keep my brew on a high shelf and check on it from time to time. So I have a giant pickle jar.</p>
<p>For best results, you want the surface area to be wider than it is deep, but it doesn&#8217;t matter that much. My pickle jar is much deeper than it is wide, but I don&#8217;t usually fill it.</p>
<p>You need <strong>tea</strong>, green or black or oolong.</p>
<p>You need <strong>sugar</strong>, white or brown. No honey. 1 cup of sugar per 3 qts tea.</p>
<p>And you need a <strong>starter</strong>, aka a mother or a scoby.</p>
<p>It helps to have some brew from <strong>your last batch</strong>.</p>
<p>You need a piece of <strong>cloth</strong>. I used cheesecloth for a long time until a fruit fly epidemic in our compost made it&#8217;s way to the cupboard where my kombucha was brewing. That was truly revolting. Now I use a clean piece of sheeting, which has a much tighter weave than cheesecloth.</p>
<p><span id="more-1127"></span></p>
<p>People will tell you to sterilize everything. Sometimes I do, sometimes I don&#8217;t. You don&#8217;t want soap residue, though, so consider boiling your jar first, just to get it clean of soap. Boiling your equipment certainly won&#8217;t hurt. So go ahead and <strong>sterilize everything</strong>.</p>
<ol>
<li><strong>Brew the tea.</strong> I usually make a single pot (which is about 1 quart, so I add about 1/3 c sugar)</li>
<li>Measure sugar into a jar</li>
<li>Pour some hot  tea in to <strong>dissolve the sugar</strong> (if you&#8217;ve already cooled your tea, don&#8217;t sweat it. The sugar will probably still dissolve.)</li>
<li><strong>Cover the sugar water and the tea pot</strong> and go do something else for a while.</li>
<li>When your tea is cool,<strong> strain it</strong> into your jar with the sugar.</li>
<li><strong>Add the mother</strong> and some of  your last brew if you saved it. The mother will probably sink, or float in the middle of the brew.</li>
<li><strong>Cover the jar</strong> with cloth and put it in a <strong>dark, warm place</strong>. Don&#8217;t stress out about the warmth, just don&#8217;t put it on your fire escape, for instance. That is not a warm place.</li>
<li>Leave it alone for at least five days. I know this is impossible. You&#8217;re dying to test it, to see what&#8217;s happening. Don&#8217;t.<strong> Leave it alone.</strong></li>
<li>After about five days, you can take the jar out very gently and<strong> peer at it</strong>. This is the part where a glass jar is just better: you can see. There should be at least a film forming over the top of the tea. It might even already be opaque and white. The mother might be floating or it might be stuck to the film on top. You want it to get to the point where it&#8217;s a solid thick mass covering the whole brew. <a href="http://www.foodrenegade.com/how-to-grow-a-kombucha-scoby/">Food Renegade has excellent pictures of the process</a>.</li>
<li><strong>Resist the temptation</strong> to poke at it. The mushroom forms a seal across the top of the tea, which is busy fermenting down below. So look, but don&#8217;t touch.</li>
<li><strong>Mold is bad</strong>, giant air bubbles or odd inconsistencies in the thickness of the new mushroom are not a big deal. If you&#8217;re seeing actual mold develop, dump the batch and find better instructions.</li>
<li>Once you&#8217;ve grown a whole new mother (thick film forming a seal), bottle your tea or look around for instructions on testing it. And when you&#8217;re happy with it, then <strong>bottle your tea</strong>:
<ol>
<li>Boil some jars or bottles. I use mostly whisky flasks, but it doesn&#8217;t really matter.</li>
<li>Funnel the tea into your jars, cap them, and let them sit at room temperature for a day or two to carbonate. Then refrigerate them.</li>
</ol>
</li>
<li>At this point you can start a new batch &#8212; you should have two mothers now, so give one to a friend. If they&#8217;re stuck together (they often are) you can yank them apart. Or, stick the mother in the fridge with the dregs of the brew and start a new batch later.<!--more--></li>
</ol>
<p>I don&#8217;t have a good link for the &#8220;no honey&#8221; rule, but I believe it&#8217;s got something to do with honey&#8217;s antifungal properties inhibiting growth of the kombucha mushroom.</p>
<p>Most recipes seem to think you&#8217;ll want to brew gallons and gallons of kombucha. You can do that, but I finally settled on one pot of tea, which seems to take me about a week to get through. Since a new batch takes about a week to brew, the timing is usually about right. I highly recommend starting with just a quart, so that you can get the hang of the process without turning your kitchen into a brewery.</p>
<p>Any recipe I&#8217;ve seen has you dissolving the sugar in the tea on the stovetop and brewing it for fifteen to twenty minutes. I stopped bothering. If you make hot tea it will take at least 20 minutes to cool down anyhow. So I just make a pot of tea and leave it for a good long while while I go do something else. Then I measure the sugar, swirl it in the jar with a small amount of tea to dissolve it and pour the rest in. It works just fine.</p>
<p>Most recipes give a temperature range for actually storing the brew. If you live in a cabin in the woods that freezes when you&#8217;re not home with a fire going, you might have some trouble, but basically if you can sit around in your home your kombucha can grow. It will grow slower if it is cold out.</p>
<p>Looking for more <a href="http://www.seedsofhealth.co.uk/fermenting/kombucha_teas.shtml">verbose discussion of teas</a>, <a href="http://www.seedsofhealth.co.uk/fermenting/kombucha_howto.shtml">step by step brewing instructions</a>, or just <a href="http://www.wildfermentation.com/">great insights on fermentation</a>? The internet is your friend. <a href="http://www.wildfermentation.com/links.php#subcat_9_Kombucha">Sandor Katz is probably your best friend</a>.</p>
<p>You don&#8217;t actually need a whole mother. You can start from a bottle of raw commercial kombucha if it&#8217;s got some bits of mother floating around in the bottom. Drink half and dump the rest in your tea. It will take a little longer to form a good solid mother, but it will form. I tried this exactly once after the revolting fruit fly maggot incident. Did I mention that cheesecloth isn&#8217;t fine enough to keep fruit flies out? Yeah. Gross.</p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1127</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crack, By Popular Request</title>
		<link>http://velociraptor.info/notes/?p=1115</link>
		<comments>http://velociraptor.info/notes/?p=1115#comments</comments>
		<pubDate>Mon, 14 Nov 2011 17:07:11 +0000</pubDate>
		<dc:creator>Amanda</dc:creator>
				<category><![CDATA[eating]]></category>
		<category><![CDATA[crack dressing]]></category>
		<category><![CDATA[recipes]]></category>

		<guid isPermaLink="false">http://velociraptor.info/notes/?p=1115</guid>
		<description><![CDATA[A salad dressing you don&#8217;t think will be good, because nutritional yeast is for hippies, but you are wrong. These go in a blender: ⅓ c tamari soy sauce, ⅓ c cider vinegar, ½ c water, 2-3 cloves of garlic,  ½ c nutritional yeast. Blend them. Then add 1½ c vegetable oil. The recipe makes [...]]]></description>
			<content:encoded><![CDATA[<p>A salad dressing you don&#8217;t think will be good, because nutritional yeast is for hippies, but you are wrong.</p>
<p>These go in a blender: ⅓ c <strong>tamari soy sauce</strong>, ⅓ c <strong>cider vinegar</strong>, ½ c <strong>water</strong>, 2-3 <strong>cloves of garlic</strong>,  ½ c <strong>nutritional yeast.</strong></p>
<p>Blend them. Then add <strong>1½ c vegetable oil</strong>. The recipe makes a big stink about adding it very slowly, which does make some subtle difference in the consistence, but I don&#8217;t bother. Put it in a jar, but the jar in the fridge. Or put it on a salad. Or you know &#8230; a little of each. You might be tempted to use olive oil, because it is good for your heart or something. Don&#8217;t. Use canola oil. On the other hand, I&#8217;m pretty sure that substituting shoyu for tamari won&#8217;t actually ruin the crack-like addictive quality of the dressing.</p>
<p>From <a href="http://www.worldcat.org/oclc/318017067">Hollyhock Cooks</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://velociraptor.info/notes/?feed=rss2&#038;p=1115</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

