<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title>Brian Boucheron</title><subtitle/><link>https://boucheron.org/brian</link><id>https://boucheron.org/brian</id><updated>Tue, 24 Dec 2024 20:00:34 GMT</updated><link href="https://boucheron.org/brian/feed.xml" rel="self" type="application/atom+xml"/><rights>© 2024 Brian Boucheron</rights><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><entry><title>Automatically Optimizing macOS Screenshots</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2024/12/optimizing-macos-screenshots"/><id>https://boucheron.org/brian/2024/12/optimizing-macos-screenshots</id><published>2024-12-24T00:00:00.000Z</published><category term="screenshot"/><category term="macOS"/><category term="AppleScript"/><category term="automation"/><content type="html">&lt;p>I take a lot of screenshots at work, and I’m always annoyed that I have to manually run &lt;a href="https://optipng.sourceforge.net">&lt;code>optipng&lt;/code>&lt;/a> over them to fully enshrink them for the web. Recently, I took a moment to automate this problem away using macOS’s &lt;em>Folder Actions&lt;/em> feature. Folder Actions allow you to attach an AppleScript or Automator workflow to a folder, to be run when items are added to (or modified in or deleted from) the folder.&lt;/p>&lt;p>If you desire the same automation magic, start by putting the following AppleScript file into &lt;code>~/Library/Workflows/Applications/Folder Actions/&lt;/code>:&lt;/p>&lt;pre class="language-applescript">&lt;code class="code-highlight language-applescript">&lt;span class="code-line">&lt;span class="keyword token">on&lt;/span> adding folder items &lt;span class="keyword token">to&lt;/span> thisFolder &lt;span class="keyword token">after&lt;/span> receiving theseItems
&lt;/span>&lt;span class="code-line">	&lt;span class="keyword token">repeat&lt;/span> &lt;span class="keyword token">with&lt;/span> thisItem &lt;span class="keyword token">in&lt;/span> theseItems
&lt;/span>&lt;span class="code-line">		&lt;span class="keyword token">set&lt;/span> fileName &lt;span class="keyword token">to&lt;/span> name &lt;span class="keyword token">of&lt;/span> &lt;span class="punctuation token">(&lt;/span>info &lt;span class="keyword token">for&lt;/span> thisItem&lt;span class="punctuation token">)&lt;/span>
&lt;/span>&lt;span class="code-line">		&lt;span class="keyword token">if&lt;/span> fileName &lt;span class="operator token">starts with&lt;/span> &lt;span class="string token">"Screenshot"&lt;/span> &lt;span class="operator token">and&lt;/span> fileName &lt;span class="operator token">ends with&lt;/span> &lt;span class="string token">".png"&lt;/span> &lt;span class="keyword token">then&lt;/span>
&lt;/span>&lt;span class="code-line">			&lt;span class="keyword token">set&lt;/span> filePath &lt;span class="keyword token">to&lt;/span> POSIX path &lt;span class="keyword token">of&lt;/span> thisItem
&lt;/span>&lt;span class="code-line">			do shell &lt;span class="class-name token">script&lt;/span> &lt;span class="string token">"/opt/homebrew/bin/optipng "&lt;/span> &lt;span class="operator token">&amp;#x26;&lt;/span> quoted form &lt;span class="keyword token">of&lt;/span> filePath
&lt;/span>&lt;span class="code-line">		&lt;span class="keyword token">end&lt;/span> &lt;span class="keyword token">if&lt;/span>
&lt;/span>&lt;span class="code-line">	&lt;span class="keyword token">end&lt;/span> &lt;span class="keyword token">repeat&lt;/span>
&lt;/span>&lt;span class="code-line">&lt;span class="keyword token">end&lt;/span> adding folder items &lt;span class="keyword token">to&lt;/span>
&lt;/span>&lt;/code>&lt;/pre>&lt;p>This AppleScript receives the path of any files added to the folder and runs them through &lt;code>optipng&lt;/code> if the filename matches &lt;code>Screenshot*.png&lt;/code>.&lt;/p>&lt;p>Name the file whatever you like. I chose &lt;code>optimize-screenshots&lt;/code>. Update &lt;code>/opt/homebrew/bin/optipng&lt;/code> to the location of &lt;code>optipng&lt;/code> on your system. This is where &lt;a href="https://brew.sh">homebrew&lt;/a> puts it. If you don’t have &lt;code>optipng&lt;/code>, install it with homebrew using &lt;code>brew install optipng&lt;/code>, or check out the &lt;a href="https://optipng.sourceforge.net">&lt;code>optipng&lt;/code> website&lt;/a> for more options.&lt;/p>&lt;p>Open your home folder in the Finder, then right-click (or &lt;code>control&lt;/code> click) the &lt;code>Desktop&lt;/code> folder. Click &lt;strong>Folder Actions Setup…&lt;/strong> in the context menu.&lt;/p>&lt;p>You are prompted to &lt;strong>Choose a Script to Attach&lt;/strong>. Find your script, probably near the bottom of the list, select it, then click the &lt;strong>Attach&lt;/strong> button. You should see a window similar to the following &lt;strong>Folder Actions Setup&lt;/strong> interface:&lt;/p>&lt;figure> &lt;picture> &lt;source type="image/webp" srcset="/20241224134234.b8892383.webp 400w, /20241224134234.8273afcf.webp 800w, /20241224134234.977feb9d.webp 1600w"> &lt;source type="image/jpeg" srcset="/20241224134234.ddef9928.jpeg 400w, /20241224134234.5ec8bc0e.jpeg 800w, /20241224134234.7ac34b4e.jpeg 1600w"> &lt;img src="/20241224134234.16553751.png" alt="Screenshot of the Folder Actions Setup interface, with 'Desktop' list on the left 'Folders with Actions' pane, and 'optimize-screenshots' listed on the right under 'Script'" width="800" height="455"> &lt;/picture> &lt;figcaption> Screenshot of the resulting &lt;strong>Folder Actions Setup&lt;/strong> interface.&lt;/figcaption>&lt;/figure>&lt;p>This shows that &lt;code>optimize-screenshot&lt;/code> is attached to the &lt;code>Desktop&lt;/code> folder. Ensure that the &lt;strong>Enable Folder Actions&lt;/strong> checkbox is checked and you’re done. The next screenshot you take will automatically be processed through &lt;code>optipng&lt;/code>after a second or three. You’ll see a gear icon in the menu bar indicating a script is being run.&lt;/p>&lt;p>If you use the Desktop folder often and don’t want an AppleScript running every time you do so, you might choose to have macOS save screenshots to a different location. Press &lt;code>command + shift + 5&lt;/code> to bring up macOS’s interactive screenshot interface, then click the &lt;strong>Options&lt;/strong> button and set an alternate location in the &lt;strong>Save to&lt;/strong> section of the menu. Attach the &lt;code>optimize-screenshots&lt;/code> script to your alternate location using the same method.&lt;/p></content></entry><entry><title>Minimum Viable Obsidian Plugin</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2024/05/minimum-viable-obsidian-plugin"/><id>https://boucheron.org/brian/2024/05/minimum-viable-obsidian-plugin</id><published>2024-05-08T15:56:19.000Z</published><category term="Obsidian"/><category term="JavaScript"/><category term="programming"/><content type="html">&lt;p>I made an &lt;a href="https://obsidian.md">Obsidian&lt;/a> plugin last week. It’s called &lt;a href="https://github.com/beardicus/obsidian-draft-indicator-plugin">Draft Indicator&lt;/a> and all it does is stick a little ✎ pencil icon next to any file that is marked as &lt;code>draft&lt;/code>.&lt;/p>&lt;figure> &lt;picture> &lt;source type="image/webp" srcset="/draft-indicator-screenshot.de5aa37b.webp 400w, /draft-indicator-screenshot.e436f446.webp 800w, /draft-indicator-screenshot.fd95545e.webp 1600w"> &lt;source type="image/jpeg" srcset="/draft-indicator-screenshot.30fb9f7b.jpeg 400w, /draft-indicator-screenshot.ddacf9e3.jpeg 800w, /draft-indicator-screenshot.3b62731c.jpeg 1600w"> &lt;img src="/draft-indicator-screenshot.0588191f.png" alt="A screenshot of an Obsidian window, with two files listed in the file explorer panel. One filename, called " yes a draft" is italicized and has small pencil icon to its right" width="800" height="403"> &lt;/picture> &lt;figcaption> A screenshot of an Obsidian vault. There is a tiny pencil.&lt;/figcaption>&lt;/figure>&lt;p>I thought this would be a fairly trivial bit of code to write – and it was – but when I first cloned &lt;a href="https://github.com/obsidianmd/obsidian-sample-plugin">Obsidian’s sample plugin template&lt;/a> I was overwhelmed. It’s full of ESLint and esbuild and TypeScript config files, and there are build scripts and dev servers and on and on.&lt;/p>&lt;p>I just wanted to write a little blob of JavaScript.&lt;/p>&lt;p>So I ripped a lot of stuff out. And I wrote my plugin in 42 lines of plain JavaScript, and it works fine and makes me happy.&lt;/p>&lt;p>I took what I learned from this process and made &lt;a href="https://github.com/beardicus/obsidian-simple-sample-plugin">obsidian-simple-sample-plugin&lt;/a>, a template that implements the same API examples as the official sample plugin, but stripped down to plain JavaScript. If you have an idea for an Obsidian plugin but were intimidated by TypeScript and its associated tooling, maybe check it out.&lt;/p></content></entry><entry><title>Cheddar Tasting</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2012/09/cheddar-tasting"/><id>https://boucheron.org/brian/2012/09/cheddar-tasting</id><published>2012-09-25T09:32:00.000Z</published><category term="cheddar"/><category term="cheese"/><category term="tasting"/><category term="cheesemaking"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7819999662.341a15c3.webp 400w, /7819999662.f934f5ff.webp 800w, /7819999662.d370eddc.webp 1600w"> &lt;source type="image/jpeg" srcset="/7819999662.dab2fb26.jpeg 400w, /7819999662.e5885011.jpeg 800w, /7819999662.f9848b60.jpeg 1600w"> &lt;img src="/7819999662.e5885011.jpeg" alt="First Cheddar Tasting" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>I’ve been sitting on these photos for about a month now, but somehow word still got out: the cheddar is open! I’ve already tasted or given away half the wheel, and the initial reviews are quite positive. I’m pretty happy with it myself. It tastes good, but maybe not perfect. Given that I was worried about it being a soaking moldy rancid mess when I finally cracked it open, I’m feeling pretty accomplished. It’s a bit moist—creamy even—and somewhat mild at this point in time (it’s about eight months old). It doesn’t seem to be oversalted. The curd is really well knit, with no gaps or crevices. It tastes a bit like a colby to me, so I have to figure out what the similarity is there.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7819974674.b28fb2a6.webp 400w, /7819974674.f3250333.webp 800w, /7819974674.64fc4bdf.webp 1600w"> &lt;source type="image/jpeg" srcset="/7819974674.9e384fd2.jpeg 400w, /7819974674.261a66ab.jpeg 800w, /7819974674.134cd677.jpeg 1600w"> &lt;img src="/7819974674.261a66ab.jpeg" alt="First Cheddar Tasting" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>I cut the wheel up into eights and vacuum packed them all. Hopefully I’ll be able to wait out the full year before tasting the rest, and we’ll see if it changes much in that time. In the meantime, the weather is getting nice and cool, and I’m finding myself in the kitchen more often on the weekends, cooking and baking and brewing. Hopefully the cheesemaking will resume in October, and I’ll be able to put up enough cheese over winter to satisfy the snacking appetite of family and friends for the next year.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7820045254.d3587bfe.webp 400w, /7820045254.f2c78770.webp 800w, /7820045254.8c351e74.webp 1600w"> &lt;source type="image/jpeg" srcset="/7820045254.d28ee238.jpeg 400w, /7820045254.b0fcd512.jpeg 800w, /7820045254.9ed0821d.jpeg 1600w"> &lt;img src="/7820045254.b0fcd512.jpeg" alt="First Cheddar Tasting" width="800" height="533"> &lt;/picture> &lt;/p></content></entry><entry><title>Three Cheese Update</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2012/05/three-cheese-update"/><id>https://boucheron.org/brian/2012/05/three-cheese-update</id><published>2012-05-21T18:55:23.000Z</published><category term="cheese"/><category term="cheesemaking"/><category term="provolone"/><category term="parmesan"/><category term="romano"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7005046138.af42f80a.webp 400w, /7005046138.509de7e3.webp 800w, /7005046138.1ce3dfac.webp 1600w"> &lt;source type="image/jpeg" srcset="/7005046138.eb49eee0.jpeg 400w, /7005046138.424ff765.jpeg 800w, /7005046138.57dd39b6.jpeg 1600w"> &lt;img src="/7005046138.424ff765.jpeg" alt="3 Week Provolone, Slicing" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>My first batch of provolone, having completed three weeks of hard labor in the cheese fridge, was ready for slicing and tasting last weekend. Hooray! After many requests for “some cheeses we can actually taste within the next year”, we now have some &lt;a href="/brian/2012/05/cream-cheesy-bagels">cream cheese&lt;/a> and &lt;a href="/brian/2012/04/fail-cheese">provolone&lt;/a> in an edible state in the fridge.&lt;/p>&lt;p>Cheese is quite a pain to cut with a knife, and I don’t have any piano wire handy to make a wire-based cheese slicer, so I was quite happy to finally have a use for one of my hand cranked deli slicers, as you can see above. Don’t tell the hoarding police, but I have three of these things kicking around in the basement. The first one I dug up didn’t work so hot, but the one pictured above sliced the provolone beautifully. It has some squeaks and needs some cleaning and tuning, but in general it’s a lovely hunk of cast iron and it chewed through my two provolone lumps with ease.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7151083301.8b1ce306.webp 400w, /7151083301.1261e048.webp 800w, /7151083301.4378ce41.webp 1600w"> &lt;source type="image/jpeg" srcset="/7151083301.ce65f385.jpeg 400w, /7151083301.bcaa0f47.jpeg 800w, /7151083301.4a13ec61.jpeg 1600w"> &lt;img src="/7151083301.bcaa0f47.jpeg" alt="3 Week Provolone, Slicing" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7005069936.c946fb99.webp 400w, /7005069936.85a80be9.webp 800w, /7005069936.59f00fca.webp 1600w"> &lt;source type="image/jpeg" srcset="/7005069936.346f7468.jpeg 400w, /7005069936.ceb19f43.jpeg 800w, /7005069936.239ee5b2.jpeg 1600w"> &lt;img src="/7005069936.ceb19f43.jpeg" alt="3 Week Provolone, Slicing" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>My parents scrounged me a vacuum sealer for Christmas last year, and this was its first use. I do hate the proliferation of plastic bags it encourages, but I suppose I hate freezer burn and wasted food moreso. The bags seem to be reusable though, so I’ll just be “that guy” who washes and dries items that are normally thought of as disposable. No matter… I hang laundry and prefer bikes to cars, so I’ve already been cast out of polite American society.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7005092840.5525f7b3.webp 400w, /7005092840.7e2e11aa.webp 800w, /7005092840.648c3a47.webp 1600w"> &lt;source type="image/jpeg" srcset="/7005092840.82b7ece5.jpeg 400w, /7005092840.9926a93f.jpeg 800w, /7005092840.f85e1f4a.jpeg 1600w"> &lt;img src="/7005092840.9926a93f.jpeg" alt="VacuuProvolone" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>The vacuum sealer worked quite well, and by the end of this process I felt like a proper supermarketeer, with nicely sliced and plasticized cheeses, ready to be hung in the deli case next to the bologna and prosciutto (dangerously close to the liverwurst too, usually!). &lt;em>Update: since writing this, we’ve broken into the provolone stash, and found all the slices had been vacuumed back into a single mass. Perhaps I will age provolone unsliced in the future.&lt;/em>&lt;/p>&lt;p>I now realize I’ve failed to mention something important: how did it taste?! I am relieved to report that it does indeed taste like provolone. Fairly mild at this point, but with a hint of sharp cheesiness. The rind is a bit drier and more pronounced than I’m used to. The humidity was a tad low in the cheese cave, so that may account for that. The texture inside seems about right, despite my problems stretching and forming the curd. Not sure what else to say… no doubt cheese mongers have a bounty of words used to describe cheese taste characteristics. Perhaps they’re even as varied and silly as those of wine aficionados… but for now, all I’ve got is: tastes cheesy, not spoiled, not too salty, A++ would ingest again.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7005099026.27b87488.webp 400w, /7005099026.a5913086.webp 800w, /7005099026.aab8b63a.webp 1600w"> &lt;source type="image/jpeg" srcset="/7005099026.cb6e3962.jpeg 400w, /7005099026.ef490ade.jpeg 800w, /7005099026.ed819778.jpeg 1600w"> &lt;img src="/7005099026.ef490ade.jpeg" alt="Parmesan, 3 Months" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Since I was already breaking out the vacuum-sealer-bot for long term provolone storage, I decided to quarter and pack my first parmesan and romano cheeses as well. One disadvantage of making wee little two pound cheeses is that the rind to insides ratio is all off compared to an 80 pound wheel. Unless you rub the rind with olive oil every once in a while, or wax your cheese, or vacuum pack it, you’ll end up with an overly dry, cracked up, 100% rindy cheese. No good.&lt;/p>&lt;p>I was a bit worried I wouldn’t be able to cut the parmesan, due to my aforementioned lack of wire (not to mention the specialized knives usually used to split apart big wheels of parmesan), but my normal chef’s knife did the trick just fine. The romano was even easier, as it’s a bit more moist (probably &lt;em>too&lt;/em> moist, actually). Both were quartered, and—after I snuck a taste—vacuum packed.&lt;/p>&lt;p>Again, I have no good tasting notes… the parmesan seemed to have the right texture, a little crumbly and grainy. The taste was “getting there”. Not sharp, more salty than anything at this point. The romano was about the same, except not so dry, with no grainy texture. I almost want to compare the texture to muenster. I think it’s grate-able though, so it’ll probably work out. It certainly wont be drying out any more in the bag, so that’s possibly a mistake, but since you can eat it young as a table cheese anyways, I’m not too worried. Worst case we’ll eat the insides and grate the outsides.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7005123366.08d2cc40.webp 400w, /7005123366.1d168377.webp 800w, /7005123366.f525838f.webp 1600w"> &lt;source type="image/jpeg" srcset="/7005123366.e5b519b8.jpeg 400w, /7005123366.6d1e4f0a.jpeg 800w, /7005123366.9520d0d7.jpeg 1600w"> &lt;img src="/7005123366.6d1e4f0a.jpeg" alt="Romano, 3 Months" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7151224621.2204d108.webp 400w, /7151224621.fad10f52.webp 800w, /7151224621.86f0c953.webp 1600w"> &lt;source type="image/jpeg" srcset="/7151224621.eed565dd.jpeg 400w, /7151224621.3023a3bc.jpeg 800w, /7151224621.376a9632.jpeg 1600w"> &lt;img src="/7151224621.3023a3bc.jpeg" alt="CheeseBags" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Now that everything is all bagged up, my cheese cave is a bit boring. Besides the bags, I only have one wheel of waxed cheddar. Humidity in the cave isn’t so important now, but the temperature needs to remain at 50–55 degrees in order for everything age properly. So until I get a new cheese fridge up and running, the kegerator will remain a cheeserator. Sorry future party guests.&lt;/p>&lt;p>Now that summer is upon us, I doubt I’ll want to spend hours in the kitchen with the stove on, so I might have to concentrate on quicker and easier cheese recipes. I’m thinking summer salads might need some crumbly blue cheeses involved, so perhaps I’ll make it my goal to get more acquainted with that particular mold in the very near future…&lt;/p></content></entry><entry><title>Cream Cheesy Bagels</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2012/05/cream-cheesy-bagels"/><id>https://boucheron.org/brian/2012/05/cream-cheesy-bagels</id><published>2012-05-04T21:32:00.000Z</published><category term="cheese"/><category term="cheesemaking"/><category term="cream"/><category term="cheese"/><category term="bagel"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6984177282.50952248.webp 400w, /6984177282.9e702b66.webp 800w, /6984177282.10c782c2.webp 1600w"> &lt;source type="image/jpeg" srcset="/6984177282.15840acf.jpeg 400w, /6984177282.ac74530f.jpeg 800w, /6984177282.3c746cf5.jpeg 1600w"> &lt;img src="/6984177282.ac74530f.jpeg" alt="Cream Cheesemaking" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>There is something perversely satisfying about spending an excessive amount of time recreating commodity food items at home. I know I’m not alone in this affliction, as one of my favorite food blogs, &lt;a href="http://smittenkitchen.com/">Smitten Kitchen&lt;/a>, seems to excel at making her own &lt;a href="http://smittenkitchen.com/2007/05/my-kingdom-for-a-glass-of-milk/">oreos&lt;/a>, &lt;a href="http://smittenkitchen.com/2009/05/graham-crackers/">graham crackers&lt;/a>, &lt;a href="http://smittenkitchen.com/2010/04/homemade-pop-tarts/">pop tarts&lt;/a>, &lt;a href="http://smittenkitchen.com/2009/06/springy-fluffy-marshmallows/">marshmallows&lt;/a>, and so on. Thus, having confirmed that I’m in good company, I decided to fritter away yet another Sunday in the kitchen, this time making cream cheese and bagels (sorry, no &lt;a href="http://en.wikipedia.org/wiki/Lox">lox&lt;/a> (yet)).&lt;/p>&lt;p>I’ll have to give bagel details at a later date, lest your eyeballs glaze before you make it to the glamor shots at the end of this post. If you simply cannot wait, I’ve got some photos of the bagel process in &lt;a href="http://www.flickr.com/photos/bert_m_b/sets/72157629958683315">my bread products Flickr set&lt;/a>.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129575059.3ea06221.webp 400w, /7129575059.bb17b1e5.webp 800w, /7129575059.2f6eef3f.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129575059.397bb22b.jpeg 400w, /7129575059.df8e5690.jpeg 800w, /7129575059.2ed5a000.jpeg 1600w"> &lt;img src="/7129575059.df8e5690.jpeg" alt="Cream Cheesemaking Fixins" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>First step! Lay all your utensils and goodies on the counter in a neat and fussy arrangement. Get up on a stool and take pictures. Express thanks for a kitchen with a nice wood countertop right next to the lovely light of a large, north facing window.&lt;/p>&lt;p>You may notice the counter is pretty bare. Compared to the last time I made cheese, this is going to be relatively simple. Hooray!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129597885.39dd30ff.webp 400w, /7129597885.af72598d.webp 800w, /7129597885.6dc010b5.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129597885.e843a41c.jpeg 400w, /7129597885.46856a4d.jpeg 800w, /7129597885.8b729f8c.jpeg 1600w"> &lt;img src="/7129597885.46856a4d.jpeg" alt="Cream Heater" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Step two: warm up the milky bits. I used half and half. You can probably use straight-up light cream, or even heavy cream if you’re a crazy cheese daredevil. Seventy-five degrees is your target. Precision isn’t terribly important here, we’re just trying to make the bacteria cozy, and they do tolerate a range of temperatures.&lt;/p>&lt;p>One slight complication: there’s a twelve hour long step coming up, so you’ll probably want to start this the night before and let your microbe friends work while you slumber. Plan ahead!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6983526554.bf3ebc8f.webp 400w, /6983526554.e4828d89.webp 800w, /6983526554.31a3384c.webp 1600w"> &lt;source type="image/jpeg" srcset="/6983526554.0db2e102.jpeg 400w, /6983526554.3afd66d8.jpeg 800w, /6983526554.fbf45230.jpeg 1600w"> &lt;img src="/6983526554.3afd66d8.jpeg" alt="M E S O P H I L L I C" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Now that we’re up to temperature, it’s time to add our bacterial culture. This comes as a packet of powder, which you keep in your freezer in order to prevent its inhabitants from waking up and hulking out in your pantry or other such inconvenient location. Snip the packet with the scissors you’ve previously sanitized (you sanitized all your equipment, right?), sprinkle it on top of the milk, and mix it in thoroughly.&lt;/p>&lt;p>Now, here’s where my various cheese books disagree. Some of them tell you to add rennet as well. So, I did. I’m starting to think that’s unnecessary/cheating. The lactic acid produced by our bacteria should be able to curdle the milk on its own, given enough time. It sounds like the result would be lumpy curds floating in whey, instead of the uniform gel that I got, and I suspect that would be more authentic. I’ll try it the other way next time, if I’m feeling lucky and adventurous.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6983553076.cd86f398.webp 400w, /6983553076.648f4a54.webp 800w, /6983553076.029febd2.webp 1600w"> &lt;source type="image/jpeg" srcset="/6983553076.b31e4d1c.jpeg 400w, /6983553076.0075183c.jpeg 800w, /6983553076.09a3c700.jpeg 1600w"> &lt;img src="/6983553076.0075183c.jpeg" alt="Cozy Bath" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129648699.8affd32c.webp 400w, /7129648699.6d33f56f.webp 800w, /7129648699.c005bfc0.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129648699.8fba7135.jpeg 400w, /7129648699.d6c6bfc1.jpeg 800w, /7129648699.0a6c12b8.jpeg 1600w"> &lt;img src="/7129648699.d6c6bfc1.jpeg" alt="Cozy Bath" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Either way, we now need to keep our pot o’ milkstuff warm for twelve hours. In my yogurt making days I learned that a cooler and some warm water will keep things toasty for quite some time. So put your pot in a “cooler”, pour in some warm water, close the lid, call it a “warmer”, and go to bed. How much water to add—and at what temperature—is an experiment I’ll leave to you. I try to err towards more water at a not-too-hot temperature, so there’s enough thermal mass to last through the night.&lt;/p>&lt;p>All of this assumes that you’re not making cheese in a balmy climate. If you do happen to roost where “room temperature” is between seventy and eighty, just leave the pot out, taking appropriate precautions re: marauding cats and curious primates.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129660979.805f2569.webp 400w, /7129660979.b2f4ef2b.webp 800w, /7129660979.92ff482a.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129660979.9a80e824.jpeg 400w, /7129660979.fa58ea59.jpeg 800w, /7129660979.abecb7fe.jpeg 1600w"> &lt;img src="/7129660979.fa58ea59.jpeg" alt="14 Hours Later" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>I did these first steps at about five in the evening, so needless to say, twelve hours came and went before I rolled out of bed the next morning. No worries. I got to it at eight or so. Poking around in the pot with a washed finger revealed that our experiment had indeed firmed up overnight.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129668629.6b5f1aa8.webp 400w, /7129668629.dc4cda14.webp 800w, /7129668629.abb81f2e.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129668629.993b8abc.jpeg 400w, /7129668629.d27cf0e5.jpeg 800w, /7129668629.bf80ff95.jpeg 1600w"> &lt;img src="/7129668629.d27cf0e5.jpeg" alt="Straining Tools" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7129674801.f6a1a493.webp 400w, /7129674801.5b288a16.webp 800w, /7129674801.cc77cab3.webp 1600w"> &lt;source type="image/jpeg" srcset="/7129674801.a2d74adb.jpeg 400w, /7129674801.c19330e6.jpeg 800w, /7129674801.6e0f72f4.jpeg 1600w"> &lt;img src="/7129674801.c19330e6.jpeg" alt="Scoop and Strain" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Step one million. Make yourself some tea, line a strainer with &lt;a href="http://en.wikipedia.org/wiki/Muslin">muslin&lt;/a>, and grab an old-timey slotted spoon with a handle that’s quite likely covered in lead paint. Scoop and plop. Gather up the cloth to make a nice hobo sack (optional: contemplate “hobo cheese” for a bit), then hang it over a whey receptacle for about six hours while it drains.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6983779534.c9a88272.webp 400w, /6983779534.2f00eefd.webp 800w, /6983779534.9df0dfb5.webp 1600w"> &lt;source type="image/jpeg" srcset="/6983779534.2d0c4a07.jpeg 400w, /6983779534.31bebfc0.jpeg 800w, /6983779534.04842556.jpeg 1600w"> &lt;img src="/6983779534.31bebfc0.jpeg" alt="Hanging Cheese" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6983784162.18e68889.webp 400w, /6983784162.18537890.webp 800w, /6983784162.f09fc268.webp 1600w"> &lt;source type="image/jpeg" srcset="/6983784162.12ac1d98.jpeg 400w, /6983784162.a46d10d8.jpeg 800w, /6983784162.6ee05bcd.jpeg 1600w"> &lt;img src="/6983784162.a46d10d8.jpeg" alt="Hanging Cheese" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6983831330.1c62c023.webp 400w, /6983831330.ed0099bc.webp 800w, /6983831330.7bfaf549.webp 1600w"> &lt;source type="image/jpeg" srcset="/6983831330.2c6319a6.jpeg 400w, /6983831330.2d70fcf9.jpeg 800w, /6983831330.aacaa4b2.jpeg 1600w"> &lt;img src="/6983831330.2d70fcf9.jpeg" alt="Hanging Cheese" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7130109221.58a9d66d.webp 400w, /7130109221.5fe259db.webp 800w, /7130109221.ff103736.webp 1600w"> &lt;source type="image/jpeg" srcset="/7130109221.8dc33e4d.jpeg 400w, /7130109221.e540a78d.jpeg 800w, /7130109221.656d035c.jpeg 1600w"> &lt;img src="/7130109221.e540a78d.jpeg" alt="Six Hours Later" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>And there you have it. It should be firmed up and dried out a bit. Add some salt and you’re done. It’s never going to have the same texture as the cream cheese you get from the store, as it’s not full of odd gelling agents and fillers, but once you cool it down it’ll be nice and creamy and spreadable. It should last at least two weeks in the fridge.&lt;/p>&lt;p>Or rather, it shouldn’t &lt;em>spoil&lt;/em> for at least two weeks. Whether it &lt;em>lasts&lt;/em> that long depends on how many bagels you have on hand. Out of a half gallon of half and half I ended up with about 1.8 pounds of cheese, or—at current rates of consumption—about two dozen bagels worth.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7130120703.a982d97e.webp 400w, /7130120703.ec762079.webp 800w, /7130120703.33ed29d7.webp 1600w"> &lt;source type="image/jpeg" srcset="/7130120703.79a98158.jpeg 400w, /7130120703.f1c17281.jpeg 800w, /7130120703.e1bc77c5.jpeg 1600w"> &lt;img src="/7130120703.f1c17281.jpeg" alt="Packaging" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7130233423.1ef77e5d.webp 400w, /7130233423.429cc537.webp 800w, /7130233423.a94bc350.webp 1600w"> &lt;source type="image/jpeg" srcset="/7130233423.7afab2e4.jpeg 400w, /7130233423.1da9382d.jpeg 800w, /7130233423.78c8f79d.jpeg 1600w"> &lt;img src="/7130233423.1da9382d.jpeg" alt="Bagelmaking" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6984177282.50952248.webp 400w, /6984177282.9e702b66.webp 800w, /6984177282.10c782c2.webp 1600w"> &lt;source type="image/jpeg" srcset="/6984177282.15840acf.jpeg 400w, /6984177282.ac74530f.jpeg 800w, /6984177282.3c746cf5.jpeg 1600w"> &lt;img src="/6984177282.ac74530f.jpeg" alt="Cream Cheesemaking" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Unlike all the other cheeses I’ve made so far, I’ve actually tasted this one! I think it came out really well. Pretty tangy and creamy. Maybe a little drier on the mouth than store-bought cream cheese, but at the same time a bit fresher and less gummy feeling. It’s probably not something I’d make terribly often (too many other cheeses to try!), but I’ll call it a success. It has certainly gotten good reviews in my limited test market of one.&lt;/p>&lt;p>The whole process of making cream cheese reminded me of making a strained yogurt cheese, and indeed I’m feeling like the final result is quite similar (though a bit richer). Soon I’ll document the idiotically easy process of making said yogurt cheese, for those of you unwilling or unable to sacrifice so much time in pursuit of cultured dairy products.&lt;/p></content></entry><entry><title>Fail Cheese</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2012/04/fail-cheese"/><id>https://boucheron.org/brian/2012/04/fail-cheese</id><published>2012-04-23T07:46:36.000Z</published><category term="cheese"/><category term="cheesemaking"/><category term="provolone"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083694131.87beb766.webp 400w, /7083694131.f3196b8c.webp 800w, /7083694131.8febbf66.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083694131.281b35e5.jpeg 400w, /7083694131.5a1b3905.jpeg 800w, /7083694131.30d2e9a9.jpeg 1600w"> &lt;img src="/7083694131.5a1b3905.jpeg" alt="The Fixins" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Making cheese seemed like a pretty simple process when I laid out all the tools above. A pot, some spoons, milk, cultures, a thermometer, a knife to cut the curd. Of course, throughout the day I kept having to root around the kitchen for all the things I forgot to include: measuring spoons, a big stirring spoon (lots of spoons involved here, I’m noticing), a pH meter, all sorts of bowls, ice, twine, gloves, a whisk. Yeargh!&lt;/p>&lt;p>Last Sunday really turned into an annoying day in the kitchen. I started at around noon, and didn’t have cheeses in the brine pot until nine or ten that evening (much of this time is just spent waiting around for microbes or enzymes to do their thing, admittedly). On top of that, I messed it all up during the very last step, so I cleaned up and went to bed with a mild case of the grumps.&lt;/p>&lt;p>Oh well. I’ll now step you through the process of making provolone, with too many pictures and too little explanation. It will look complicated (sortof) and time consuming (yup!), but if you’re interested in making cheese, there are many easier recipes you can start with (parmesean was really easy, if you don’t mind waiting six months to eat it), so don’t let the following mess dissuade you.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937628440.974243d7.webp 400w, /6937628440.83c278ab.webp 800w, /6937628440.739f517d.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937628440.b56c2d62.jpeg 400w, /6937628440.97e70f1d.jpeg 800w, /6937628440.8acbaff0.jpeg 1600w"> &lt;img src="/6937628440.97e70f1d.jpeg" alt="Electronic Ignition" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083710843.21491a5e.webp 400w, /7083710843.57483317.webp 800w, /7083710843.7e52d644.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083710843.0b6d2d10.jpeg 400w, /7083710843.50dd2c57.jpeg 800w, /7083710843.abd2e2b4.jpeg 1600w"> &lt;img src="/7083710843.50dd2c57.jpeg" alt="Glug Glug Glug" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>First step, sanitation! Every homebrewer’s favorite task, and just as important in cheesemaking. I gather all my utensils, and anything else that will touch the milk, and boil them for a bit. While that’s happening, I try to clean and scrub the entire kitchen as much as is practical, and then I kick everybody and everydog out of the room for the day. That always goes over well.&lt;/p>&lt;p>After the boil, I arrange my “clean zone” next to the stove, and fill the emptied pot with milk. I’ve been trying to get milk from the &lt;a href="http://www.cityofrochester.gov/publicmarket/">public market&lt;/a> here in Rochester. &lt;a href="http://ilovenyfarms.com/about-us-other-brands">Some folks from Ithaca&lt;/a> show up every week with yummy cream-top milk, so I get two gallons for whatever silly cheese I’m making that weekend.&lt;/p>&lt;p>I don’t have pictures of adding the cultures and the rennet. There’s not much to look at, as the milk just stubbornly continues to look like a pot of boring ol’ milk. But, after bringing the milk up to ninety-seven degrees or so, you sprinkle in a powdered bacterial culture. This one was a buttermilk-ish type of culture. Others are more like yogurt. Their basic function at this point is to produce lactic acid… pH is really important throughout the cheesemaking process. This is intimidating to hobbyist cheesemakers, so most of the intro books completely ignore pH except when absolutely necessary, instead relying mostly on timing and crossed fingers to get things right. It seems to work out, usually, so no worries there (for now).&lt;/p>&lt;p>After the bacteria drops the pH a bit, we add in the rennet. This is the enzyme that actually curdles the milk. Stir it in, and then go relax for a bit. Forty minutes maybe?&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937642122.ba9ef30f.webp 400w, /6937642122.5378ee4f.webp 800w, /6937642122.67bb01df.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937642122.39389432.jpeg 400w, /6937642122.6e053740.jpeg 800w, /6937642122.bef7c19e.jpeg 1600w"> &lt;img src="/6937642122.6e053740.jpeg" alt="Clean Break" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937647336.0f00458c.webp 400w, /6937647336.1c49993e.webp 800w, /6937647336.7c91c320.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937647336.3c08b7b8.jpeg 400w, /6937647336.f7e65bef.jpeg 800w, /6937647336.9d823dec.jpeg 1600w"> &lt;img src="/6937647336.f7e65bef.jpeg" alt="Cutting Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Wash your hands and give the curd a bit of a pokey-scoop with your index finger. If it looks like the picture above, you’ve got a “clean break” and you’re ready to cut your curd. I use a knife that I believe is designed for cutting roasts. It works well enough. Of course there are specialized curd knives… but you could probably even just use a long thin metal frosting spreader.&lt;/p>&lt;p>The goal here was to cut three-eighth inch cubes of curd. Getting your curd sizes even is pretty important (it’s mainly a moisture thing), and I fail at it every time. Things still work out well, but it’s something I definitely have to improve.&lt;/p>&lt;p>After cutting, the curds rest a bit. They are delicate little things at this point, and giving them a break lets them start to firm up before we jiggle them around with our stirring. Failing to do so could result in us bashing precious milkfat out of the curd structure and into the whey. Your whey should be a clear yellowish-green color, and if it’s clouded up, that means you’re guilty of curd abuse. Sinner.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083727149.3ce873d4.webp 400w, /7083727149.7f0e9d0d.webp 800w, /7083727149.7689c762.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083727149.7f13e697.jpeg 400w, /7083727149.c6b8af97.jpeg 800w, /7083727149.d5018c5b.jpeg 1600w"> &lt;img src="/7083727149.c6b8af97.jpeg" alt="Stirring Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Now we can stir! We raise the temperature up &lt;em>vewwwy vewwwy&lt;/em> slowly (half a degree per minute in this case) while stirring with some regularity. Our goal is to expel more and more moisture from inside the curds. Going too fast can result in a “rind” of sorts forming on the curds, which would trap moisture in the interior. No good.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937670152.e8d87597.webp 400w, /6937670152.4f9af775.webp 800w, /6937670152.32e0fec6.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937670152.567f609c.jpeg 400w, /6937670152.c72f913c.jpeg 800w, /6937670152.d644fc44.jpeg 1600w"> &lt;img src="/6937670152.c72f913c.jpeg" alt="Draining Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937674692.8e01d230.webp 400w, /6937674692.4335cf5b.webp 800w, /6937674692.45119e8a.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937674692.f6117468.jpeg 400w, /6937674692.60138faf.jpeg 800w, /6937674692.8e8cada2.jpeg 1600w"> &lt;img src="/6937674692.60138faf.jpeg" alt="Water Bath" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083753687.89871a2a.webp 400w, /7083753687.17453f7d.webp 800w, /7083753687.02ae4076.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083753687.13ea910e.jpeg 400w, /7083753687.0d8948b9.jpeg 800w, /7083753687.7c0e93c4.jpeg 1600w"> &lt;img src="/7083753687.0d8948b9.jpeg" alt="Acidification" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Having heated, stirred, rested, et cetera, we now drain the curd, seperating it from the whey (which we reserve for use as a brine later, though normally I would feed it to my imaginary pigs). It is then put back in the pot and held at 104 degrees or so for hours. The main goal at this stage is acidification, although we’re also expelling more and more water from the curd. In the case of provolone, mozzerella, and other stretched curd cheeses, pH is extra critical, as it is a big factor regarding whether the curd will stretch or not (it also heavily affects meltability).&lt;/p>&lt;p>I failed to document myself fumbling around with the pH meter. It probably took four hours for the curd to drop down to pH 5.2 and thus be ready for the next step.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083758665.10e93a29.webp 400w, /7083758665.77e60828.webp 800w, /7083758665.5c77909d.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083758665.4511ee01.jpeg 400w, /7083758665.b047dab9.jpeg 800w, /7083758665.8cd424fc.jpeg 1600w"> &lt;img src="/7083758665.b047dab9.jpeg" alt="Draining Again" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083775417.76690637.webp 400w, /7083775417.0aa25387.webp 800w, /7083775417.d4a71137.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083775417.3329e4b7.jpeg 400w, /7083775417.2d231b03.jpeg 800w, /7083775417.91ef6793.jpeg 1600w"> &lt;img src="/7083775417.2d231b03.jpeg" alt="Cutting Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Drain your curd. Again. Then cut it up into cubes. We’re now ready to heat these cubes up and mush and stretch and pull them. Unfortunely, in this case, we’re also at the step where I totally failed. Well, not totally. &lt;em>Mostly&lt;/em>.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083792153.06cb040e.webp 400w, /7083792153.89b2fabf.webp 800w, /7083792153.b2569dfd.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083792153.ca156818.jpeg 400w, /7083792153.f2afdf53.jpeg 800w, /7083792153.328866e5.jpeg 1600w"> &lt;img src="/7083792153.f2afdf53.jpeg" alt="Mushing Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937721750.83f6a262.webp 400w, /6937721750.44e0163d.webp 800w, /6937721750.5bd3b57b.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937721750.2dddf4b7.jpeg 400w, /6937721750.031aba71.jpeg 800w, /6937721750.a1c41aae.jpeg 1600w"> &lt;img src="/6937721750.031aba71.jpeg" alt="Stretching Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>The curd cubes go in a bowl, and hot whey or water is poured over them. We need to get the curd up to 170 or 180 degrees. This was my problem, I think. My whey was hot enough, but I don’t think the curd ever got up to the right temperature. I had bits that were stretching well, interspersed with unstretchy bits. At the time I thought my pH was off and I just soldiered on. In hindsight, I should’ve put the whole gloppy mess back on the stove until the curd came up to temperature.&lt;/p>&lt;p>Oh well. I stretched as best I could. You’re supposed to pull it out two or three times like you’re making saltwater taffy (because, you know, everybody has done &lt;em>that&lt;/em>, right?). Meanwhile, you’re wrist-deep in 180 degree whey, and your stupid &lt;em>Good Housekeeping&lt;/em> approved neoprene gloves are not quite as insulative as you had hoped. And you didn’t take off your stupid thermal before starting, so you’re frustrated and hot and you spent nine hours making two pounds of this stupid fail cheese you’re such an idiot…&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937733300.0f89ccd1.webp 400w, /6937733300.a7f315a0.webp 800w, /6937733300.c9319709.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937733300.4bf507fa.jpeg 400w, /6937733300.bc05e3c9.jpeg 800w, /6937733300.86d56c0b.jpeg 1600w"> &lt;img src="/6937733300.bc05e3c9.jpeg" alt="Shaping Curd" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>…&lt;em>aaaand&lt;/em> deep breath. And relax. That doesn’t look so bad now. After streching a few times, you shape it into a ball or two, or a sausage shape, or a “jug” shape, or a gourd shape. Apparently provolone can be whatever the heck shape you want it to be, so that’s exciting. Next time I’ll be sure to make a mobius strip or a &lt;a href="http://en.wikipedia.org/wiki/Klein_bottle">klein bottle&lt;/a>. This time around I made a ball, and a “jug”.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6937738900.922b731c.webp 400w, /6937738900.4fca727b.webp 800w, /6937738900.2b1c2b57.webp 1600w"> &lt;source type="image/jpeg" srcset="/6937738900.f07dd74d.jpeg 400w, /6937738900.ddbbfff7.jpeg 800w, /6937738900.2eabcf2d.jpeg 1600w"> &lt;img src="/6937738900.ddbbfff7.jpeg" alt="A Nice Curdball" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083847309.db5821d4.webp 400w, /7083847309.a0060cad.webp 800w, /7083847309.9d1f3197.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083847309.d0d66d97.jpeg 400w, /7083847309.08a8b393.jpeg 800w, /7083847309.0117266d.jpeg 1600w"> &lt;img src="/7083847309.08a8b393.jpeg" alt="Preserved Specimen" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Because of my aformentioned problems, not only didn’t the curd stretch well, but it also didn’t knit back together so hot. You can see on one side it seems like a smooth and shiny ball, but on the other side—let’s call it “the butt”—it simply wouldn’t gather back up into a smooth surface. I’ve got tons of cracks and crevices in both cheeses because of this. Surely these will cause me mold and cracking issues during aging. I think we’ll eat these as fresh as possible in about three weeks.&lt;/p>&lt;p>The cheese above that looks like a lab specimen is actually floating in an icewater bath. You need to cool down your hot cheese in order to firm it up in whatever dysfunctional shape you’ve massaged it into. After doing so, we make a brine out of the reserved whey and some kosher salt, cool it to cheese cave temperatures (fifty-five degrees), and let the cheeses sit in it for a day.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083857655.0c83d7d3.webp 400w, /7083857655.c2d6a4fe.webp 800w, /7083857655.c417bd6c.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083857655.f3db0080.jpeg 400w, /7083857655.cac6177d.jpeg 800w, /7083857655.fc44c72e.jpeg 1600w"> &lt;img src="/7083857655.cac6177d.jpeg" alt="Brine Dunktank" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7083864657.56931eb4.webp 400w, /7083864657.967bb670.webp 800w, /7083864657.3633b7c6.webp 1600w"> &lt;source type="image/jpeg" srcset="/7083864657.90e7bdd3.jpeg 400w, /7083864657.e655e1e9.jpeg 800w, /7083864657.0c8e89aa.jpeg 1600w"> &lt;img src="/7083864657.e655e1e9.jpeg" alt="24 Hour Nap" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6940001326.039a57e5.webp 400w, /6940001326.7d004be0.webp 800w, /6940001326.58ce16ee.webp 1600w"> &lt;source type="image/jpeg" srcset="/6940001326.3042e486.jpeg 400w, /6940001326.02d1a28c.jpeg 800w, /6940001326.1d3f2b72.jpeg 1600w"> &lt;img src="/6940001326.02d1a28c.jpeg" alt="Hanging Cheeses" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>And finally, twine it somehow, and hang it in a fifty to fifty-five degree fridgecave for three weeks. After that, you can eat it right away or age it for up to a year under more typical fridge temperatures. You can also smoke provolone pretty successfully, but I’ve decided to cut my losses and put no further effort into these particular cheeses. Maybe next time. Just remember you’ll need to &lt;em>cold&lt;/em> smoke them, otherwise you’d end up with a delicious provolone puddle.&lt;/p>&lt;p>So that’s that. Believe it or not, there are more pictures in &lt;a href="http://www.flickr.com/photos/bert_m_b/sets/72157628911833001/">my cheesemaking set on Flickr&lt;/a>, if you’ve not had enough already. And stay tuned for more cheesemaking adventures, because nothing says “summer” like spending the weekend inside, standing over a hot stove. Yay!&lt;/p></content></entry><entry><title>Making Cheese</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2012/03/making-cheese"/><id>https://boucheron.org/brian/2012/03/making-cheese</id><published>2012-03-31T12:44:26.000Z</published><category term="cheese"/><category term="parmesan"/><category term="romano"/><category term="cheddar"/><category term="cheesemaking"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7030390405.1d73cfa7.webp 400w, /7030390405.a8759756.webp 800w, /7030390405.81bfae70.webp 1600w"> &lt;source type="image/jpeg" srcset="/7030390405.ba356520.jpeg 400w, /7030390405.65e5abd2.jpeg 800w, /7030390405.c830afa6.jpeg 1600w"> &lt;img src="/7030390405.65e5abd2.jpeg" alt="Cheese Updates" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>I’ve been making cheese a bit lately, and that’s somewhat interesting I think, so I decided to dust off the ol’ blog and camera for proper documentation and dissemination. You can find more photos of the actual making of these cheeses at my &lt;a href="http://www.flickr.com/photos/bert_m_b/sets/72157628911833001">cheesemaking photoset on Flickr&lt;/a>, and I promise to be more proactive next time I spend a Sunday in the kitchen, stirring curds.&lt;/p>&lt;p>First off, why the heck did I start making cheese at home? Who knows. I like to make things that have to age for years before I can eat or drink them, and I enjoy making foods that involve bacteria, fungi, or yeasts. I’m sure some of my interest was also stimulated by the summer I spent milking goats (check the scrollback for more on that). Any way you slice it, for some reason I bought a book called &lt;a href="http://amzn.to/H8AvWQ">&lt;em>Home Cheesemaking&lt;/em>&lt;/a> by &lt;a href="http://www.cheesemaking.com/">Ricki Carroll&lt;/a>, and I flipped through it really quick, and then it sat in the book pile next to my bed for about a year, slowly creeping its way towards the floor as other books became a higher priority.&lt;/p>&lt;p>I finally dusted it off this January and decided to make cheddar, and thus began three straight weekends of kitchen toil. I bought some rennet and cultures from &lt;a href="http://www.cheesemaking.com/">Ricki Carroll’s site&lt;/a> (this reminds me, I &lt;em>did&lt;/em> try making cheese a few years ago, using grocery store rennet, but it turned out pretty terrible, so I guess I purged it from memory). I then made a special trip to the public market, hoping to get some good milk from the Ithaca dairy guy that usually attends, but alas, he was not there. I was more successful at the &lt;a href="http://www.abundance.coop/">hippy food co-op&lt;/a>, where I believe they carry the very same milk.&lt;/p>&lt;p>That was a Saturday morning. I then spent the rest of the day mentally preparing by reading and rereading the recipe (no, really (I do this a lot)), and gathering the equipment I’d need to perform this feat. The next day was a long day of cleaning the kitchen, cleaning it more, cleaning utensils and pots and pans, and then the precise heating of milk, along with additions of cultures and rennet and lots of waiting for said items to do their magic. I probably spent six or eight hours creating the cheddar. The other cheeses were easier and quicker. Again, next time I’ll document better and give you a bit more of a step by step.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7030417163.9269978a.webp 400w, /7030417163.5145a53f.webp 800w, /7030417163.87ad7ce3.webp 1600w"> &lt;source type="image/jpeg" srcset="/7030417163.6786b16b.jpeg 400w, /7030417163.ae198631.jpeg 800w, /7030417163.48af6e57.jpeg 1600w"> &lt;img src="/7030417163.ae198631.jpeg" alt="The Cheese Cave" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>So that’s the thousand foot overview. The next weekend I made parmesan. And after that, romano. I needed a place to age these. Above, you’ll see my kegerator, which was a free find on craigslist (woohoo!). Since I don’t make beer often enough anymore, the kegerator has turned into a trusty cheeserator (ahem: “cheese cave”), providing roughly the right environment for turning new cheese into old cheese.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7030420739.97f38f02.webp 400w, /7030420739.bf459202.webp 800w, /7030420739.3e62eac1.webp 1600w"> &lt;source type="image/jpeg" srcset="/7030420739.7e3d99c2.jpeg 400w, /7030420739.ad067b40.jpeg 800w, /7030420739.6fe1d783.jpeg 1600w"> &lt;img src="/7030420739.ad067b40.jpeg" alt="The Cheese Cave, Interior" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6884324862.a1a400aa.webp 400w, /6884324862.40f75853.webp 800w, /6884324862.30a4cbbf.webp 1600w"> &lt;source type="image/jpeg" srcset="/6884324862.d2236642.jpeg 400w, /6884324862.cebfbbf5.jpeg 800w, /6884324862.24940c78.jpeg 1600w"> &lt;img src="/6884324862.cebfbbf5.jpeg" alt="The Cheese Cave, Interior" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>With any luck, I’ll need more shelves in there soon, but for a quick retrofit it works pretty well. That’s a cutting board resting on top of some canning jars to keep it out of any moisture that might collect on the floor of the fridge. The thermostat on the fridge didn’t mind going up to fifty-five degrees, so I thankfully didn’t need to go get an external temperature controller ($). The humidity seems to want to be at 75% or so (that’d make a good humidor, I hear), so a pan of water or two does a good job of bringing it up to the 80–85% that I’m looking for. I’ve been running it a little dry lately to keep the mold at bay, but in doing so I’m risking some cracking of the cheeses.&lt;/p>&lt;p>Some day I’ll wire up a hygrometer and humidifier with some overengineered elctronics for more precise control over this particular variable. In the meantime, I’ll reflect upon some frequent advice from the homebrewing world: “relax, don’t worry, and have a homebrew”. I’m sure it’ll all work out.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7030365459.bf51bd3a.webp 400w, /7030365459.acc683b0.webp 800w, /7030365459.b6c245d9.webp 1600w"> &lt;source type="image/jpeg" srcset="/7030365459.156842c6.jpeg 400w, /7030365459.6c231017.jpeg 800w, /7030365459.c4137c86.jpeg 1600w"> &lt;img src="/7030365459.6c231017.jpeg" alt="Cheese Updates" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>This is the parmesan, cheese #2. It’s about one and a half pounds, and two months old. In a few weeks, I’ll probably rub it with olive oil to keep the rind from cracking, or I might bag it up and vacuum seal it. I haven’t decided yet. I do like the idea of natural rinds, full of texture and mold and “character”.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/7030380279.32ac0603.webp 400w, /7030380279.a0bbeea0.webp 800w, /7030380279.5ea357ee.webp 1600w"> &lt;source type="image/jpeg" srcset="/7030380279.cd0108ef.jpeg 400w, /7030380279.6c780836.jpeg 800w, /7030380279.f1324fd6.jpeg 1600w"> &lt;img src="/7030380279.6c780836.jpeg" alt="Cheese Updates" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6884298954.3cd09a6a.webp 400w, /6884298954.87d93943.webp 800w, /6884298954.3b76af64.webp 1600w"> &lt;source type="image/jpeg" srcset="/6884298954.2712b404.jpeg 400w, /6884298954.21d3a21e.jpeg 800w, /6884298954.80268190.jpeg 1600w"> &lt;img src="/6884298954.21d3a21e.jpeg" alt="Cheese Updates" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>Romano! It had a bit more yield than the parmesan, probably two pounds. Of course it’s also softer/wetter, so I’m sure most of that is water weight. It’s drying and aging nicely. I could probably slice it up and eat it soft in a few months, but I’m planning to dry it right out for a nice grating cheese.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/6884286378.26d72f2c.webp 400w, /6884286378.4f31f947.webp 800w, /6884286378.153e02f8.webp 1600w"> &lt;source type="image/jpeg" srcset="/6884286378.4a89a608.jpeg 400w, /6884286378.75f8089f.jpeg 800w, /6884286378.74647bc7.jpeg 1600w"> &lt;img src="/6884286378.75f8089f.jpeg" alt="Cheese Updates" width="800" height="533"> &lt;/picture> &lt;/p>&lt;p>And here’s the first cheese I made… good ol’ cheddar (obviously this one has been waxed, next time I may try a natural rind of some sort). There are many ways to take shortcuts making cheddar. They all involve trying to avoid the two or three hour process of cheddaring, which basically consists of holding slabs of curd at a specific temperature while they expel whey and acidify. The curds require some tending during the process, so it definitely made for a long day in the kitchen. But, I wanted to try the “real” way at least once.&lt;/p>&lt;p>So now I continue to wait for these cheeses to age. They’ll all be tasty around a year from now, but I might slip up and sample them a bit earlier. I guess that depends on if I get down to making some fresher, less aged cheeses to tide me over in the meantime. For obvious reasons, I’ve been searching around for a good &lt;a href="http://en.wikipedia.org/wiki/Bucheron">bucheron&lt;/a> cheese recipe for a while now. Bucheron is a ripened goat cheese. Basically a chevre with a bloomy (white mold) rind that you age for four weeks or so. It’s really really tasty (I’m so glad my namesake cheese is so yummy!). I finally found a recipe for it in the second cheese book I bought, &lt;a href="http://amzn.to/HACpt9">&lt;em>Artisan Cheesemaking at Home&lt;/em>&lt;/a>. There’s actually lots of neat and creative recipes in there… cheeses you’ll not be finding in the grocery store any time soon, so stay tuned for updates on those (and if you’re in Rochester, or on my Christmas list, maybe you’ll even get to taste some)!&lt;/p></content></entry><entry><title>Transitional Species</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/08/transitional-species"/><id>https://boucheron.org/brian/2008/08/transitional-species</id><published>2008-08-31T12:00:06.000Z</published><category term="birthday"/><category term="farm"/><category term="life"/><category term="photo"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2704218284.61e0edab.webp 400w, /2704218284.cc149155.webp 800w, /2704218284.6aadaad6.webp 1600w"> &lt;source type="image/jpeg" srcset="/2704218284.6cb3901f.jpeg 400w, /2704218284.e4dfe6ff.jpeg 800w, /2704218284.2371d3b0.jpeg 1600w"> &lt;img src="/2704218284.70166b7c.jpeg" alt="Guinea Fowl, Two Weeks" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Well. I find myself missing the above pictured critters, as well as the goats, oxen, yaks, and farm folk. I left the farm mid-August, in order to get home and take care of some pressing matters. I guess things were getting pretty routine by that point anyway, and it made me itch to get home and start doing something… finding some land, developing some freelance work, learning some newly-important life skills, working on some different farms. I’m not sure what I’ll have to blabber about on the blog now, but you should be warned that some of it will probably be 1000% more nerdy than before. We’ll see.&lt;/p>&lt;p>Right after I got home, Rachel and I zipped off to Maine to laze about for a week at her parents’ place. That certainly delayed my settling-in phase here in Rochester, but made for a great transition between two very different worlds. I still get up fairly early, but I am creeping later and later each day, and I stay up too late. I’ll have to work on that, as I enjoy getting up at six and having the quiet morning to myself. Also, it is odd to have too much free time and too little hard labor. I’ve contacted some local farms and hopefully will find a place I can visit and work at between my job and freelance and other pursuits… the garden just doesn’t cut it.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2810083764.16284c54.webp 400w, /2810083764.44aeff57.webp 800w, /2810083764.d778c918.webp 1600w"> &lt;source type="image/jpeg" srcset="/2810083764.982d964a.jpeg 400w, /2810083764.4bf0b732.jpeg 800w, /2810083764.f9956be5.jpeg 1600w"> &lt;img src="/2810083764.7bb1533f.jpeg" alt="Birthday Cake Fire" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We happened to be in Maine on my birthday, and Rachel &amp;#x26; her sister made me a yummy farm-themed cake. They managed to cover all the important animals from the farm, except the yaks. There was even a team of appropriately colored oxen, munching on the coconut and frosting “grass”. I managed to milk the birthday event for almost a full week… eating too much, drinking vast quantities of yummy beer, and lazing about reading books and taking naps. Whee!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2809268799.8d261eb0.webp 400w, /2809268799.cf15a365.webp 800w, /2809268799.39e39e62.webp 1600w"> &lt;source type="image/jpeg" srcset="/2809268799.07310bd8.jpeg 400w, /2809268799.f6a6c54e.jpeg 800w, /2809268799.f0a20ea0.jpeg 1600w"> &lt;img src="/2809268799.fafabe0f.jpeg" alt="Birthday Brace Balloon" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>But now it’s back to reality-land. First on the to-do list was to set up an office here at Rachel’s place, which I guess is now “our place”. Having done that I am now ready to dive into some freelance work, and have indeed already talked to the bike shop and started some materials for next year’s Tour de New York (the first, I suppose). Soon I will return to my prior job part-time as well, and also try to work in some internships, with any luck. So maybe there will soon be more variety here, instead of all these tiresome pictures of farm animals! Who knows!&lt;/p></content></entry><entry><title>Garlic Harvest</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/07/garlic-harvest"/><id>https://boucheron.org/brian/2008/07/garlic-harvest</id><published>2008-07-17T20:45:21.000Z</published><category term="chicks"/><category term="farm"/><category term="Guinea"/><category term="Fowl"/><category term="Rachel"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2675697716.b27a13b7.webp 400w, /2675697716.a0ac1f6c.webp 800w, /2675697716.9ac595d6.webp 1600w"> &lt;source type="image/jpeg" srcset="/2675697716.adeaf50b.jpeg 400w, /2675697716.eb649290.jpeg 800w, /2675697716.092e62e8.jpeg 1600w"> &lt;img src="/2675697716.7443d49a.jpeg" alt="Visitor, From Another Planet" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I had visitors last weekend. Somehow only one of them managed to get photographed. Rachel drove to Rome, and hitched a ride the rest of the way with my parents, who were on their way to Vermont to meet up with other Volkswagen Bus weirdos. So they got in fairly early on Friday, and we put her to work rather quickly after the folks left. For some reason we were a little behind in the harvest. Oh yeah… because a goat had a broken leg and there were vet visits and such to worry about. So Rachel and I harvested together whilst everybody else was off at the vet. We bunched up kale, beets, carrots, and lots of herbs. Probably some other stuff I’ve forgotten about as well. (Oh yeah! Two kinds of cucumbers and three squashies.)&lt;/p>&lt;p>So, it was nice to see her, and even though we couldn’t manage to chit-chat while harvesting and counting bunches and such, it was a nice plump weekend of activities. Too much walking to town and back though… I was getting more tired on my days off than during the week.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2674880635.62fe0021.webp 400w, /2674880635.f3725c3f.webp 800w, /2674880635.62f833a4.webp 1600w"> &lt;source type="image/jpeg" srcset="/2674880635.49360a25.jpeg 400w, /2674880635.6186931a.jpeg 800w, /2674880635.563f79d2.jpeg 1600w"> &lt;img src="/2674880635.fde61915.jpeg" alt="Shelburne Falls Potholes" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We took a short ride to Shelburne Falls, and wandered around there like touristy folk. There is a bridge of flowers that we walked along, with Rachel telling me what they all were and me forgetting them promptly. It was quite lovely, and I managed to take zero pictures. We got a frozen hot chocolate at a cafe, and it was delicious and not at all like a chocolate milkshake thank you.&lt;/p>&lt;p>The parents came back Sunday evening, and we went out to dinner at a local bar, of which I didn’t get the impression of “fine eatery”… but it was really quite good. I made everybody eat some mussels. And the desserts were fantastic looking, so we were all fatty-fats and pigged out. Then we came back and drank some beer and played pitch.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2674899563.a81b7883.webp 400w, /2674899563.9cb7a042.webp 800w, /2674899563.963504ec.webp 1600w"> &lt;source type="image/jpeg" srcset="/2674899563.06fecbe3.jpeg 400w, /2674899563.8a9baa99.jpeg 800w, /2674899563.88c39ba9.jpeg 1600w"> &lt;img src="/2674899563.6c0c4bdd.jpeg" alt="Garlic Buggie" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>And then, everybody left me on Monday. Poo. Then it was back to the same old. Wednesday was a little different though… we harvested all the garlic. Not sure how much, we never did end up counting bulbs. It was about fifty pounds of seed garlic though. So we pulled it all up, laid it out, filled up a cart, dragged it to the barn, bunched it up, and hung it on strings. It was kindof my first blister-causing activity. My hands are a mess, which made it hard to weed and trellis tomatoes today.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2674902803.2373ebfc.webp 400w, /2674902803.164802f4.webp 800w, /2674902803.e117ecfd.webp 1600w"> &lt;source type="image/jpeg" srcset="/2674902803.1956e9fa.jpeg 400w, /2674902803.9c746b71.jpeg 800w, /2674902803.b8b46e10.jpeg 1600w"> &lt;img src="/2674902803.67e990b9.jpeg" alt="Garlic Pile" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2675731830.3b058159.webp 400w, /2675731830.5e73a42c.webp 800w, /2675731830.3ca192f7.webp 1600w"> &lt;source type="image/jpeg" srcset="/2675731830.5a1a08c2.jpeg 400w, /2675731830.58517c4d.jpeg 800w, /2675731830.a5d3de9e.jpeg 1600w"> &lt;img src="/2675731830.855f24db.jpeg" alt="Garlic Harvest" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>It smells rather delicious walking through the barn now… and of course I’m making some hilarious vampire jokes.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2674908369.c11ec2ae.webp 400w, /2674908369.a7c614c9.webp 800w, /2674908369.33c0c493.webp 1600w"> &lt;source type="image/jpeg" srcset="/2674908369.540c6c20.jpeg 400w, /2674908369.c87beb94.jpeg 800w, /2674908369.b9951831.jpeg 1600w"> &lt;img src="/2674908369.25cd296f.jpeg" alt="Guinea Fowl, One Week" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>The wee Guinea Fowl are one week closer to ugliness. Look at that elongating neck! They’ve been moved inside with their surrogate mother. Now they reside in an old playpen, and thankfully still make only cute chick sounds. I anticipate they’ll be out and about before they learn how to be more obnoxious. I wonder, will they act somewhat more chickenish then the other Guineas? Will they all get along? Probably not… they’re known for finding at least one of their own to pick on and excommunicate. Heartless poultry. I think I shall eat one of you after all.&lt;/p></content></entry><entry><title>Baby Noisemakers</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/07/baby-noisemakers"/><id>https://boucheron.org/brian/2008/07/baby-noisemakers</id><published>2008-07-09T21:36:10.000Z</published><category term="chicks"/><category term="farm"/><category term="Guinea"/><category term="Fowl"/><content type="html">&lt;p>Spring is long gone, yet we have some new babies on the farm, as of yesterday. We’ve had some guinea fowl eggs stuck underneath a broody hen (chicken) for what seems like months now (probably four weeks really)… so I decided to poke around underneath her and see if there was any activity. There was!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2650836611.008f1880.webp 400w, /2650836611.8550a1a2.webp 800w, /2650836611.13595aa5.webp 1600w"> &lt;source type="image/jpeg" srcset="/2650836611.70a246a5.jpeg 400w, /2650836611.89776454.jpeg 800w, /2650836611.bb55fb08.jpeg 1600w"> &lt;img src="/2650836611.55524a8f.jpeg" alt="Guinea Hatch" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>As you may be able to see, I discovered a guinea chick peeping around underneath the hen. Broody Hen (that’s what we’ve taken to calling her) quickly got used to everybody poking around underneath her to get a look, and now doesn’t even peck at you as you root around under her warm blobby broody body. The chicks are up and about today, pecking at some mash and getting wee baby drinks of water.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2653365479.120dd4ac.webp 400w, /2653365479.e4a0b0d8.webp 800w, /2653365479.a251b88e.webp 1600w"> &lt;source type="image/jpeg" srcset="/2653365479.ed653922.jpeg 400w, /2653365479.fa205464.jpeg 800w, /2653365479.8ab9a350.jpeg 1600w"> &lt;img src="/2653365479.273a6e35.jpeg" alt="Guinea Daylings" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2654191132.458ec7d1.webp 400w, /2654191132.e22e36f3.webp 800w, /2654191132.a7e82ddb.webp 1600w"> &lt;source type="image/jpeg" srcset="/2654191132.6068c8c9.jpeg 400w, /2654191132.bd4baa57.jpeg 800w, /2654191132.345a1b31.jpeg 1600w"> &lt;img src="/2654191132.4e68043b.jpeg" alt="Guinea Daylings" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>So that’s what passes for excitement around here. Entertainment, really. I realize I may have spoken poorly of the guineas in the past, but they’ve really grown on me this summer. They eat a lot of ticks, and don’t eat the vegetables in the garden. They run much faster and more elegantly than the fat chickens, have some level of personality (mostly “stupid”), and roam far and wide on the property, often stopping traffic in the road and exploring the neighbor’s yards. Plus, they can actually fly a little bit, yet choose to stick around and roost in our half-dead apple tree. How sweet. So in summary, I’m happy we’re growing up two more, and I hope they make it and I probably wont even try to slaughter them and bring them back to Rochester in freezer bags.&lt;/p>&lt;p>In other news, we’re catching up with our weeding, sortof. It was a long day in the tomato patch today, and my grab, twist, and pull muscles are tired. I reserved enough strength to do the evening milking, and now I get a rest. I suspect tomorrow will involve some weeding of the melon beds. And the winter squash. And the corn. And the pumpkins. Blah. It is rather hot and humid here, and today I considered becoming one of those people who complains about the weather (a retiree?)… but, anything under ninety and I refuse to change out of my work pants and into shorts… so no bellyaching. There was a nice breeze today, but apparently not at ground level. The trees whooshed and swooshed, yet there was stillness down in the weeds. Hot days make me wear sunscreen. Obviously that’s stupid, as the quantity of solar radiation apparently has no bearing on my application, just warmth. I guess it correlates pretty well. I’m rather tanned, but still feel I could get pinky after a long day in the sun.&lt;/p>&lt;p>I’m babbling. It is time to shut in the chickens and chicks, and then head to bed. Much visitor preparation is needed tomorrow, along with weeding and laundry and on and on.&lt;/p></content></entry><entry><title>Status Report</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/07/status-report"/><id>https://boucheron.org/brian/2008/07/status-report</id><published>2008-07-06T22:01:58.000Z</published><category term="farm"/><category term="permaculture"/><category term="photo"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643895200.a998e1da.webp 400w, /2643895200.f7205b77.webp 800w, /2643895200.b76332f7.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643895200.b3716467.jpeg 400w, /2643895200.d0d6fa51.jpeg 800w, /2643895200.c6316088.jpeg 1600w"> &lt;img src="/2643895200.f6b95f67.jpeg" alt="Misty Night" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I suppose a little bit has happened since our last chat. There have been a lot of harvests, a lot of markets, and a lot of weeding. Blech. We’ve finally moved on from just greens, with some beets and carrots and squash now showing up on our market tables. That feels nice. I’m not sick of salads, but will enjoy the added variety nonetheless.&lt;/p>&lt;p>We’ve also blown through all of our garlic scapes in the past few weeks. What a lovely product. Waste product is more like it, as we would cut them off even if nobody were willing to buy them. But people do, and as they should because it’s quite the nice delicate garlic taste right when everybody’s garlic braids are running out from the previous season. Soon we will start harvesting fresh garlic for the CSA, and then I’ll get to see how we harvest and dry the rest, and perhaps even try my hand at making some braids.&lt;/p>&lt;p>I had visitors, many weeks ago. My parents came out for a few days in their Vanagon… and they dragged Rachel along for the ride. In fact, they will be doing the very same thing next weekend on their way to Vermont for some crazy Volkswagen meet-up they seem to be attending yearly.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2586001266.2ecb29b3.webp 400w, /2586001266.219399a9.webp 800w, /2586001266.49890303.webp 1600w"> &lt;source type="image/jpeg" srcset="/2586001266.0c351b38.jpeg 400w, /2586001266.f35a2dca.jpeg 800w, /2586001266.e396b7e0.jpeg 1600w"> &lt;img src="/2586001266.4a67ae4f.jpeg" alt="Grain Mill" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2585207649.641253a9.webp 400w, /2585207649.3702b798.webp 800w, /2585207649.63f44e0a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2585207649.23248c84.jpeg 400w, /2585207649.bc5780c8.jpeg 800w, /2585207649.bc90fb61.jpeg 1600w"> &lt;img src="/2585207649.e47c935c.jpeg" alt="Stout Fermentation" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2586089082.087684fc.webp 400w, /2586089082.f8f17f10.webp 800w, /2586089082.1d4d6007.webp 1600w"> &lt;source type="image/jpeg" srcset="/2586089082.f4c9a28d.jpeg 400w, /2586089082.54669aca.jpeg 800w, /2586089082.0ab67920.jpeg 1600w"> &lt;img src="/2586089082.c28ded8d.jpeg" alt="Bottling" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We went on a tour of the &lt;a href="https://www.berkshire-brewing.com">Berkshire Brewing Company&lt;/a> while they were in town. It was quite the nice tour, with an ample amount of free tastings and an entertaining tour guide… rather in depth and fun.&lt;/p>&lt;p>I think the folks had a good time here at the farm. They brought plenty of beer and crackers and cheese and Rachel and I helped them consume it whilst playing Pitch around the wee table in their camper. Mom hopefully got enough pampering in, bringing fixings for dinner and breakfast and also some cookies and the like.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2587848450.94a14535.webp 400w, /2587848450.c43e450b.webp 800w, /2587848450.42cd370e.webp 1600w"> &lt;source type="image/jpeg" srcset="/2587848450.ed4671e0.jpeg 400w, /2587848450.13c7f423.jpeg 800w, /2587848450.161cbba7.jpeg 1600w"> &lt;img src="/2587848450.4a28587f.jpeg" alt="Experimental Casks" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2585959648.879d0140.webp 400w, /2585959648.1eeec965.webp 800w, /2585959648.a3954902.webp 1600w"> &lt;source type="image/jpeg" srcset="/2585959648.80da7e50.jpeg 400w, /2585959648.dbc0f39f.jpeg 800w, /2585959648.7346987a.jpeg 1600w"> &lt;img src="/2585959648.6dfc702a.jpeg" alt="Tasting Room" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We also went out to a flea market, which was not quite a bust, but close. We showed up late due to poor directions, and it was a semi-cloudy-rainy day anyways, so people were packing up and heading home. I got a good camera tripod though, so that’s good. And afterwards there happened to be a good brewpub on the way home, so we stopped there for a late lunch. You can perhaps see a theme developing here.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643073087.a114da30.webp 400w, /2643073087.939ee83d.webp 800w, /2643073087.2cd96890.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643073087.ef14fe0d.jpeg 400w, /2643073087.29a99b4a.jpeg 800w, /2643073087.5b9f1e0d.jpeg 1600w"> &lt;img src="/2643073087.eb0c8dd7.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643101969.757a3632.webp 400w, /2643101969.cec2cfab.webp 800w, /2643101969.9f05a2b5.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643101969.748a8ad0.jpeg 400w, /2643101969.74a6a2b1.jpeg 800w, /2643101969.8c28c257.jpeg 1600w"> &lt;img src="/2643101969.ece6270d.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643965964.aebf0a5e.webp 400w, /2643965964.a9d49ec3.webp 800w, /2643965964.d4f08e23.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643965964.ddb300dc.jpeg 400w, /2643965964.61c1e08d.jpeg 800w, /2643965964.4ff06e45.jpeg 1600w"> &lt;img src="/2643965964.23db4b5a.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643951042.d63a8be6.webp 400w, /2643951042.5f5250b8.webp 800w, /2643951042.73dfd347.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643951042.7c6f6d3f.jpeg 400w, /2643951042.85d8f954.jpeg 800w, /2643951042.1f77f944.jpeg 1600w"> &lt;img src="/2643951042.1a76dcce.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>This past weekend I went to the Northeastern Permaculture Convergence in Holyoke. I haven’t got the brain capacity right now to explain what permaculture is… perhaps someday. But it’s somewhat involved in designing agricultural systems, if you will. Anyways, it was an interesting weekend, and I’m still processing things in my head. I met Dave from Rochester there, who has &lt;a href="http://www.greenerminds.com/">a blog&lt;/a> I’ve been reading for a while now. So that made it pretty worthwhile. We didn’t talk a ton, but he seemed great and will no doubt be a valuable resource upon my return. He has some connections within organizations I’m interested in, and also is tinkering with his own permaculture garden/yard which I hope to view someday.&lt;/p>&lt;p>I guess there were around 100 other people at the convergence. I didn’t talk to many of them. I’m antisocial, and suck at events such as this. But I did meet a lot of nice folks, and picked a few brains. Mainly I enjoyed touring some farms, gardens, and nurseries. Of course I didn’t write down the scores of cool plants I saw, but I feel like I’m not at that stage yet, and have the names of some books to obtain that should point out the highlights at least.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643162131.555189a7.webp 400w, /2643162131.c2e259ef.webp 800w, /2643162131.1129c080.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643162131.88b9091b.jpeg 400w, /2643162131.6f58eee1.jpeg 800w, /2643162131.8216893b.jpeg 1600w"> &lt;img src="/2643162131.e17df29d.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2644004548.902ff135.webp 400w, /2644004548.0458d29f.webp 800w, /2644004548.e56583f8.webp 1600w"> &lt;source type="image/jpeg" srcset="/2644004548.1c32aab9.jpeg 400w, /2644004548.828b5c7e.jpeg 800w, /2644004548.ee9f8b69.jpeg 1600w"> &lt;img src="/2644004548.b527a5d6.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2643180909.d81f9b39.webp 400w, /2643180909.29a39e73.webp 800w, /2643180909.b3d8f2be.webp 1600w"> &lt;source type="image/jpeg" srcset="/2643180909.7ef13b9f.jpeg 400w, /2643180909.0bb9b2e3.jpeg 800w, /2643180909.cfc26247.jpeg 1600w"> &lt;img src="/2643180909.199eac41.jpeg" alt="Northeastern Permaculture Convergence, Summer 2008" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>So, it feels good to be back at the farm. Things were a little weird when I got back, with the oxen getting out of their pasture once again, apparently a problem all weekend. That’s pretty frustrating. And there are many animals that need moving in the morning, which I don’t entirely look forward to. But. Being away made me appreciate many more things about this place, so I shall not complain.&lt;/p></content></entry><entry><title>Misty Morning</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/06/misty-morning"/><id>https://boucheron.org/brian/2008/06/misty-morning</id><published>2008-06-08T20:28:42.000Z</published><category term="bear"/><category term="farm"/><category term="Guinea"/><category term="Fowl"/><category term="morning"/><category term="photo"/><category term="sunrise"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2562453316.5104908d.webp 400w, /2562453316.0f4256e5.webp 800w, /2562453316.3d416c9a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2562453316.0b493646.jpeg 400w, /2562453316.8794e10c.jpeg 800w, /2562453316.31d1610e.jpeg 1600w"> &lt;img src="/2562453316.496423c5.jpeg" alt="Good Morning Farm" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>It has been rather warm and moist here lately. I woke up today (Sunday, my “day off”) at around five, with the sun peeking in the hayloft doors (which are now permanently open to ventilate the goat butt barn scent). I’m not sure what compelled me to bound out of bed and take pictures. Perhaps my lack of doing so for the past two weeks. Or perhaps because the sun had a particular hazy, diffuse quality that I knew would be gone pretty quickly.&lt;/p>&lt;p>So off I went. It was my first t-shirt-only morning… plus muck boots, dress pants, suspenders, and my camera bag. I guess I got some ok shots.&lt;/p>&lt;p>Anyways, the point of all this was that it is rather pretty here, I’ve found. Yesterday after the market I took some detours on my bike ride back. Various dirt roads deep into dark dark woods smelling slightly acidic and decayed. Some were shortcuts between more civilized roads. Some went beyond my means of locomotion, with steep descents that I didn’t feel like tackling in the opposite direction.&lt;/p>&lt;p>There were lots of hills.&lt;/p>&lt;p>It was all quiet and beautiful, with woods and cows and barns and fields and streams and gardens and an old round brick schoolhouse and a beehive on somebody’s porch roof (bearproofing, I suppose) and hills and valleys and misty bits and clotheslines and nice views and nice smells. I will have to do more exploring, at more photogenic times of day and with my camera on board.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2561639437.d618284f.webp 400w, /2561639437.31cc68cd.webp 800w, /2561639437.efadcc05.webp 1600w"> &lt;source type="image/jpeg" srcset="/2561639437.ea17bd30.jpeg 400w, /2561639437.0919840e.jpeg 800w, /2561639437.6e26067e.jpeg 1600w"> &lt;img src="/2561639437.91d34469.jpeg" alt="Good Morning Farm" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>All this mist and haze is, unfortunately, because it is durn hot here. Only low nineties really, but it doesn’t feel nice. We went from steady rain and a flood warning Thursday night and Friday morning (when I got soaked through my “rain suit” while moving the sheep) to the nineties on Saturday, and through the next few days it seems. Last night was quite interesting, clear skies overhead and clouds with silent lightning off in the distance (I guess you may call it heat lightning, but it’s really just a normal storm you can’t hear due to distance or refraction of sound waves (says &lt;a href="http://en.wikipedia.org/wiki/Heat_lightning">the internets&lt;/a>), so let us just call it lightning, ok?).&lt;/p>&lt;p>In wildlife news, I saw a black bear a few nights ago, with two cubs close behind. They were basically at the tree line you can see in the pictures above… which is rather too close to where we have the boy sheep currently. They freaked out a bit. Doggie inspection revealed no bears in the woods shortly after I spotted them, so maybe they were just passing through for a dip in the stream (something that has crossed my mind recently).&lt;/p>&lt;p>Derek found the guinea hen’s nest, with something like twenty eggs piled up in there. A few were placed underneath the broody chicken hen in the coop, so we’ll see if anything hatches. I guess most people will remove the eggs and store them until the hen is ready to sit for a while… because they don’t start sitting until they’ve got them all out. I guess that makes sense. I’ve taken to liking the guineas, even though they’re obnoxiously loud. They don’t eat the crops and keep me from getting ticks. They can stay for now.&lt;/p></content></entry><entry><title>First Market</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/05/first-market"/><id>https://boucheron.org/brian/2008/05/first-market</id><published>2008-05-26T21:51:36.000Z</published><category term="farm"/><category term="harvest"/><category term="market"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519267024.d6403013.webp 400w, /2519267024.6d2a1e96.webp 800w, /2519267024.a9f666f2.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519267024.312505ae.jpeg 400w, /2519267024.1ce07700.jpeg 800w, /2519267024.5e5fb002.jpeg 1600w"> &lt;img src="/2519267024.166ca267.jpeg" alt="Harvest" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Last Friday was our first harvest day, in preparation for the Ashfield Farmer’s Market Saturday morning. It was pretty exciting to finally be able to snip some edible bits off of some of the plants we’ve been staring at for more than a month now. We mostly had salad mix and spinach from the beds in the greenhouse. I remember preparing some of those beds my first weekend here, back in April. It feels like everything is growing sooooo slooooowly, but I think I just have unrealistic expectations. It sure is nice though, to sit up in the barn loft and look at the fields, with rows upon rows of thin green lines (some red and purple)… I can’t wait until they’re all thick green lines.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519274634.845b0391.webp 400w, /2519274634.05d85f1c.webp 800w, /2519274634.83d83212.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519274634.a7f77888.jpeg 400w, /2519274634.8d73a475.jpeg 800w, /2519274634.d45e9603.jpeg 1600w"> &lt;img src="/2519274634.7bbbb659.jpeg" alt="Trimmings" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519271560.dd839297.webp 400w, /2519271560.f7caaa91.webp 800w, /2519271560.12654625.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519271560.27949f31.jpeg 400w, /2519271560.28f608c3.jpeg 800w, /2519271560.7e93e46b.jpeg 1600w"> &lt;img src="/2519271560.57323c1d.jpeg" alt="Harvest" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We also pulled up some onions that had overwintered in the field across the road. Their existence wasn’t really intentional: it was a bed that had been lost to weeds last year and mowed down to nothing before winter. But they came back, and upon pulling them up they had some nice white bulbs attached. So we made up about 35 bunches of those, which involved cleaning off the gunky layers, snipping the roots, bunching them up, and washing them off in a bucket. A lot of labor, but worth it because nobody else had fresh onions at the market. Rounding out the selection was bunches of chives, a few bunches of tarragon, and that’s it. All of this was packed up and ready for the CSA members to pick up at the market. We don’t divvy things out into boxes and drop them off anywhere, instead our members get a canvas bag with a pretty Sangha Farm logo on it, and they just come to the market and fill it up. It certainly makes things easier on us, and I think is good for the customer, as they can pick and choose only the things they want (although there is something to be said for being forced to try the new fruits and vegetables you find in your CSA share).&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2518464003.375b747f.webp 400w, /2518464003.44f2a666.webp 800w, /2518464003.20e1f4be.webp 1600w"> &lt;source type="image/jpeg" srcset="/2518464003.c063f032.jpeg 400w, /2518464003.62ba3ded.jpeg 800w, /2518464003.17742953.jpeg 1600w"> &lt;img src="/2518464003.2570906f.jpeg" alt="Packing Up" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2518473585.c4168d62.webp 400w, /2518473585.fb4db4c4.webp 800w, /2518473585.0faf0589.webp 1600w"> &lt;source type="image/jpeg" srcset="/2518473585.418aa0d5.jpeg 400w, /2518473585.c4285084.jpeg 800w, /2518473585.cde87968.jpeg 1600w"> &lt;img src="/2518473585.de6ab9f8.jpeg" alt="Setting Up" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519161331.1f0aefca.webp 400w, /2519161331.564480aa.webp 800w, /2519161331.8972029c.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519161331.3a644fc8.jpeg 400w, /2519161331.ebf9796b.jpeg 800w, /2519161331.3abb184f.jpeg 1600w"> &lt;img src="/2519161331.ebf9796b.jpeg" alt="Ashfield Farmer's Market" width="800" height="188"> &lt;/picture> &lt;/p>&lt;p>In addition to our meager selection of produce, we had a ton of vegetable starts to bring to the market. The van was quite full, with multiple tiers of precariously stacked flats of delicate plants. Luckily the market is only about one mile away. We got there at seven and were just finishing setup by eight thirty when the market opens. As of right now us interns don’t really have to work the market, so after hanging around and helping out a little bit, I wandered off and sat under a tree to write letters. It was a beautiful day, and tons of people came out. The market is much smaller than Rochester’s main public market, and much more social. In the center of all the tents was a constant four hour meeting of neighbors and friends (and dogs). A man in a bowler hat and bow tie came and played cello for a bit. Another man brought two tiny donkeys and walked them around while being followed by eager donkey-petters (they were amazingly soft (the donkeys)).&lt;/p>&lt;p>After writing letters for a while, I wandered to the post office and the hardware store, and got back in time to see the ice cream truck pull up in front of the town green where the market is held. It’s an old converted school bus, out of which is served locally made organic ice cream. Of course I had to sample some, and indeed the butter pecan was quite delicious.&lt;/p>&lt;p>Ooh! I forgot about the cheese. We finally got our license to make and sell cheese. What an amazingly bureaucratic process that is. I’m sure I didn’t even really hear about half of it, but from what I did hear it’s no wonder there are very few small-time dairies around.&lt;/p>&lt;p>But, we made it through all the hoops, and Maribeth cranked out as much cheese as possible before the market. She had a sample tray all set up and received many complements and sold out of everything she made. That means there will be two more does joining us, and the two does with kids still nursing will be separated at night so we can steal the morning milk at least. More milk! Unfamiliar teats! Yikes!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519301840.13637640.webp 400w, /2519301840.71e7b5fd.webp 800w, /2519301840.1cb3a034.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519301840.c9eb7f40.jpeg 400w, /2519301840.00264594.jpeg 800w, /2519301840.32307a34.jpeg 1600w"> &lt;img src="/2519301840.7df24236.jpeg" alt="Wee Donkey" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2519296788.4626d188.webp 400w, /2519296788.410a8f22.webp 800w, /2519296788.a36560fc.webp 1600w"> &lt;source type="image/jpeg" srcset="/2519296788.53b4bcae.jpeg 400w, /2519296788.6f3baed4.jpeg 800w, /2519296788.7f9ba7f0.jpeg 1600w"> &lt;img src="/2519296788.79037247.jpeg" alt="Town Hall" width="800" height="532"> &lt;/picture> &lt;/p></content></entry><entry><title>Visitor From Another World</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/05/visitor-from-another-world"/><id>https://boucheron.org/brian/2008/05/visitor-from-another-world</id><published>2008-05-21T22:03:28.000Z</published><category term="farm"/><category term="llama"/><category term="photo"/><content type="html">&lt;p>Ack! It’s already Wednesday night and I haven’t written about last week or this past weekend even! Even now, at nine o’clock, I feel bad because my typing is probably keeping Adam up, and really I would enjoy sleeping very much. We’ve shifted our schedule around, so now I’m getting up at five thirty, eating breakfast and attempting to slowly start the day, and then out and working by seven. I guess that’s not crazy early. It feels it though, especially when you have to milk in the evening and aren’t really done working until eight thirty. I’ve taken to making lunch a quick sandwich, so that I can sneak off and catch a little nap before we get back to work.&lt;/p>&lt;p>We’ve been planting like mad for the past week, and all of this week. Onions onions onions leeks cabbage cabbage cabbage broccoli and other stuff I readily forget. We had a little frost scare a few nights ago, but it never materialized. The only vulnerable thing in the fields was the zucchini, so those got covered up for the night.&lt;/p>&lt;p>Most of the things we’re planting were started in the greenhouse last month. Radishes, beets, carrots, lettuce mixes, and a few other things are all that have been directly sown. The seeder is a mildly amusing little device that is filled with seed and run down the beds as its wheels churn and it digs a trench, meters out seed, fills the trench, and tamps it down. All of the rows I’ve done are far from straight. Nobody else does much better, actually. The only reason it matters is that it stinks when a hoe wont fit between the two rows due to somebody’s sloppy driving.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2512786212.4bdf903a.webp 400w, /2512786212.5cf67ca5.webp 800w, /2512786212.519c116a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2512786212.fc9102d5.jpeg 400w, /2512786212.a1e0d795.jpeg 800w, /2512786212.29208d67.jpeg 1600w"> &lt;img src="/2512786212.7839b6b6.jpeg" alt="Visitor from Planet Rochester" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I had a visitor last weekend. Rachel came out from Rochester Thursday night via train. It was a rather nice visit, which we started out by hand-weeding a bed of mesclun mix. That took most of Friday actually. I milked Friday morning, just so my personal photographer could record the event and prove that I’m on a farm and learning things.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2511952085.49f0cc7c.webp 400w, /2511952085.f343751c.webp 800w, /2511952085.72bb406a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2511952085.15b98625.jpeg 400w, /2511952085.d62b4031.jpeg 800w, /2511952085.143bf662.jpeg 1600w"> &lt;img src="/2511952085.c1ee50f9.jpeg" alt="Milking Bennie" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2511954619.a603058c.webp 400w, /2511954619.a48df9b3.webp 800w, /2511954619.259d8387.webp 1600w"> &lt;source type="image/jpeg" srcset="/2511954619.4ff7a111.jpeg 400w, /2511954619.f75345fe.jpeg 800w, /2511954619.d007ad54.jpeg 1600w"> &lt;img src="/2511954619.ef1cc6ce.jpeg" alt="Milking Bennie" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>We’re finally settling into a semi-routine as far as moving all of the animals is concerned. We moved the chicken coop a few days ago, and for two or three days the hens weren’t really able to find their way back at night. So that was a chore… waiting until they were sleeping on a fence somewhere before grabbing them and putting them into the coop. That has finally stopped. The girl goats are being moved to new pasture every day… boy goats every few days. The sheep are finally out for almost a week at a time. The oxen are chewing on possibly five days of pasture per move, but are still being punks and getting out of their fence too often. Time to up the voltage.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2511955541.dbf68939.webp 400w, /2511955541.aa3529b8.webp 800w, /2511955541.66bc0ea4.webp 1600w"> &lt;source type="image/jpeg" srcset="/2511955541.f27a6561.jpeg 400w, /2511955541.3bca189d.jpeg 800w, /2511955541.c6307cea.jpeg 1600w"> &lt;img src="/2511955541.f73a6dc0.jpeg" alt="Crazyface" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Oh! I almost forgot… we got llamas last Sunday! Llamas have a funny looking name, and are funny looking creatures. Everything about them is weird and they scare me and they smell and I really really dislike them. Llamas sure do spit when agitated. And perhaps you think “Gee Brian. Getting spit on isn’t too terrible, is it?”… and I say yes. Yes it is, because this is llama spit and LLAMAS DON’T BRUSH THEIR TEETH, OK? It is a foul substance that you could only simulate by fermenting the essence of dog breath with a touch of vomit and moldy sock.&lt;/p>&lt;p>I’d have photos here of said llamas, but I really don’t feel like getting my camera all smelled up. Maybe I’ll risk it soon, just so you can see the freak show yourselves. Until then… I require slumber.&lt;/p></content></entry><entry><title>Lawnmunchers</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/05/lawnmuncher"/><id>https://boucheron.org/brian/2008/05/lawnmuncher</id><published>2008-05-11T21:38:14.000Z</published><category term="farm"/><category term="goat"/><category term="lawnmower"/><category term="photo"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2483367411.edd674b1.webp 400w, /2483367411.00ea8700.webp 800w, /2483367411.2fdd8c99.webp 1600w"> &lt;source type="image/jpeg" srcset="/2483367411.72736afd.jpeg 400w, /2483367411.221d6c68.jpeg 800w, /2483367411.e74c75a6.jpeg 1600w"> &lt;img src="/2483367411.85f6f5ed.jpeg" alt="Goat Runway" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Back when I was a youngster, I was forced to spend many hours upon a tractor, mowing acres upon acres of foolish lawn, huffing exhaust and damaging my hearing all the while (thanks parents!). As I sat on my buttocks for extended periods of time, I would often set my mind to thinking upon different fantastical technologies one could use to trim grass with less pain and more ease. Most of what I came up with was nebulously defined at best, but it usually involved laser beams.&lt;/p>&lt;p>Yes indeed. Obviously laser beams would, at the push of a button (perhaps after turning a key or some other nuclear launch button safety device), shoot out over your lawn at the specified height, neatly snipping the tips of every blade in sight, perhaps even incinerating the trimmings (if you’re the bag-em-up type). I envisioned this system as one you would install once, with the beams and mirrors placed in all the right spots to get behind every tree and down into every contour of the lawn. Ever afterwards, your juvenile life would be free of toil and full of recreation and joy.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2483363581.8f6099b6.webp 400w, /2483363581.5810479c.webp 800w, /2483363581.21170601.webp 1600w"> &lt;source type="image/jpeg" srcset="/2483363581.8be4d670.jpeg 400w, /2483363581.afeaa414.jpeg 800w, /2483363581.056402de.jpeg 1600w"> &lt;img src="/2483363581.b49211f3.jpeg" alt="BioLawnmower Results" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I am now reminded of this technology every time we move the animals and their portable electric fences. They each have their own munching styles, but in general the combination of energized fences and hungry hungry animals ensures a laser-like cut of grass… every single blade right up to the fence line. When I move fence I feel like I am setting up my childhood Lazer-Mow system, defining the boundaries and coordinates within which the grass shall be trimmed to my specifications. Up and down hills, over gullies, around trees and rocks. Nothing fazes the herbivorous lawnmowing machine.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2484174606.0ceaa0d2.webp 400w, /2484174606.a2741e23.webp 800w, /2484174606.571922b3.webp 1600w"> &lt;source type="image/jpeg" srcset="/2484174606.01baebb9.jpeg 400w, /2484174606.5203cbeb.jpeg 800w, /2484174606.c14c1c33.jpeg 1600w"> &lt;img src="/2484174606.bb4dde7f.jpeg" alt="BioLawnmower Results" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Best of all, it’s also fertilizing the soil, reseeding the pasture, generating meat or milk or wool or oxen-power, the only noise is some cute bleating or the occasional moo, and it’s much less odiferous than a tractor. It feels like a much better use of technology, to gently guide nature with some solar powered fence chargers and a roll of fence, instead of trying to dominate it completely with hundreds of pounds of iron and gasoline and hours of someone’s precious time.&lt;/p></content></entry><entry><title>Rainy Days</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/05/rainy-days"/><id>https://boucheron.org/brian/2008/05/rainy-days</id><published>2008-05-07T22:15:21.000Z</published><category term="farm"/><category term="Guinea"/><category term="Fowl"/><category term="oxen"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2460798294.556b93f9.webp 400w, /2460798294.a829bb53.webp 800w, /2460798294.59524c5b.webp 1600w"> &lt;source type="image/jpeg" srcset="/2460798294.5c89eec7.jpeg 400w, /2460798294.2d3d2a0f.jpeg 800w, /2460798294.469404b0.jpeg 1600w"> &lt;img src="/2460798294.5a2b8b81.jpeg" alt="Farm Invasion" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I seem to keep getting yelled at for my blog inaction. I guess my five readers are desperate for farm-based updates. This past weekend was a rainy and semi-lazy one. It actually started on Thursday with a rainy and cold day, which kept us inside for most everything but the chores. It felt like a weird day of waiting to work but not doing anything, and I got a little screwed up. It really wasn’t a day off in my brain, but I tried to make that mental transition, knowing that we’d have to make up time on Saturday or Sunday.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2460803400.f2edec46.webp 400w, /2460803400.4ed027a1.webp 800w, /2460803400.6e25d419.webp 1600w"> &lt;source type="image/jpeg" srcset="/2460803400.4328f925.jpeg 400w, /2460803400.1ac4e8b0.jpeg 800w, /2460803400.eba9717c.jpeg 1600w"> &lt;img src="/2460803400.32d37aaa.jpeg" alt="Farm Invasion" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Friday was equally cold and rainy. We had a mob of children come visit the farm, which was… entertaining. I took some photos and then ran and hid in the barn. They appeared to enjoy seeing all of the animals and petting lambs and whatnot. If I recall my field-trip days though, they were probably just happy to be outside, roughhousing and doing nothing constructive.&lt;/p>&lt;p>Saturday and Sunday continued the trend of cold and rain. We moved animals on Sunday, just so we could say we got some durn work done for once. Oh, and also because the oxen kept getting out of their fence, due to the fact that they had eaten up all their pasture, and oh look, there’s green grass right over there!&lt;/p>&lt;p>Oh! So that’s a good story, I suppose. One of the goats was due to kid on Friday. So after the kids (human) all left and Derek and Maribeth left the farm to go do something, I go outside to check on the goat and make sure there’s no signs of labor yet. But there was a rather prominent sign, that being a baby goat on the ground, covered in goo. Yikes! So I ran inside to tell Adam (the other intern) and we went out and started pretending to know what we were doing. Meanwhile Gregory from up the hill pulls into the driveway, honking and carrying on. This is when we were notified that the oxen were out and heading towards the garden. (!)&lt;/p>&lt;p>So somehow it was decided that Adam would take care of the midwifery and I would go pretend to be a teamster and get the oxen back where they belong. I ran and got their leads and lickin’ stick and set off hoping for the best. I guess it’d be a better story if there was any difficulty, but it was really absurdly easy. I’m not sure if they’re like dogs, in that you have to sound dominant or wrassle them and win before they listen to you… but once I got their leads on (which is really the hardest part, but a bowl of grain helps keep them from running away) they seemed to accept fate and do as they were told. Luckily, I had just worked out a mnemonic to remember the commands… gee, haw, hip, woah are the basics. Gee means go right, and I remember that because it sounds like “get” in the redneck accent used to yell at Rachel’s dogs, and since you lead from the left it works out, spatially speaking. Haw is for going left, and it reminds me of southpaw, so that’s pretty easy. Hip is the opposite of woah, and if you don’t know woah then you’ve never had your mom pour milk for you.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2459972383.8659c553.webp 400w, /2459972383.0ee57ebf.webp 800w, /2459972383.126ba0cd.webp 1600w"> &lt;source type="image/jpeg" srcset="/2459972383.2bf575c5.jpeg 400w, /2459972383.4b505a2e.jpeg 800w, /2459972383.499c4fc3.jpeg 1600w"> &lt;img src="/2459972383.887d643a.jpeg" alt="Guinea Egg Study" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2459974583.324e52d9.webp 400w, /2459974583.fd4a0089.webp 800w, /2459974583.f65d5cbb.webp 1600w"> &lt;source type="image/jpeg" srcset="/2459974583.606f384f.jpeg 400w, /2459974583.71ae69d9.jpeg 800w, /2459974583.61664837.jpeg 1600w"> &lt;img src="/2459974583.dc8c459c.jpeg" alt="Guinea Egg Study" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Also, I found a Guinea egg over the weekend. &lt;a href="http://en.wikipedia.org/wiki/Guineafowl">Guinea Fowl&lt;/a> are terrible poultry-like-objects that I’ve probably complained about before. They make lots of noise and seem even dumber than chickens. They hang out in the yak pen alot, and indeed that is where I found the farm’s first Guinea Fowl egg. It’s a bit squatter and smaller than your normal chicken egg, with a rougher shell. I failed to photograph it whilst frying, but it had a larger yolk than one would expect, with very little white. The yolk was very orange, almost reddish inside, no doubt from all the god-knows-what they’re eating out on the farm every day.&lt;/p>&lt;p>It tasted like any ol’ egg. I found two more yesterday, and ate those too.&lt;/p></content></entry><entry><title>Five Layer</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/five-layer"/><id>https://boucheron.org/brian/2008/04/five-layer</id><published>2008-04-28T22:04:46.000Z</published><category term="farm"/><category term="rain"/><content type="html">&lt;p>Today was a five layer day. Shirt, thermal, hoodie, jacket, rain coat. It has turned back into spring here, after a few weeks of too-soon summertime. Forties and rain all day long, which will be good for whatever we’ve gotten in the ground so far (carrots, beets, spinach, spicy mesclun mix, other things I’ve forgotten) and especially for the pasture, which I’m excited to see green up and get lush and yummy looking (for a ruminant anyways). I envision it sucking up all this rain and preparing to burst forth at the slightest hint of sunshine.&lt;/p>&lt;p>Pasture means we don’t have to feed hay twice a day, making chores slightly quicker. For the past few weeks, chores have basically involved bringing hay to all the animals (goats, yaks, oxen, sheep) and making sure they have sufficient water. This happens around seven in the morning and five in the evening. I’ve been getting the hang of milking the goats as well, so I’m sure us interns will add that to our routine pretty soon. It’s still new enough to be a fun task, but already the cleanup portion of milking is a chore.&lt;/p>&lt;p>I’ve been lax in my photo-taking lately, thus this boring and unadorned post. I hope to rectify this soon with some panoramic shots I’m fiddling with. Some other day though, as it is now well past my farmer bedtime. The rain just picked up a bit, and that is my cue to fall asleep while listening to the gutters gurgle.&lt;/p></content></entry><entry><title>Beat</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/beat"/><id>https://boucheron.org/brian/2008/04/beat</id><published>2008-04-20T21:36:33.000Z</published><category term="farm"/><category term="oxen"/><category term="Sunday"/><category term="yaks"/><content type="html">&lt;p>It’s nine o’clock on a Sunday night, and I’m already considering going to bed. This is sad not only because it’s so early, but also because I did relatively little today. Morning and evening chores, and that’s about it. I suppose I also rode my bike into town for the first time, but that’s not &lt;em>work&lt;/em> really.&lt;/p>&lt;p>It was, sadly enough, a challenge though. Two and a half miles to Ashfield proper, quite a bit of that is hill, and I am definitely out of shape. I’m thinking it will become a good Sunday routine: write letters all morning, ride to town and mail them, pick up some &lt;a href="https://www.berkshire-brewing.com">beer&lt;/a>, eat a slice of pizza, zip down the other side of the hill at dangerous speeds. By the end of the summer perhaps I’ll be used to living in an area with actual elevation changes!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2419279690.a62a141b.webp 400w, /2419279690.d8c5bbec.webp 800w, /2419279690.14fb559e.webp 1600w"> &lt;source type="image/jpeg" srcset="/2419279690.2aa67392.jpeg 400w, /2419279690.699ce42d.jpeg 800w, /2419279690.952b00d2.jpeg 1600w"> &lt;img src="/2419279690.96e18036.jpeg" alt="Spring Training" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Speaking of out of shape… last week we put the boys to work for the first time this spring. By “we” I mean “Derek”, because there’s no way I’ll be driving the team anytime soon, if ever. They were especially spunky this first time out, and there was lots of yelling and wrassling and I almost had to make a call to see if my car insurance covers oxen damage. Luckily they stopped inches short of my bumper, but you quickly realize that if they don’t want to do something, such as stop or go or turn or not gore you, there’s really not much you can do about it. But they eventually got down to it and dragged an old tractor tire around, filled with rocks. They got tired pretty quick, but they’ll be whipped into shape soon enough.&lt;/p>&lt;p>We also walked the yaks last week. That was quite the hoot. It’s almost a good thing they’re so skittish and want to run away from you, because I wouldn’t want them running at me. Walking the yaks is much like walking a dog, only bigger and with horns. Once you manage to grab one in its pen, you just clip on a leash and hold on tight. They were pretty spunky too, as it was also their first time out after the long winter. After a little while they settled down and would walk by your side and heel pretty well without pulling at the leash. I wish I had photos of that, but alas, I don’t have a personal photographer around to take flattering pictures of me in my new habitat.&lt;/p></content></entry><entry><title>Moving In</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/moving-in"/><id>https://boucheron.org/brian/2008/04/moving-in</id><published>2008-04-13T11:51:28.000Z</published><category term="barn"/><category term="farm"/><category term="greenhouse"/><category term="photo"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2409113908.78e55ffd.webp 400w, /2409113908.04f9c0b5.webp 800w, /2409113908.7b344c2d.webp 1600w"> &lt;source type="image/jpeg" srcset="/2409113908.edd72de3.jpeg 400w, /2409113908.33876c7d.jpeg 800w, /2409113908.ac86d7aa.jpeg 1600w"> &lt;img src="/2409113908.323e583a.jpeg" alt="Moved In" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I moved into the barn yesterday, despite nighttime temperatures that are still dipping into the mid thirties. I couldn’t resist the draw of having my own space, and of not sleeping on the living room couch with the family hound dog every night. It is currently forty degrees out though, and I’m huddled up in my tent writing this. The tent smells like camping should smell, and for now it’s a pretty novel experience and fun to sleep in. I’m sure that will wear off. I was plenty warm last night though, and the animals in the barn quiet down at night, although right now they’re making quite the racket. I’m so tired once it gets dark that I don’t think I’d notice either way. It’s amazing how natural it is to sync up with the daylight hours when you remove most of the artificial lighting and electronic stimulants in your life.&lt;/p>&lt;p>The past week has seen a variety of activities. A lot more planting in the greenhouse. All the beds up both sides are planted with spinach and salad mixes. The center is now packed with tables full of seedlings, with more on the way as soon as we scrounge up more table space (read: doors on sawhorses). Apparently we’ll be doing weekly-or-so succession plantings of greens and such, so I’m really interested in seeing how that is planned out and planted in order to keep our CSA members’ bags full every week. The garden at home has lacked such a plan in the past, unfortunately.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2409319424.67a19ca8.webp 400w, /2409319424.e3924db7.webp 800w, /2409319424.25828899.webp 1600w"> &lt;source type="image/jpeg" srcset="/2409319424.92d1b7c1.jpeg 400w, /2409319424.d57d2c3b.jpeg 800w, /2409319424.cfe90cee.jpeg 1600w"> &lt;img src="/2409319424.d57d2c3b.jpeg" alt="Loft View" width="800" height="529"> &lt;/picture> &lt;/p>&lt;p>We also cut down some dead ash trees for greenhouse fuel. We go through quite a bit of wood at night, especially since the greenhouse doesn’t have its second insulating plastic layer installed. I ran a chainsaw for the first time, not cutting down the trees but chopping the eight foot sections down into stove-sized pieces. And then it was chopping time of course. It had been a while, but the ash split really easily and we quickly had enough chopped to last us a few days.&lt;/p>&lt;p>Last weekend I didn’t know what to do with the slow days, so I ended up puttering in the greenhouse. I’m glad I did, because I got the beds fluffed up and dried out so we could plant earlier… but this weekend I’m definitely more comfortable with just taking a break. I’m looking forward to warm days off when I can go explore the area on my bike. I hear there are waterfalls and wading pools nearby!&lt;/p></content></entry><entry><title>Stimulating Activities</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/stimulating-activities"/><id>https://boucheron.org/brian/2008/04/stimulating-activities</id><published>2008-04-07T23:16:40.000Z</published><category term="farm"/><category term="oxen"/><category term="photo"/><category term="tractor"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2397703260.e7c84e5a.webp 400w, /2397703260.2f3eb046.webp 800w, /2397703260.25d08ad5.webp 1600w"> &lt;source type="image/jpeg" srcset="/2397703260.c48cb2f2.jpeg 400w, /2397703260.7ff18e63.jpeg 800w, /2397703260.ec906942.jpeg 1600w"> &lt;img src="/2397703260.dc6fcd5a.jpeg" alt="Wee Sheep" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>I have been reprimanded for not posting enough, and for not taking enough pictures of baby animals. One of those “problems” is easy to remedy. As you may be noticing, this post is awash in photographs of cute baby sheep and goats and even a bad puppy. Enjoy!&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2397696690.308b5cc1.webp 400w, /2397696690.0f56bcd8.webp 800w, /2397696690.c9681783.webp 1600w"> &lt;source type="image/jpeg" srcset="/2397696690.2cb1fbaf.jpeg 400w, /2397696690.5205e21a.jpeg 800w, /2397696690.94dfec96.jpeg 1600w"> &lt;img src="/2397696690.1d274bef.jpeg" alt="Wee Sheep" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2397689766.75b37634.webp 400w, /2397689766.5c571c64.webp 800w, /2397689766.3688ad9e.webp 1600w"> &lt;source type="image/jpeg" srcset="/2397689766.832fe2c1.jpeg 400w, /2397689766.4db90255.jpeg 800w, /2397689766.4cb904fe.jpeg 1600w"> &lt;img src="/2397689766.e4fbe88f.jpeg" alt="Wee Sheep" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>As far as writing more, I suppose I’ll have to just write about the minute doings of my current life. I guess maybe that’s interesting. Today, I drove a tractor. A tractor with a bucket thingy and separate pedals for forward and reverse, and separate left and right brakes. It seems like a really good idea to me, to have four pedals available for maximizing your messing up potential.&lt;/p>&lt;p>I used the tractor to do two things: After we mucked out all the stalls this morning, I had to scrape the bedding away from the barn and scoop it into the big steamy pile of cow goo. I feel like the bucket control lever could have a much more intuitive interface (perhaps a scroll wheel or a trackpad?) but I managed to get the hang of it just fine. In the afternoon I had to take water up to the oxen, who are out on pasture finally (they were very happy to be out of the barn, and I wish I had shot video of the terrifying sight of a 1600 pound oxen jumping and bucking with glee whilst stumbling down the hillside towards the tiny yet apparently effective portable electric fencing). This involves filling a basin and toting it up the hill in the tractor’s bucket, whilst not spilling too much. I got it all the way up the hill, and dropped it as I was setting it down inside the fence. Round two was more successful, with the boys receiving not only fifteen gallons of water, but also their surprisingly heavy mineral block for licking upon.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2396852459.17de1757.webp 400w, /2396852459.dc6b431a.webp 800w, /2396852459.0d973e5b.webp 1600w"> &lt;source type="image/jpeg" srcset="/2396852459.ac38eac4.jpeg 400w, /2396852459.6bddfdaf.jpeg 800w, /2396852459.2fde0cff.jpeg 1600w"> &lt;img src="/2396852459.000bd3be.jpeg" alt="Bad Dog" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2396850507.38963377.webp 400w, /2396850507.39abbdcf.webp 800w, /2396850507.cd6e867a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2396850507.0074f7f9.jpeg 400w, /2396850507.a261ec7d.jpeg 800w, /2396850507.c119c440.jpeg 1600w"> &lt;img src="/2396850507.95f869a7.jpeg" alt="Wee Goat" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>It only took two days for me to get zapped by the aforementioned fencing. It felt similar to when I plugged in my Lite-Brite incorrectly (read: while squeezing the prongs together to fit it in the outlet), only this time no thoughts of turning into a robot crossed my mind, and I find that terribly disappointing.&lt;/p></content></entry><entry><title>Arrival</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/arrival"/><id>https://boucheron.org/brian/2008/04/arrival</id><published>2008-04-04T10:56:26.000Z</published><category term="farm"/><category term="greenhouse"/><category term="hello"/><category term="introduction"/><category term="photo"/><content type="html">&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2386691326.db53dea0.webp 400w, /2386691326.5fa7e08e.webp 800w, /2386691326.66d4f2b7.webp 1600w"> &lt;source type="image/jpeg" srcset="/2386691326.2211bea9.jpeg 400w, /2386691326.33e65bcd.jpeg 800w, /2386691326.9f7e1137.jpeg 1600w"> &lt;img src="/2386691326.65301d5e.jpeg" alt="The Barn++" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>Sorry for the delay… I arrived on the farm Tuesday and have been rather busy since. I just got a chance to set up the internets last night. I also haven’t taken a ton of photos yet, I feel like a tourist boob whipping out my camera at every single interesting thing. I’ve certainly missed a lot of cute baby photo-ops thus far (cute animal babies, that is). Just yesterday there was some feeding of a newborn lamb in the house next to the fire. It was the only one of five to survive, so a sad morning, but happy that this one pulled through and got up on its wobbly too-big legs and is now back in the barn nursing.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2386687502.51d8e807.webp 400w, /2386687502.8ef5bff9.webp 800w, /2386687502.3b55004a.webp 1600w"> &lt;source type="image/jpeg" srcset="/2386687502.864281b2.jpeg 400w, /2386687502.61402604.jpeg 800w, /2386687502.4441d699.jpeg 1600w"> &lt;img src="/2386687502.18490c43.jpeg" alt="A Field, Plus Jebedaiah" width="800" height="532"> &lt;/picture> &lt;/p>&lt;p>The area is beautiful, even when it’s all melty and muddy. Last night we got a dusting of snow, so it’s back to a lovely winter white, if you’re into that sort of thing. Personally, I’m rather done with winter and am looking forward to seeing this place put on some fuzzy green pantaloons. We were working in the greenhouse yesterday, and will do so again today. It was one-hundred degrees in there when we opened the doors… rather nice to work in short sleeves and sweat a bit, although my back is sore from preparing the beds for planting greens.&lt;/p>&lt;p>We have to feed the fire in the greenhouse a couple of times a night, and my shifts are gradually getting later and later as I am less and less the new guy. I hope the nights warm up soon, so we can all get uninterrupted sleep again. Even with the slumbertime chores I’m finding it pretty easy to get up around six or so. That might be because things wind down here around ten and I find it hard to stay up much later than that. Certainly is a schedule shift, and I’m struggling to figure out how to separate free-time from work-time and how to relax and also get other personal projects done. Today we’re taking a wee break before going out to work. Everybody is gone but Adam (the other intern) and I.&lt;/p>&lt;p>OK, it’s almost the top of the hour, time to check on the soon-to-be-mother sheep and get down to work. Expect more bland stories and flaccid insight in the weeks to come!&lt;/p></content></entry><entry><title>Gone Farmin'</title><author><name>Brian Boucheron</name><email>brian@boucheron.org</email><uri>https://boucheron.org/brian</uri></author><link href="https://boucheron.org/brian/2008/04/gone-farmin"/><id>https://boucheron.org/brian/2008/04/gone-farmin</id><published>2008-04-01T07:56:19.000Z</published><category term="Chickadee"/><category term="farm"/><category term="hello"/><category term="introduction"/><category term="photo"/><category term="travel"/><content type="html">&lt;p>As most of you know, I have left the lovely village of Rochester for a few months, in order to more fully scratch an itch I’ve been having regarding food and agriculture and ecology and so on. I’ll be working on a wee family farm in Ashfield, Massachusetts until mid-October. I am fully prepared for this to be a slightly different work experience than my previous job as a chair-sloucher and mouse-pusher, and am looking forward to that. I hope to experience 110% more sunshine, 80% more animal dander, and 1254% more plant matter than in previous years.&lt;/p>&lt;p>In order to more gently ease into the great outdoors, I went to Mendon Ponds park on Sunday with some of my most special Rochester friends. We experienced “nature” by walking through its well-groomed paths and feeding the ferociously wild Chickadees out of our bare hands. No doubt these skills will come in handy when dealing with the various domesticated fowl on the farm.&lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2375384241.625cd478.webp 400w, /2375384241.a9c931de.webp 800w, /2375384241.caa64615.webp 1600w"> &lt;source type="image/jpeg" srcset="/2375384241.9950f4f4.jpeg 400w, /2375384241.cde723a0.jpeg 800w, /2375384241.87c67544.jpeg 1600w"> &lt;img src="/2375384241.cde723a0.jpeg" alt="Avian Adventure" width="800" height="600"> &lt;/picture> &lt;/p>&lt;p> &lt;picture> &lt;source type="image/webp" srcset="/2376226798.20411189.webp 400w, /2376226798.fdf33c53.webp 800w, /2376226798.4187200d.webp 1600w"> &lt;source type="image/jpeg" srcset="/2376226798.3540c558.jpeg 400w, /2376226798.2a313d74.jpeg 800w, /2376226798.250c0105.jpeg 1600w"> &lt;img src="/2376226798.2a313d74.jpeg" alt="Avian Adventure" width="800" height="600"> &lt;/picture> &lt;/p>&lt;p>I’m currently at my parent’s house in Floyd, eating some niblets in preparation for more travel. I’ve got about three hours of driving left, hopefully with a stop in the middle to check out Troy and its curious inhabitants. I’m not sure what to expect upon arrival at Sangha Farm this afternoon. I visited them of course, and it seemed really great. I’m just bracing for it to be a big change of pace in so many ways. But, I’m excited and ready to get down to it. Keep an eye out for a plentitude of photos and more blathering… soon!&lt;/p></content></entry></feed>