<?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>Damek.</title>
	<atom:link href="http://damek.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://damek.org</link>
	<description>Adam, the universe, and things between, from the ground up.</description>
	<lastBuildDate>Tue, 15 May 2012 17:00:40 +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>I want to shout it from the rooftops</title>
		<link>http://damek.org/2012/05/15/i-want-to-shout-it-from-the-rooftops/</link>
		<comments>http://damek.org/2012/05/15/i-want-to-shout-it-from-the-rooftops/#comments</comments>
		<pubDate>Tue, 15 May 2012 17:00:40 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Misc.]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[monogamy]]></category>
		<category><![CDATA[relationships]]></category>

		<guid isPermaLink="false">http://damek.org/?p=1882</guid>
		<description><![CDATA[You can be really into someone but do you want to be with someone who wants less for you than you want for yourself? Do you want to be loved by someone who creates false choices for you? Love yourself.]]></description>
			<content:encoded><![CDATA[<p>You can be really into someone but do you want to be with someone who wants less for you than you want for yourself?</p>
<p>Do you want to be loved by someone who creates false choices for you?</p>
<p><em>Love yourself.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://damek.org/2012/05/15/i-want-to-shout-it-from-the-rooftops/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Savage Minds blog Calibre news-fetching recipe</title>
		<link>http://damek.org/2012/03/20/savage-minds-blog-calibre-recipe/</link>
		<comments>http://damek.org/2012/03/20/savage-minds-blog-calibre-recipe/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 17:55:00 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[calibre]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://damek.org/?p=1854</guid>
		<description><![CDATA[Following on from the previous post about Calibre, here&#8217;s a recipe I cooked up for Calibre to fetch posts from the Savage Minds blog. To make it work for you, you would &#8220;Add a custom news source&#8221; in Calibre, then &#8230; <a class="more-link" href="http://damek.org/2012/03/20/savage-minds-blog-calibre-recipe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Following on from the <a href="http://damek.org/2012/03/19/how-to-fix-the-date-on-news-sent-by-email-from-calibre-to-kindle/">previous post about Calibre</a>, here&#8217;s a recipe I cooked up for Calibre to fetch posts from the <a href="http://savageminds.org">Savage Minds</a> blog. To make it work for you, you would &#8220;Add a custom news source&#8221; in Calibre, then &#8220;Switch to Advanced mode,&#8221; paste the following code in the box, and click &#8220;Add/Update recipe.&#8221; Voil&agrave;, you have a custom recipe you can schedule in the regular Fetch news interface.</p>
<p>Comments in the code below should give hints as to what the parts are doing. I relied on the <a href="http://manual.calibre-ebook.com/news.html">Calibre manual news page</a>, its <a href="http://manual.calibre-ebook.com/news_recipe.html">API documentation</a>, and hunting around the <a href="http://www.mobileread.com/forums/forumdisplay.php?f=228">Recipes forum at Mobileread</a> to figure this out.</p>
<p><span id="more-1854"></span></p>
<pre class="brush: python; gutter: true; first-line: 1; highlight: []; html-script: false">from calibre.web.feeds.news import BasicNewsRecipe

class Savage_Minds(BasicNewsRecipe):
    title = u&#039;Savage Minds&#039;
    description = &#039;Notes and Queries in Anthropology - A Group Blog&#039;
    oldest_article = 7
    max_articles_per_feed = 100

    #&quot;cover_url&quot; specifies a special cover image to use so it&#039;s pretty.
    cover_url = &#039;http://savageminds.org/wp-content/themes/SM2009Test/images/sidebar/sidebox.jpg&#039;

    #&quot;use_embedded_content&quot; forces Calibre to ignore any content in the RSS
    #feed and to go get content from the articles linked in the feed.
    use_embedded_content = False

    #The next two items keep Calibre from cleaning the HTML or using
    #the blog&#039;s own stylesheets. Seems to work for me.
    auto_cleanup = False
    no_stylesheets = True

    feeds = [(u&#039;Savage Minds Entries&#039;, u&#039;http://savageminds.org/feed/&#039;)]

    &quot;&quot;&quot;
    Next, &quot;keep_only_tags&quot; makes sure we&#039;re just grabbing the part of the
    blog page that contains the post and its comments.
    &quot;remote_tags&quot; cleans out some superfluous HTML that makes no sense in
    a kindle-ready ebook. This is all operating on the CSS in the website.
    I used the Firebug extension in Firefox to determine the appropriate
    element classes and ids to eliminate.
    &quot;&quot;&quot;
    keep_only_tags    = [dict(name=&#039;div&#039;, attrs={&#039;id&#039;:&#039;content&#039;})]
    remove_tags = [dict(name=&#039;div&#039;, attrs={&#039;class&#039;:&#039;meta clear&#039;}),
        dict(name=&#039;div&#039;, attrs={&#039;class&#039;:&#039;snap_nopreview sharing robots-nocontent&#039;}),
        dict(name=&#039;div&#039;, attrs={&#039;id&#039;:&#039;respond&#039;}),
        dict(name=&#039;div&#039;, attrs={&#039;class&#039;:&#039;c-grav&#039;}),
        dict(name=&#039;span&#039;, attrs={&#039;class&#039;:&#039;c-permalink&#039;})
        ]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://damek.org/2012/03/20/savage-minds-blog-calibre-recipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix the date on news sent by email from Calibre to Kindle</title>
		<link>http://damek.org/2012/03/19/how-to-fix-the-date-on-news-sent-by-email-from-calibre-to-kindle/</link>
		<comments>http://damek.org/2012/03/19/how-to-fix-the-date-on-news-sent-by-email-from-calibre-to-kindle/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 15:34:45 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[calibre]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[plugboard]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://damek.org/?p=1841</guid>
		<description><![CDATA[Around New Years, K. got a Kindle Touch, and seeing her use it convinced me to get one. What really sold me was Calibre, which is like iTunes for books (except even better because it&#8217;s open source and not tied &#8230; <a class="more-link" href="http://damek.org/2012/03/19/how-to-fix-the-date-on-news-sent-by-email-from-calibre-to-kindle/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Around New Years, K. got a Kindle Touch, and seeing her use it convinced me to get one. What really sold me was <a href="http://calibre-ebook.com/">Calibre</a>, which is like iTunes for books (except even better because it&#8217;s open source and not tied to a particular media store, but I digress).</p>
<p>One thing Calibre can do is &#8220;fetch news&#8221;&#8212;download content from blogs and other sources and format it for your ereader. You can do this manually, or Calibre can automatically fetch it on a schedule and even automatically email it to your device. So I set it up to get a couple of blogs and news sites every day and email it to my kindle&#8217;s address so I&#8217;d have news to peruse each morning.</p>
<p>But there was one &#8220;first world problem.&#8221; Sure, if you use a USB cable to connect your device and then put the news on it that way, the items show their date, which is convenient for dated content. But if you have the news items automatically emailed to your Kindle, which is more convenient, the items lose the date and simply say &#8220;calibre,&#8221; which is their &#8220;author.&#8221; It&#8217;s a problem of metadata.</p>
<p>Then I discovered &#8220;metadata plugboards&#8221; in Calibre and figured out how to fix it so any news emailed to my Kindle shows its date, while everything else emailed shows its author. Here&#8217;s what I did:<br />
<span id="more-1841"></span></p>
<ol>
<li>click Preferences</li>
<li>click Metadata plugboards under import/export</li>
<li>next to &#8220;Add new plugboard&#8221;</li>
<ol>
<li>select &#8220;any format&#8221; under Format</li>
<li>select &#8220;email&#8221; under Device</li>
<li>copy the following code and paste it into the &#8220;source template&#8221; box:
<pre class="brush: python; gutter: false; first-line: 1; highlight: []; html-script: false">{tags:&#039;contains($, &#039;News&#039;, field(&#039;date&#039;), field(&#039;authors&#039;))&#039;}</pre>
</li>
<li>select &#8220;authors&#8221; under Destination field</li>
</ol>
<li>click Save plugboard</li>
<li>click Close on the Preferences window</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://damek.org/2012/03/19/how-to-fix-the-date-on-news-sent-by-email-from-calibre-to-kindle/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Toasted Marshmallow Bacon Ginger Ice Cream Recipe</title>
		<link>http://damek.org/2011/11/28/toasted-marshmallow-bacon-ginger-ice-cream-recipe/</link>
		<comments>http://damek.org/2011/11/28/toasted-marshmallow-bacon-ginger-ice-cream-recipe/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 17:20:40 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Cuisine]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[ginger]]></category>
		<category><![CDATA[ice cream]]></category>
		<category><![CDATA[marshmallow]]></category>
		<category><![CDATA[recipe]]></category>

		<guid isPermaLink="false">http://damek.org/?p=1829</guid>
		<description><![CDATA[Or, as christened by a mis-speaking of the word &#8220;clusters,&#8221; you may call this concoction, &#8220;Adam&#8217;s Fluffy Crustles,&#8221; or if you prefer, &#8220;Crustlefluff.&#8221; This idea evolved from a throwaway comment during a brunch that marshmallow-encrusted bacon might be tasty. Next &#8230; <a class="more-link" href="http://damek.org/2011/11/28/toasted-marshmallow-bacon-ginger-ice-cream-recipe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Or, as christened by a mis-speaking of the word &#8220;clusters,&#8221; you may call this concoction, &#8220;Adam&#8217;s Fluffy Crustles,&#8221; or if you prefer, &#8220;Crustlefluff.&#8221;</p>
<p>This idea evolved from a throwaway comment during a brunch that marshmallow-encrusted bacon might be tasty. Next thing you know, &#8220;I need to make bacon-marshmallow ice cream!&#8221;</p>
<p>I adapted <a href="http://www.healthyfoodforliving.com/?p=23957">this recipe for toasted marshmallow ice cream</a>, adding chopped bacon and chopped, crystallized ginger in the last few minutes of churning.</p>
<p>It turned out <em>amazing</em>. Everyone at Thanksgiving was loving it. The toasty marshmallow flavor alone is divine, but the savory bacon bits and the bite of the ginger really makes this ice cream a lot of fun to eat. In fact, I highly suggest, once the bacon &#038; ginger is chopped up, taking a pinch of both and just eating them together. I have to cook something with ginger &#038; bacon sometime, they work very well together.</p>
<p><strong>Toasted Marshmallow Bacon Ginger Ice Cream Recipe:</strong><br />
<span id="more-1829"></span><br />
adapted from <a href="http://www.healthyfoodforliving.com/?p=23957">this recipe by Healthy Food For Living</a><br />
which was adapted from <a href="http://www.roastingrambler.com/2010/10/toasted-marshmallow-ice-cream/">this recipe by Roasting Rambler</a></p>
<p>yield: about 4 cups; 8 servings</p>
<p>Ingredients:</p>
<p>7-10 oz marshmallows<br />
2 cups 1% lowfat milk<br />
1 tsp vanilla bean paste<br />
5 egg yolks<br />
1/3 cup evaporated cane juice OR other unrefined granulated sugar<br />
pinch of salt<br />
1 cup heavy cream<br />
1 tsp pure vanilla extract<br />
7-10 pieces bacon, cooked crisp &#038; chopped<br />
2 handfulls crystallized ginger, chopped</p>
<p>Directions:</p>
<p><em>First</em>, I used the &#8220;broiler method&#8221; in the <a href="http://www.roastingrambler.com/2010/10/toasted-marshmallow-ice-cream/">Roasting Rambler recipe</a> to &#8220;toast&#8221; the marshmallows. My only modification was, since I didn&#8217;t catch the marshmallows toasting fast enough, and they got a bit burned, I didn&#8217;t toast them again on the other side. The bit of burning was fine, and gave the ice cream plenty of toasty flavor.</p>
<p><em>Second,</em> I cooked my bacon: to do this, I lined a baking sheet with foil, arranged the bacon slices on the sheet, sprinkled sugar over the slices, put the pan in the oven, and turned it on to 400°F. (Start with a cool oven! You might want to cook your bacon before broiling your marshmallows for this reason.) After 10 minutes or so, I flipped the slices over and sprinkled more sugar on them. After another 10 minutes they were done. I put them on a rack to cool, and when cool, trimmed off fatty bits that would be too unpleasantly chewey in the ice cream, and chopped up the crispier bits into tiny pieces. Set aside for later use.</p>
<p><em>Third,</em> I took my couple handfulls of crystallized ginger and chopped them up into tiny pieces, too. Set aside for later use.</p>
<p>Making the ice cream:</p>
<ol>
<li>Using a spatula, transfer the marshmallows into a blender. Set aside.
<li>Place the egg yolks, evaporated cane juice, and salt in a large mixing bowl. Whisk vigorously until the mixture turns a pale yellow color. Set aside.
<li>Place the milk and vanilla bean paste in a medium-sized heavy-bottomed saucepan. Set the burner on your stove to medium heat. Heat the mixture, stirring often, until it is steaming but not quite simmering.
<li>Spoon out about 1/4 cup of the hot milk and slowly stream it into the egg yolk mixture, whisking constantly to temper the eggs.
<li>When the mixture is well-combined, repeat step 7 with an additional 1/4 cup of the hot milk.
<li>Pour the tempered egg mixture into the saucepan with the hot milk and heat, stirring slowly but constantly, until the mixture coats the back of a wooden spoon and has thickened to the consistency of heavy cream.
<li>Remove mixture from the heat and whisk for a few minutes to cool it down slightly. Pour mixture over the marshmallows in the blender. Blend for a minute or so, then let the mixture sit with the lid off for a couple of minutes. Replace the lid and run the blender for an additional minute.
<li>Add the cold heavy cream and vanilla extract to the blender and blend for 30 seconds.
<li>Remove lid of blender and let sit on the counter until the mixture cools to room temperature. Replace the lid and let mixture chill in the fridge until very cold, at least 6 hours.
<li>When ready to churn the ice cream, give the mixture a quick blend (it will be very thick after chilling, and some of the marshmallow might have begun to separate from the liquid), pour into your ice cream maker, and follow manufacturer’s instructions.
<li>In the last few minutes of churning (or at least after the ice cream has begun to thicken a bit), slowly add the chopped-up bacon &#038; crystallized ginger. Churning will evenly distribute it.
<li>Transfer ice cream to a sealable container, cover, and place in freezer until firm, at least 2 hours.<br />
]]></content:encoded>
			<wfw:commentRss>http://damek.org/2011/11/28/toasted-marshmallow-bacon-ginger-ice-cream-recipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drink Recipe: A Scotsman on a Horse</title>
		<link>http://damek.org/2011/11/28/drink-recipe-a-scotsman-on-a-horse/</link>
		<comments>http://damek.org/2011/11/28/drink-recipe-a-scotsman-on-a-horse/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 16:20:06 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Cuisine]]></category>
		<category><![CDATA[drink]]></category>
		<category><![CDATA[recipe]]></category>

		<guid isPermaLink="false">http://damek.org/?p=1827</guid>
		<description><![CDATA[Once upon a time (five or more years ago) I decided that the title of this Monty Python sketch, &#8220;A Scotsman on a Horse,&#8221; should be a cocktail: It just sounds fun to order! But what kind of drink? With &#8230; <a class="more-link" href="http://damek.org/2011/11/28/drink-recipe-a-scotsman-on-a-horse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Once upon a time (five or more years ago) I decided that the title of this Monty Python sketch, &#8220;A Scotsman on a Horse,&#8221; should be a cocktail:</p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/08jOGYFZCkM" frameborder="0" allowfullscreen></iframe></p>
<p>It just sounds fun to order! But what kind of drink? With some inspiration from a drink menu in Oxford, England, that had an equine-related name for a drink with ginger ale, I decided on the following:</p>
<p><strong>A Scotsman on a Horse</strong></p>
<ul>
<li>your favorite scotch whisky</li>
<li>ginger ale</li>
<li>a cinnamon stick, or a dash of ground cinnamon if necessary</li>
</ul>
<p>It&#8217;s delicious.</p>
]]></content:encoded>
			<wfw:commentRss>http://damek.org/2011/11/28/drink-recipe-a-scotsman-on-a-horse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

