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

<channel>
	<title>ROTR &#187; Uncategorized</title>
	<atom:link href="http://goldenspud.com/rotr/index.php/tags/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://goldenspud.com/rotr</link>
	<description></description>
	<lastBuildDate>Sat, 02 May 2009 20:10:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New ownership and license for Schevo</title>
		<link>http://goldenspud.com/rotr/index.php/2009/04/21/new-ownership-and-license-for-schevo/</link>
		<comments>http://goldenspud.com/rotr/index.php/2009/04/21/new-ownership-and-license-for-schevo/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 04:53:31 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Schevo]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=145</guid>
		<description><![CDATA[Just a short post, but I'm excited about something that has been in the works for a little while now.  My company, ElevenCraft, is now the owner of Schevo, the object-relational database I've been working on for several years with Patrick O'Brien of Orbtech, L.L.C. and PyCrust fame.
Additionally, we're relicensing Schevo under the MIT [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Just a short post, but I'm excited about something that has been in the works for a little while now.  My company, <a href="http://11craft.com/">ElevenCraft</a>, is <a href="http://11craft.com/blog/2009/04/schevo-project-now-owned-managed-by-elevencraft/">now the owner of Schevo</a>, the object-relational database I've been working on for several years with Patrick O'Brien of Orbtech, L.L.C. and PyCrust fame.</p>
<p>Additionally, we're <a href="http://11craft.com/blog/2009/04/schevo-31-to-be-relicensed-under-the-mit-license/">relicensing Schevo under the MIT license</a> to make things less complicated for using Schevo with any other software project, open source or commercial.</p>
<p>Since Patrick is taking an indefinite vacation from the world of software development to enjoy other exciting opportunities he has brewing, I'd like to take a moment to thank him publicly for all of the work that he did to help make Schevo one of the most elegant pieces of software I've ever laid eyes upon.</p>
<p>He was also instrumental in my progression from Python journeyman to master, and I am forever thankful for his fussiness about code style.  Paying attention to those kinds of details really does make a difference!</p>
<p>Pat, I wish you the best in your new ventures, and I thank you for your generosity with regard to handing over the reins to the project.  You are always welcome back to the world of Python and Schevo!</p>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2009/04/21/new-ownership-and-license-for-schevo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paver Patterns 1: Attach git branch to version number</title>
		<link>http://goldenspud.com/rotr/index.php/2009/04/14/paver-patterns-1-attach/</link>
		<comments>http://goldenspud.com/rotr/index.php/2009/04/14/paver-patterns-1-attach/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 21:59:29 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[pavement]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=140</guid>
		<description><![CDATA[Update: I no longer use this recipe, as it turned out to be an elaborate workaround for Paver 1.0 ignoring setup.cfg and distutils.cfg when using a Paver-based setup.py file.  I'm now using a patch that allows Paver to honor such configuration files.
I've been using Paver, a tool to help manage various bits of administrivia [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><b>Update:</b> I no longer use this recipe, as it turned out to be an elaborate workaround for Paver 1.0 ignoring <code>setup.cfg</code> and <code>distutils.cfg</code> when using a Paver-based <code>setup.py</code> file.  I'm now using a <a href="http://code.google.com/p/paver/issues/detail?id=36">patch</a> that allows Paver to honor such configuration files.</p>
<p>I've been using <a href="http://www.blueskyonmars.com/projects/paver/">Paver</a>, a tool to help manage various bits of administrivia surrounding Python projects, with <a href="http://www.schevo.org/">Schevo</a> for several months now.  Now that Paver has a 1.0 release, I'm also using it to help streamline such tasks for the commercial software I'm helping develop.</p>
<p>One of the patterns I'm used to is attaching <code>dev</code> to the end of versions, to help differentiate between development versions and release versions.</p>
<p>I wanted to go further than this, also attaching the name of the current <a href="http://git-scm.com/">git</a> branch name to the version number.  That practice is useful when you use branching to manage feature development and bug fixes.</p>
<p>Here's the pattern I settled on.  The relevant parts of <code>pavement.py</code> look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">from</span> paver.<span style="color: black;">easy</span> <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #66cc66;">*</span>
<span style="color: #ff7700;font-weight:bold;">from</span> paver.<span style="color: black;">setuputils</span> <span style="color: #ff7700;font-weight:bold;">import</span> setup
&nbsp;
VERSION = <span style="color: #483d8b;">'1.2.3'</span>
DEVELOPMENT = <span style="color: #008000;">True</span>
&nbsp;
<span style="color: #808080; font-style: italic;"># Use branch name if git information is available; otherwise, use</span>
<span style="color: #808080; font-style: italic;"># version number from setup_meta.</span>
<span style="color: #ff7700;font-weight:bold;">if</span> DEVELOPMENT:
    <span style="color: #ff7700;font-weight:bold;">try</span>:
        git_head_path = path<span style="color: black;">&#40;</span><span style="color: #483d8b;">'.git/HEAD'</span><span style="color: black;">&#41;</span>
        contents = git_head_path.<span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'rU'</span><span style="color: black;">&#41;</span>.<span style="color: #dc143c;">readline</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>.<span style="color: black;">strip</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
        name, value = contents.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
        BRANCH = value.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'/'</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span>-<span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>
        <span style="color: #ff7700;font-weight:bold;">if</span> BRANCH <span style="color: #66cc66;">!</span>= <span style="color: #483d8b;">'master'</span>:
            VERSION += <span style="color: #483d8b;">'-'</span> + BRANCH
    <span style="color: #ff7700;font-weight:bold;">except</span>:
        <span style="color: #ff7700;font-weight:bold;">pass</span>
    VERSION += <span style="color: #483d8b;">'-dev'</span>
&nbsp;
&nbsp;
setup<span style="color: black;">&#40;</span>
    name=<span style="color: #483d8b;">'MyProject'</span>,
    version=VERSION,
    ...
<span style="color: black;">&#41;</span></pre></div></div>

<p>When generating releases, set <code>DEVELOPMENT</code> to <code>False</code>, commit that change, tag and release, then change the value back to <code>True</code> and commit again.</p>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2009/04/14/paver-patterns-1-attach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Schevo ticket triage</title>
		<link>http://goldenspud.com/rotr/index.php/2009/04/13/schevo-ticket-triage/</link>
		<comments>http://goldenspud.com/rotr/index.php/2009/04/13/schevo-ticket-triage/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 03:05:37 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Schevo]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=135</guid>
		<description><![CDATA[At US PyCon 2009 a couple of weeks ago, I was pleased to see some interest in Schevo.  One of the problems I'm conquering is how to describe Schevo in one or two sentences.
One idea that has been on my mind is this: "Schevo is an object-relationship database."
A few months ago while I was [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>At US PyCon 2009 a couple of weeks ago, I was pleased to see some interest in Schevo.  One of the problems I'm conquering is how to describe Schevo in one or two sentences.</p>
<p>One idea that has been on my mind is this: "Schevo is an object-relationship database."</p>
<p>A few months ago while I was in Houston, I described it to Walker Hale, and got another tagline:  "Schevo contains the soul of your app".</p>
<p>Tonight, I'm having a lot of fun doing some triage with the Trac tickets at <a href="http://schevo.org/">http://schevo.org/</a>.  In the works is a relicensing of the project, a copyright transfer,  and a 3.1 release.  I have renewed vigor in maintaining and promoting Schevo to those people who may benefit from it.  :)</p>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2009/04/13/schevo-ticket-triage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari cookie forgetfulness</title>
		<link>http://goldenspud.com/rotr/index.php/2008/12/28/safari-cookie-forgetfulness/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/12/28/safari-cookie-forgetfulness/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 04:27:37 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=131</guid>
		<description><![CDATA[I'm a little sad.  I was really beginning to enjoy using Safari and the Webkit nightlies, but ever since the Mac OS X 10.5.6 update and Safari 3.2.1, I've been experiencing odd "cookie forgetfulness".  When I visit websites that usually keep me logged in for a long period of time, they log me [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I'm a little sad.  I was really beginning to enjoy using Safari and <a href="http://nightly.webkit.org/">the Webkit nightlies</a>, but ever since the Mac OS X 10.5.6 update and Safari 3.2.1, I've been experiencing odd "cookie forgetfulness".  When I visit websites that usually keep me logged in for a long period of time, they log me out pretty quickly nowadays.</p>
<p>Some sites don't even let me do simple in-page tasks that occur via AJAX methods, since the cookies have been "forgotten" by then!  Clicking on other links brings me to a pages where I must log in again.  And I'm not the only one who has experienced this problem: <a href="http://episteme.arstechnica.com/eve/forums/a/tpc/f/8300945231/m/535004226931">others</a> <a href="http://www.mac-forums.com/forums/os-x-applications-games/134886-safari-deleting-cookies-after-10-5-6-upgrade.html">have</a> as well.</p>
<p>Fortunately, I can use <a href="http://firefox.com/">Firefox</a>, which has become a pretty nice browser in its own right.  Time will tell if I will stick with Firefox for the long run, or if I'll migrate back over to Safari once it's no longer brain-dead on my box.  I'll at least send a bug report for it!</p>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/12/28/safari-cookie-forgetfulness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting back up&#8230;</title>
		<link>http://goldenspud.com/rotr/index.php/2008/12/28/starting-back-up/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/12/28/starting-back-up/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 04:20:11 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=128</guid>
		<description><![CDATA[I can't resist the pull!
]]></description>
			<content:encoded><![CDATA[<p></p><p>I can't resist the pull!</p>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/12/28/starting-back-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>*grin*</title>
		<link>http://goldenspud.com/rotr/index.php/2008/08/27/grin/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/08/27/grin/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 23:09:03 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=117</guid>
		<description><![CDATA[




I use grep a lot.
Used to use it a lot, that is, until I discovered grin.
Whenever I set up a new virtualenv I now run easy_install grin.

]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="document">


<!-- -*- mode: rst -*- -->
<p>I use <a class="reference" href="http://en.wikipedia.org/wiki/Grep">grep</a> a lot.</p>
<p>Used to use it a lot, that is, until I discovered <a class="reference" href="http://pypi.python.org/pypi/grin">grin</a>.</p>
<p>Whenever I set up a new <a class="reference" href="http://pypi.python.org/pypi/virtualenv">virtualenv</a> I now run <tt class="docutils literal"><span class="pre">easy_install</span> <span class="pre">grin</span></tt>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/08/27/grin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My goodness&#8230;</title>
		<link>http://goldenspud.com/rotr/index.php/2008/04/17/my-goodness/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/04/17/my-goodness/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 04:23:59 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[pausing]]></category>
		<category><![CDATA[personal life]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=114</guid>
		<description><![CDATA[




What a wild ride the last three months have been!
Things were beginning to pick up in my professional career, having started a couple of new projects with enthusiasm (and funding!), and having ramped up my energy for supporting an existing project.  On top of that, I'd been hired as a long-term contractor at a [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="document">


<!-- -*- mode: rst -*- -->
<p>What a wild ride the last three months have been!</p>
<p>Things were beginning to pick up in my professional career, having started a couple of new projects with enthusiasm (and funding!), and having ramped up my energy for supporting an existing project.  On top of that, I'd been hired as a long-term contractor at a compensation rate commensurate with my experience for the first time in years.</p>
<p>Then, things kind of went &#34;splat&#34; in an aspect of my personal life.  I will not detail it here, but I was not prepared to handle what happened and keep the above flowing smoothly.  Projects stalled, this blog went pretty dark, my enthusiasm and concentration waned, and I found myself sending a resignation letter to my newest employer.  (Thankfully though, that at least was quickly upgraded to &#34;indefinite personal leave&#34; after speaking with them.)</p>
<p>I want to start writing again, for a multitude of reasons, but it's time for me to set the ROTR journal down for a while.  I will likely start other blogs for specific reasons -- if I do, I'll probably post about them here -- and I may one day start posting on ROTR again.  For now though, it's time for me to set it down.  :)</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/04/17/my-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 dishes in 11 hours</title>
		<link>http://goldenspud.com/rotr/index.php/2008/04/10/7-dishes-in-11-hours/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/04/10/7-dishes-in-11-hours/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 23:04:05 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[from scratch]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[recipes]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/?p=108</guid>
		<description><![CDATA[




I made it!
Yesterday, in just about 11 hours, I prepared six recipes to completion, started a seventh based on leftover ingredients, and left the kitchen cleaner than it was when I began the project.
Why?
Because my darling wife loves cooking from scratch, but doesn't want to get burnt out on it, and I haven't done a [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="document">


<!-- -*- mode: rst -*- -->
<p>I made it!</p>
<p>Yesterday, in just about 11 hours, I prepared six recipes to completion, started a seventh based on leftover ingredients, and left the kitchen cleaner than it was when I began the project.</p>
<p><strong>Why?</strong></p>
<p>Because my darling wife loves cooking from scratch, but doesn't want to get burnt out on it, and I haven't done a lot of intense food preparation for a spell. So I offered to spend an entire day cooking as many meals as I possibly could, so neither of us would have to think about it for a few days.</p>
<p><strong>How?</strong></p>
<p>The day before, we bought some ingredients, loosely based on some recipes in <a class="reference" href="http://www.drfuhrman.com/">Dr. Joel Fuhrman's books</a>, and including some other ingredients that we just like to have around.</p>
<p>The morning of, I transcribed the recipes to paper using the &#34;tabular recipe notation&#34; showcased at <a class="reference" href="http://www.cookingforengineers.com/">Cooking for Engineers</a>.  For example, the &#34;Veggie 'Meat' Loaf&#34; recipe:</p>
<img alt="/rotr/wp-content/uploads/2008/04/photo-43-300x225.jpg" src="/rotr/wp-content/uploads/2008/04/photo-43-300x225.jpg" />
<p>I then created a rough schedule for the day across two sheets of paper, with recipes in columns and each row containing actions to be taken for each recipe.  The rule of thumb: nothing within each row should contend with another thing.  If two ovens are needed, defer one of the recipes to a later row where the oven is no longer in use by another recipe.</p>
<p>The schedule was <em>key</em> for keeping the flow going with so much resource contention -- there's only three burners that work well on our stove, and we only have one oven, yet three recipes used the stove and three used the oven.</p>
<p>Here's my schedule, complete with markups as I altered it:</p>
<img alt="/rotr/wp-content/uploads/2008/04/photo-44-300x225.jpg" src="/rotr/wp-content/uploads/2008/04/photo-44-300x225.jpg" />
<img alt="/rotr/wp-content/uploads/2008/04/photo-45-300x225.jpg" src="/rotr/wp-content/uploads/2008/04/photo-45-300x225.jpg" />
<p><strong>What?</strong></p>
<p>Ingredients available when I started: <em>diced tomatoes, pumpkin, tomato paste, barley, quinoa, brown rice, yellow split peas, garbanzo beans, red kidney beans, blackeye peas, great northern beans, oatmeal, oat flour, whole wheat flour, pastry flour, dark rye flour, lemons, tomatoes, garlic, sweet onions, red onion, yellow bell pepper, red bell pepper, raw sunflower nuts, walnuts, raw almonds, dates, raisins, jalapeños, carrots, celery, green onions, romaine lettuce, cabbage, spinach, apples</em></p>
<p>Ingredients now available: <em>diced tomatoes, pumpkin, barley, quinoa, brown rice, blackeye peas, great northern beans, oatmeal, oat flour, whole wheat flour, dark rye flour, lemons, tomatoes, garlic, jalapeños, romaine lettuce, spinach, apples</em></p>
<p>Ingredients untouched by this project: <em>diced tomatoes, pumpkin, brown rice, jalapeños, romaine lettuce, spinach</em></p>
<p>Prepared dishes now available for us to choose from: tons of <em>Cabbage Raisin Soup</em>, 4 servings <em>Quinoa in Color</em> (already gone!), a <em>Veggie &#34;Meat&#34; Loaf</em>, several snackfuls of <em>Apple Walnut Surprise</em>, 12 <em>Whole Wheat/Rye Burger Buns</em>, 25 <em>Bean Burgers</em> (and some salad crumblings from the ones that fell apart).</p>
<p>On the way:  Something with the leftover <em>sunflower nuts</em> and <em>almonds</em> (currently soaking) and <em>walnuts</em>; the leftover <em>raisins</em> and <em>dates</em> (currently soaking); and canned <em>pumpkin</em>.  My wife wants to turn it into a <em>pudding</em> of sorts.  :)</p>
<p><strong>So?</strong></p>
<p>Both parents needn't worry about preparing food for some time.</p>
<p>I want to do this again, with regularity, helpers, more ingredients, even more food in mind, and perhaps with extended family from time to time.</p>
<p>This time around, I did it alone (I didn't even ask for help from my wife until all the kids were in bed!) since I had never synchronized so many food preparation tasks at once, and thought that keeping the kitchen off-limits to <em>everyone</em> but myself for most of the day would help keep the flow smooth (it did).</p>
<p>It was tremendous fun.  Next time I'll have even more fun!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/04/10/7-dishes-in-11-hours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Morning choconana green smoothie</title>
		<link>http://goldenspud.com/rotr/index.php/2008/03/30/morning-choconana-green-smoothie/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/03/30/morning-choconana-green-smoothie/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 00:00:34 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[banana]]></category>
		<category><![CDATA[chocolate]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[greens]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[smoothie]]></category>
		<category><![CDATA[spinach]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/index.php/2008/03/30/morning-choconana-green-smoothie/</guid>
		<description><![CDATA[




Four times, in eight twirls of the Magic Bullet, for four people this morning:

Add, then blend:
1/4 C rice milk
1 heaping TB fresh ground flaxseed


Add, then blend:
2&#34; diameter wad of fresh spinach leaves
1 banana
1 heaping TB peanut butter
1 heaping TB cocoa powder
drizzle of real maple syrup
1/4 C water




]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="document">


<!-- -*- mode: rst -*- -->
<p>Four times, in eight twirls of the Magic Bullet, for four people this morning:</p>
<ul class="simple">
<li>Add, then blend:<ul>
<li>1/4 C rice milk</li>
<li>1 heaping TB fresh ground flaxseed</li>
</ul>
</li>
<li>Add, then blend:<ul>
<li>2&#34; diameter wad of fresh spinach leaves</li>
<li>1 banana</li>
<li>1 heaping TB peanut butter</li>
<li>1 heaping TB cocoa powder</li>
<li>drizzle of real maple syrup</li>
<li>1/4 C water</li>
</ul>
</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/03/30/morning-choconana-green-smoothie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Leopard surprises</title>
		<link>http://goldenspud.com/rotr/index.php/2008/02/18/leopard-surprises/</link>
		<comments>http://goldenspud.com/rotr/index.php/2008/02/18/leopard-surprises/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 18:06:16 +0000</pubDate>
		<dc:creator>gldnspud</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[svk]]></category>

		<guid isPermaLink="false">http://goldenspud.com/rotr/index.php/2008/02/18/leopard-surprises/</guid>
		<description><![CDATA[




Apple, no matter what kind of company you or I may think it is, sure has some good software artisans working for their OS X team.
It's nice to be able to just start using svk without worrying about installing it.
I started using it, then realized I hadn't installed it yet -- but it was working. [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="document">


<!-- -*- mode: rst -*- -->
<p>Apple, no matter what kind of company you or I may think it is, sure has some good software artisans working for their OS X team.</p>
<p>It's nice to be able to just start <em>using</em> <a class="reference" href="http://svk.bestpractical.com/">svk</a> without worrying about installing it.</p>
<p>I started using it, then realized I hadn't installed it yet -- but it was working.  <tt class="docutils literal"><span class="pre">which</span> <span class="pre">svk</span></tt> told me that it was in <tt class="docutils literal"><span class="pre">/usr/bin/svk</span></tt>, which tells me that it was installed with the rest of the system.  Nice!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goldenspud.com/rotr/index.php/2008/02/18/leopard-surprises/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
