<?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>Wizard Mode</title>
	<atom:link href="http://wizardmode.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wizardmode.com</link>
	<description>Justin de Vesine on life, food, technology, and whimsy</description>
	<lastBuildDate>Tue, 03 Apr 2012 16:08:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Product packaging lies&#8230;</title>
		<link>http://wizardmode.com/2012/04/product-packaging-lies/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=product-packaging-lies</link>
		<comments>http://wizardmode.com/2012/04/product-packaging-lies/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 16:08:01 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=287</guid>
		<description><![CDATA[<p><a href="http://wizardmode.com/2012/04/product-packaging-lies/"><img width="510" height="382" src="http://wizardmode.com/wp-content/uploads/2012/04/cookie_box-510x382.jpg" class="attachment-medium-img wp-post-image" alt="Jules Destrooper Butter Crisp Cookies" title="Jules Destrooper Butter Crisp Cookies" /></a></p>
But sometimes it lies in your favor. On casual glance, the box looked like it contained round, small cookies; not so.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wizardmode.com/2012/04/product-packaging-lies/"><img width="510" height="382" src="http://wizardmode.com/wp-content/uploads/2012/04/cookie_box-510x382.jpg" class="attachment-medium-img wp-post-image" alt="Jules Destrooper Butter Crisp Cookies" title="Jules Destrooper Butter Crisp Cookies" /></a></p>
<p>But sometimes it lies in your favor.  On casual glance, the box looked like it contained round, small cookies; not so.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/04/product-packaging-lies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling Ruby with Xcode 4.3</title>
		<link>http://wizardmode.com/2012/03/compiling-ruby-with-xcode-4-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=compiling-ruby-with-xcode-4-3</link>
		<comments>http://wizardmode.com/2012/03/compiling-ruby-with-xcode-4-3/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 17:20:22 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[compass]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sass]]></category>
		<category><![CDATA[scss]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=272</guid>
		<description><![CDATA[Ever since Xcode 4.2, which removed gcc in favor of clang, ruby 1.8 (and some versions of 1.9, and many gems with native code) wouldn&#8217;t compile or wouldn&#8217;t work correctly when compiled. There was a workaround, in the form of the osx-gcc-installer. It was a little bit hacky &#8211; but the work and the author,&#8230;]]></description>
			<content:encoded><![CDATA[<p>Ever since Xcode 4.2, which removed gcc in favor of clang, ruby 1.8 (and some versions of 1.9, and many gems with native code) wouldn&#8217;t compile or wouldn&#8217;t work correctly when compiled.  There was a workaround, in the form of the <a href="https://github.com/kennethreitz/osx-gcc-installer/">osx-gcc-installer</a>.  It was a little bit hacky &#8211; but the work and the author, Kenneth Reitz, were basically responsible for <a href="http://kennethreitz.com/xcode-gcc-and-homebrew.html">making the command-line tools package happen</a>.</p>
<p>Now it&#8217;s very easy to get a full compiler environment, including pure gcc (rather than clang&#8217;s emulation of it), that can build all variants of ruby and gems without an issue. The trivial process goes like this:</p>
<p>First, download and install the <b>Command Line Tools for Xcode</b>.  These can be installed either through Preferences > Downloads > Components in the full Xcode 4.3 install, or by <a href="http://developer.apple.com/downloads">downloading</a> and installing the standalone package.</p>
<p>Next, <a href="https://github.com/mxcl/homebrew/wiki/installation">install homebrew</a>, a fantastic package manager for OS X.  Run <code>brew update</code> to make sure it&#8217;s fully up to date.</p>
<p>Next, add the homebrew &#8220;dupes&#8221; repository (or &#8220;keg&#8221;), some necessary recipes for installation, and the real gcc 4.2:</p>
<pre class="brush: bash; title: ; notranslate">brew tap homebrew/homebrew-dupes
brew install autoconf automake
brew install apple-gcc42
</pre>
<p>Now you can safely build and install various rubies.  <a href="https://rvm.beginrescueend.com/">rvm</a> is a great way to do this without stepping on the system-installed ruby:</p>
<pre class="brush: bash; title: ; notranslate">bash -s stable &lt; &lt;(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
source ~/.rvm/scripts/rvm
rvm get head
rvm install 1.8.7
rvm install 1.9.3-head
</pre>
<p>Now you can install <a href="http://compass-style.org/install/">compass</a> and use <a href="http://sass-lang.com/">scss</a> in style.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/03/compiling-ruby-with-xcode-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunch &#8211; March 7th, 2012</title>
		<link>http://tintean.devesine.com/2012/03/lunch-today-03072012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lunch-march-7th-2012</link>
		<comments>http://wizardmode.com/2012/03/lunch-march-7th-2012/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 18:53:53 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Lunch]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=267</guid>
		<description><![CDATA[Salmon roll-ups, caprese salad, and leftover lamb boti kabob from our favorite local Indian place. To think, there used to be a time when I thought going out for lunch was the best option.<p style="clear: both;"><a href="http://wizardmode.com/2012/03/lunch-march-7th-2012/">#</a></p>]]></description>
			<content:encoded><![CDATA[<p>Salmon roll-ups, caprese salad, and leftover lamb boti kabob from our favorite local Indian place. To think, there used to be a time when I thought going out for lunch was the best option.</p>
<p style="clear: both;"><a href="http://wizardmode.com/2012/03/lunch-march-7th-2012/">#</a></p>]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/03/lunch-march-7th-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iMania, revisited</title>
		<link>http://wizardmode.com/2012/03/imania-revisited/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=imania-revisited</link>
		<comments>http://wizardmode.com/2012/03/imania-revisited/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 00:17:04 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=258</guid>
		<description><![CDATA[It&#8217;s been a couple of years since the iPad was first released. It&#8217;s time for a new version; the iPad 3 is reportedly being announced tomorrow. Hey, look at that &#8211; everything I asked for (at least explicitly) when the original iPad came out has come to pass. Backgrounding apps (mostly) works; you can run&#8230;]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a couple of years since the iPad was first released.  It&#8217;s time for a new version; the iPad 3 is reportedly being announced tomorrow.  Hey, look at that &#8211; everything <a href="http://wizardmode.com/2010/01/imania/">I asked for</a> (at least explicitly) when the original iPad came out has come to pass.  Backgrounding apps (mostly) works; you can run Processing.js using one of <a href="http://itunes.apple.com/us/app/processing-for-ios-javascript/id492576043?mt=8">various</a> <a href="http://itunes.apple.com/us/app/pr0c3551n6-processing-ide/id493549542?mt=8">apps</a> (probably several others, too); my sister even got a <del>pony</del> horse of her own, and a second horse, in the meantime.<br />
When I said:</p>
<blockquote><p>On the minus side: Apple has made, and will continue to make, an intentionally crippled and limited device in the name of a better overall user experience.</p></blockquote>
<p>I believe I was and still am entirely accurate; this isn&#8217;t necessarily a bad thing, of course.  The recent concerns about address book privacy illustrate the concern perfectly; unrestricted access can easily lead to a very poor user experience.  </p>
<p>Furthermore, when I said:</p>
<blockquote><p>[The iPad will be] an unbelievable platform, and one which the vast majority of people will find satisfies their needs and exceeds all their expectations.</p></blockquote>
<p>it turns out that I was more right than I expected to be &#8211; people are using iPads as their primary (!) machines, without so much as an external keyboard, for serious writing and content creation.  It doesn&#8217;t satisfy all my needs, but it sure satisfies most of them, and exceeded most of my expectations.</p>
<p>What&#8217;s next? Well, iCloud and various other things have demonstrated that Apple&#8217;s goals point squarely at closer integration of all platforms, less reliance on the continual presence of a particular device itself, and a simpler user experience.  Some of these things are fantastic &#8211; Photo Stream saves me a huge amount of time &#8211; and some of them not so much &#8211; Launchpad on the desktop is a sad joke.  The App Store sandboxing and signing restrictions are very much a reasonable tradeoff (especially with non-App Store developer signatures in the offering for Mountain Lion), but splitting the APIs up so some of them are only available to App Store apps and some of them are only available (or at least useful) to non-App Store apps seems like a nightmare if it continues.</p>
<p>So: the iPad will continue to be a rampaging success.  Apple TV will end up being less about a media box per se and more about a central hub for your devices to cross-connect (or maybe the Apple TV box will be /just/ a media interface, and the next generation of Airport devices will provide the smart hub).  They&#8217;ll (maybe) figure out how to make iCloud not suck so much if you have a bunch of machines connected to the same account all on a local network.  Xcode will continue to be an amazingly headachy IDE wrapped around a progressively more impressive compiler.  Other businesses will continue to violently misunderstand what Apple is doing. They&#8217;ll continue to do unpleasant, walled-garden things in the name of a delightful-but-controlled user experience.  I&#8217;ll keep using Apple products, and a Linux box, and a Windows box (but I&#8217;m probably not going to upgrade to W8 any time soon).</p>
<p>And I&#8217;ll hope that legislation doesn&#8217;t cause the internet to crumble out from under me in the meantime.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/03/imania-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunch &#8211; March 6th, 2012</title>
		<link>http://tintean.devesine.com/2012/03/lunch-today-03062012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lunch-march-6th-2012</link>
		<comments>http://wizardmode.com/2012/03/lunch-march-6th-2012/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 21:03:07 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Lunch]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=248</guid>
		<description><![CDATA[Smoked salmon and potato cakes, brie and roasted garlic, beet salad, cinnamon apple yogurt. Too delicious. (No, really. I ate too much.) My wife is a wonderful cook.<p style="clear: both;"><a href="http://wizardmode.com/2012/03/lunch-march-6th-2012/">#</a></p>]]></description>
			<content:encoded><![CDATA[<p>Smoked salmon and potato cakes, brie and roasted garlic, beet salad, cinnamon apple yogurt.  Too delicious. (No, really. I ate too much.) My wife is a wonderful cook.</p>
<p style="clear: both;"><a href="http://wizardmode.com/2012/03/lunch-march-6th-2012/">#</a></p>]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/03/lunch-march-6th-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frodo, pacifier</title>
		<link>http://wizardmode.com/2012/03/frodo-pacifier/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=frodo-pacifier</link>
		<comments>http://wizardmode.com/2012/03/frodo-pacifier/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 00:01:37 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[frodo]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=224</guid>
		<description><![CDATA[<p><a href="http://wizardmode.com/2012/03/frodo-pacifier/"><img width="510" height="407" src="http://wizardmode.com/wp-content/uploads/2012/03/frodo-pacifier-510x407.jpg" class="attachment-medium-img wp-post-image" alt="Frodo with pacifier" title="Frodo with pacifier" /></a></p>
One might suspect him of being slightly jealous of my new godson.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wizardmode.com/2012/03/frodo-pacifier/"><img width="510" height="407" src="http://wizardmode.com/wp-content/uploads/2012/03/frodo-pacifier-510x407.jpg" class="attachment-medium-img wp-post-image" alt="Frodo with pacifier" title="Frodo with pacifier" /></a></p>
<p>One might suspect him of being slightly jealous of my new godson. </p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/03/frodo-pacifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life with a dog</title>
		<link>http://wizardmode.com/2012/02/life-with-a-dog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=life-with-a-dog</link>
		<comments>http://wizardmode.com/2012/02/life-with-a-dog/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 23:42:37 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[frodo]]></category>
		<category><![CDATA[living well]]></category>
		<category><![CDATA[pets]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=43</guid>
		<description><![CDATA[Almost every weekday morning for most of my adult life, I&#8217;ve been getting up and going to work. For the last five months, I&#8217;ve been taking our new puppy Frodo out for a walk first. I hadn&#8217;t thought about how that would affect my life when we decided to get a dog. (Side note: my&#8230;]]></description>
			<content:encoded><![CDATA[<p>Almost every weekday morning for most of my adult life, I&#8217;ve been getting up and going to work.  For the last five months, I&#8217;ve been taking our new puppy Frodo out for a walk first.    I hadn&#8217;t thought about how that would affect my life when we decided to get a dog. </p>
<p>(Side note: my spell check, until moments ago, thought that Frodo was misspelled and perhaps I meant Rodolfo.  Of course!  I&#8217;ll quit calling him Frodo immediately.  How could I be so silly?)</p>
<p>I knew it was going to be a big investment in time and energy; obviously the schedule of my day, weekend, life was going to be tied to caring for and spending time with the dog in a way that it simply isn&#8217;t for cats.  You can leave a cat alone for a day and it hardly notices; a dog will go neurotic if it&#8217;s treated like that (even leaving aside the food and elimination questions). </p>
<p>I&#8217;ve lived with a dog before, though not as the primary caretaker, so I knew roughly what I could expect to get in return for care and feeding: a happy and devoted companion with simple needs and an endlessly big heart.  In so many words, though &#8211; it had been a long time, and I didn&#8217;t really have any internal feeling for how that was going to go; only that I had enjoyed it then and it would be worth the effort now.</p>
<p>Enter Frodo.</p>
<p><a href="http://wizardmode.com/wp-content/uploads/2012/02/frodo-pillow-1024x768.jpg"><img src="http://wizardmode.com/wp-content/uploads/2012/02/frodo-pillow-300x225.jpg" alt="" title="Frodo on a pillow" width="300" height="225" class="alignnone size-medium wp-image-210" /></a></p>
<p>Frodo is a Papillon, a breed noted for intelligence, agility, luxurious silky fur, and big ears. He is small, but not tiny &#8211; he&#8217;s a bit over eight pounds right now, and he might get to ten or even eleven pounds. He has a protective streak and doesn&#8217;t like to hear anyone yelling at anyone else, but he&#8217;ll make friends with anyone or anything (including those squirrels, if he ever manages to catch one).  He&#8217;s clever and observant, a bit needy, and tries very hard to be a good boy when he remembers to.</p>
<p>Nothing I knew about living with a dog prepared me for how profoundly it affected me to <i>own</i> one.  Sure, the responsibility for an animal; I&#8217;m used to that, having <del>owned</del> taken care of cats for many years now. I had forgotten the pleasure and joy in coming home to a wagging tail and excited paws, no matter how tired the puppy is.  However, I had not even thought about how taking him on walks every morning would affect me.</p>
<p>I enjoy getting up in the morning now.</p>
<p>It&#8217;s not that I hated it before.  I wasn&#8217;t a morning person for most of my life, and getting up was a struggle, but I was always too groggy to care much.  When that changed abruptly a few years ago and I started getting up at 6:30 every day, it was just a fact; I had a few extra hours in the morning, shifted over from the evening. I didn&#8217;t enjoy it, but I didn&#8217;t enjoy putting on my shoes, either; it&#8217;s just part of the day. Now, though, I feel like something is missing if I don&#8217;t get up and walk the dog.</p>
<p>It&#8217;s not precisely a meditation thing. The solitude is arbitrary, subject to interruption, and quite limited, and there isn&#8217;t much silence unless there was a heavy snowfall. It&#8217;s probably not about exercise; adding a thirty minute walk to my morning is nice, but not a huge plateau. It isn&#8217;t even the consistency of the ritual, really; I&#8217;ve had many morning rituals that I&#8217;ve enjoyed for years on end, and none of them have made me feel as good about getting up in the morning as this.  It&#8217;s not even because he&#8217;s such a joy to walk; often he is, but just as often he&#8217;s alternating dragging his heels with charging off into the sunset.</p>
<p>I think it&#8217;s more likely that it&#8217;s reminding me to look at things with simple wonder now and then. Frodo isn&#8217;t complicated (he&#8217;s picky! but not complicated); he loves to go outside and smell things and look at things and walk around, and it doesn&#8217;t matter much where we go or what we do.  He adores meeting people on his walks, and he loves to get to play with other dogs, but he&#8217;s just as happy to take a solitary turn around the block and go home to his comfy bed. </p>
<p>Being out there with him every morning helps me remember to see things the same way &#8211; enjoy the world for what it is and where I am.  Look for opportunities, but don&#8217;t miss what I have for what I might have.  Take every chance to spend time with friends, and make new ones when I can.</p>
<p>I&#8217;ll leave the whole &#8220;licking myself in the middle of the park&#8221; thing to Frodo, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/02/life-with-a-dog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Flow: it&#8217;s child&#8217;s play</title>
		<link>http://wizardmode.com/2012/01/git-flow-its-childs-play/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=git-flow-its-childs-play</link>
		<comments>http://wizardmode.com/2012/01/git-flow-its-childs-play/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 16:53:16 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=203</guid>
		<description><![CDATA[At work, we&#8217;re moving over to use Git Flow. (A moment of background: Git is a &#8220;version control system&#8221;, a way of keeping a history of all the changes you&#8217;ve made to a file or files, in much the same way as one might have &#8220;important_spreadsheet_20120103.xls&#8221;, &#8220;important_spreadsheet_20120104.xls&#8221;, &#8220;important_spreadsheet_original.xls&#8221;, and so forth &#8211; but with much&#8230;]]></description>
			<content:encoded><![CDATA[<p>At work, we&#8217;re moving over to use <a href="http://nvie.com/posts/a-successful-git-branching-model/">Git Flow</a>. (A moment of background: Git is a &#8220;version control system&#8221;, a way of keeping a history of all the changes you&#8217;ve made to a file or files, in much the same way as one might have &#8220;important_spreadsheet_20120103.xls&#8221;, &#8220;important_spreadsheet_20120104.xls&#8221;, &#8220;important_spreadsheet_original.xls&#8221;, and so forth &#8211; but with much less clutter.)</p>
<p>It&#8217;s sometimes hard to visualize what&#8217;s going on with Git when you&#8217;re unfamiliar with it, and not everybody is familiar with the concept of a <a href="http://eagain.net/articles/git-for-computer-scientists/">Directed Acyclic Graph</a>, so to help get everyone up to speed, we ordered a Tinkertoy set.</p>
<p><a href="http://wizardmode.com/wp-content/uploads/2012/01/git-tinkertoy.jpg"><img src="http://wizardmode.com/wp-content/uploads/2012/01/git-tinkertoy-225x300.jpg" alt="" title="Tinkertoy Git" width="225" height="300" class="alignnone size-medium wp-image-204" /></a></p>
<p>There are probably better ways to spend Monday morning at work than putting together a Tinkertoy model of a Git repository, but I can&#8217;t think what they might be.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/01/git-flow-its-childs-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recipe: Rosemary Lentil Duck Soup</title>
		<link>http://wizardmode.com/2012/01/recipe-rosemary-lentil-duck-soup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recipe-rosemary-lentil-duck-soup</link>
		<comments>http://wizardmode.com/2012/01/recipe-rosemary-lentil-duck-soup/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 22:14:53 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[recipes]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=177</guid>
		<description><![CDATA[Prep time: About three and a half hours Servings: Lots Start with: 2lb. duck legs, still frozen Roast in tinfoil at 400&#176; for about 45 minutes. Pick off meat and chop coarsely. Break long bones in half. Place bones in stock pot along with: 2 gal. water 2 cups chicken broth or stock (optional) Several&#8230;]]></description>
			<content:encoded><![CDATA[<p><span id="more-177"></span><br />
Prep time: About three and a half hours<br />
Servings: Lots</p>
<p>Start with:</p>
<ul>
<li>2lb. duck legs, still frozen</li>
</ul>
<p>Roast in tinfoil at 400&deg; for about 45 minutes.<br />
Pick off meat and chop coarsely.</p>
<p>Break long bones in half.  Place bones in stock pot along with:</p>
<ul>
<li>2 gal. water</li>
<li>2 cups chicken broth or stock (optional)</li>
<li>Several stalks of celery, with tops if available, whole</li>
<li>Several carrots, with tops if available, whole</li>
<li>Several large sprigs of rosemary (6&#8243;-8&#8243;)</li>
</ul>
<p>Bring to a boil, and maintain a high simmer or low boil for a couple of hours.<br />
Strain and discard solids.  Replace liquid in pot, along with:</p>
<ul>
<li>Chopped duck meat</li>
<li>Lentils (to taste &#8211; 3 cups-ish)</li>
<li>1 large onion, chopped</li>
<li>Several stalks of celery, chopped</li>
<li>2 medium cans of crushed tomatoes</li>
<li>Lots of salt</li>
</ul>
<p>Return to a boil, reduce to a simmer, and simmer until lentils are done, about 18 minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/01/recipe-rosemary-lentil-duck-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing platforms and cross-publishing</title>
		<link>http://wizardmode.com/2012/01/publishing-platforms-and-cross-publishing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=publishing-platforms-and-cross-publishing</link>
		<comments>http://wizardmode.com/2012/01/publishing-platforms-and-cross-publishing/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 17:42:46 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://wizardmode.com/?p=49</guid>
		<description><![CDATA[I am currently publishing with WordPress. Entries are cross-posted to various other places, including LJ and DW. This addresses several basic desires I have for a publishing platform: That I can write using one consistent set of tools, and not have to keep three or four or more targets in mind when I&#8217;m writing; That&#8230;]]></description>
			<content:encoded><![CDATA[<p>I am currently publishing with WordPress. Entries are cross-posted to various other places, including LJ and DW. This addresses several basic desires I have for a publishing platform:</p>
<ol>
<li>That I can write using one consistent set of tools, and not have to keep three or four or more targets in mind when I&#8217;m writing;</li>
<li>That all of my writing (and any images and so forth I might publish) is in one convenient central location for backups and storage;</li>
<li>That I can publish things publicly, note things privately, or write to a group of friends and acquaintances without difficulty;</li>
<li>and that I can fiddle endlessly with the fine details of implementation <em>but</em> that the general functionality just works and does what I want.</li>
</ol>
<p>It&#8217;s also convenient that I can also use the publishing platform I get paid to work on, since it means that such fiddling around with fine details of implementation is, as I like it to be, both my hobby and my profession.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizardmode.com/2012/01/publishing-platforms-and-cross-publishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

