<?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>compu.terlicio.us</title>
	<atom:link href="http://compu.terlicio.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://compu.terlicio.us</link>
	<description>Flying, Computers, and Food</description>
	<lastBuildDate>Thu, 08 Oct 2009 09:07:30 +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>Flig.ht Data API</title>
		<link>http://compu.terlicio.us/2009/10/flig-ht-data-api/</link>
		<comments>http://compu.terlicio.us/2009/10/flig-ht-data-api/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 09:07:30 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Flying]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[flig.ht]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=150</guid>
		<description><![CDATA[One of my side projects has lead to the creation of a new aviation and geo data API. The RESTful interface isn&#8217;t public quite yet, but there are some examples which are running on live data.
Head over to Flig.ht Data and check it out!
]]></description>
			<content:encoded><![CDATA[<p>One of my side projects has lead to the creation of a new aviation and geo data API. The RESTful interface isn&#8217;t public quite yet, but there are some examples which are running on live data.</p>
<p>Head over to <a href="http://data.flig.ht/">Flig.ht Data</a> and check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/10/flig-ht-data-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poor Programming Proliferation</title>
		<link>http://compu.terlicio.us/2009/06/poor-programming-proliferation/</link>
		<comments>http://compu.terlicio.us/2009/06/poor-programming-proliferation/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 20:19:32 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding Practices]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=145</guid>
		<description><![CDATA[It seems, reading the news, that nuclear proliferation will be the end of the world. For a WordPress developer, on the other hand, poor plugin programming seems likely be the end of the world. I rarely take shots at other people online (it seems rather trollish to me), but the sheer horror of Fire Studio&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>It seems, reading the news, that nuclear proliferation will be the end of the world. For a WordPress developer, on the other hand, poor plugin programming seems likely be the end of the world. I rarely take shots at other people online (it seems rather trollish to me), but the sheer horror of <a href="http://fire-studios.com/blog/wordpress-plugin-templates">Fire Studio&#8217;s Wordpress Plugin Templates </a>compel me to say something.<br />
<span id="more-145"></span><br />
While I certainly applaud people who make plugin development easier, if one <em>is</em> going to distribute a plugin framework, it should, at the very least, follow the minimum best practices for WordPress programming. Fire Studio&#8217;s Wordpress Plugin Templates is an epic fail in this regard. I fall pray to these mistakes from time to time myself, and there may be differences of opinion and style in programming. Nonetheless, as the Wordpress Plugin Template is designed to be distributed, I must list out the reasons why NOT to use the Wordpress Plugin Templates.</p>
<p><strong>1:</strong> Overuse of the options table:<br />
<code>get_option()</code> and <code>set_option()</code> are wonderfully useful features, if used in moderation. If not used in moderation, they result in a hellish jumble of entries in the wp-options table. Instead of using many discreet entries, an &#8220;options&#8221; object or array should be serialized into a <code>set_option()</code> call. While this <em>may</em> be overkill for a very simple plugin, once you get to any number of options it is a necessity.</p>
<p><strong>2: </strong> No NONCEs<br />
This is such an offensive mistake it makes me cry a little. As <a href="http://compu.terlicio.us/2008/05/stopping-nonces-part-1/">I</a>(and <a href="http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/">Mark Jaquith</a> and <a href="http://www.prelovac.com/vladimir/improving-security-in-wordpress-plugins-using-nonces">Vladimir Prelovac</a> and <a href="http://lorelle.wordpress.com/2009/03/07/firewalling-and-hack-proofing-your-wordpress-blog/">many others</a>) have written, using nonces is a <strong>must</strong> for any plugin which takes options from a user. Strangely enough, the nonce field is included, but then never checked (WTF?). Without the use of nonces, a nefarious user can arbitrarily change your plugin settings, and possibly even take over your database. Particularly if there are</p>
<p><strong>3: </strong> No SQL Injection Security<br />
Not having nonces is one thing. It&#8217;s bad, but I&#8217;ve forgotten from time to time myself. But not even escaping input before putting it in the database is, to quote &#8220;Yahtzee&#8221;, <a href="http://www.splitreason.com/product/582">pants on head retarded</a>!. Escaping user input is probably the single simplest and most basic security. It&#8217;s the last line of defense against people replacing your header image with horrific porn. Don&#8217;t write code without it.</p>
<p><strong>4: </strong> Unnecessary use of <code>global</code> variables<br />
This exists on two levels:<br />
A) In <code>purpose.php</code>, both <code>$wp_query</code> and <code>$post</code> are called into the function via global. While this probably won&#8217;t do any harm, globally including everything everywhere is what made earlier version of php such a nightmare and it looks messy. If you don&#8217;t need a variable, don&#8217;t include it.<br />
B) <code>$var1</code>-<code>$var4</code> are declared to static values at the top of the file where they will clutter up the global namespace. They are never accessed from their global context, they are always <code>get_option()</code>ed. In fact, the only reason they are declared here is so that they can be <code>add_option</code>ed into options. EVERY TIME THE CODE RUNS. That&#8217;s four superfluous function calls every single time the file loads. This should be done once, on plugin install. Not every single time WordPress loads a page.</p>
<p><strong>5: </strong> Include vs. Require<br />
I realize that this is pretty nit-picky, but, when including files that are <strong>required</strong> for the program to function, the appropriate function is <code>require()</code> (or better yet, <code>require_once()</code>. If the file is missing, the code to break while trying to include the file, instead of mysteriously throwing messages about redeclaration of functions.</p>
<p>In conclusion, while the concept of a plugin framework is laudable, Fire Studio&#8217;s implementation falls far short of any reasonable mark of best practices, and only serves to encourage worst practices.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/06/poor-programming-proliferation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>µAudio 0.7 Preview</title>
		<link>http://compu.terlicio.us/2009/05/audio-07-preview/</link>
		<comments>http://compu.terlicio.us/2009/05/audio-07-preview/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:39:59 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[micro-audio]]></category>
		<category><![CDATA[Software Preview]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[µAudio]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=141</guid>
		<description><![CDATA[With several major features now in &#181;Audio 0.7, I wanted to preview what&#8217;s coming up.
1) Static JavaScript. Instead of using the *.js.php which I have been using, javascript templates are being parsed by a small JS templating engine and stored as static files. This should significantly cut down on the amount of time spent processing [...]]]></description>
			<content:encoded><![CDATA[<p>With several <a href="http://redmine.paintedrockcommunications.com/projects/show/micro-audio">major features</a> now in &micro;Audio 0.7, I wanted to preview what&#8217;s coming up.</p>
<p>1) Static JavaScript. Instead of using the *.js.php which I have been using, javascript templates are being parsed by a small JS templating engine and stored as static files. This should significantly cut down on the amount of time spent processing php. Each file is stored as filename-hashcode.js.</p>
<p>2) Bootstrapper. People have told me a) They don&#8217;t think it&#8217;s fair to count the size without jQuery (it probably isn&#8217;t) and b) They don&#8217;t want to load jQuery on every pageload. To that end, the default install will now include a tiny bootstrapper (hopefully under 200 Bytes) that doesn&#8217;t load the player until and unless someone actually wants to use them.</p>
<p>3) Single audio player. For legacy browsers, there will only be one player, the awesome <a href="http://www.schillmania.com/projects/soundmanager2/">Sound Manager 2</a> player. User interface will be provided via jQuery based controls. Using a single &#8220;invisible&#8221; player allows a consistent JavaScript interface for all the players, and, should help to</p>
<p>4) &lt;audio&gt; tag based player. This will probably be beta only in 0.7, but I want to move towards using the native browser implementation instead of flash. Using a javascript interface and sound manager means it should be a seamless user experience, and the only difference is whether the JavaScript is calling the sound manager js or the &lt;audio&gt; tag.</p>
<p>I&#8217;ll be at WordCamp in San Francisco this weekend, anyone who wants to bend my ear about a feature can do so. Twitter at <a href="http://twitter.com/jwriteclub">jwriteclub</a> to get together.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/05/audio-07-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Aero)Weather powerpoint posted</title>
		<link>http://compu.terlicio.us/2009/03/aeroweather-powerpoint-posted/</link>
		<comments>http://compu.terlicio.us/2009/03/aeroweather-powerpoint-posted/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 22:04:41 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Flying]]></category>
		<category><![CDATA[Groundschool]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[eaa-512]]></category>
		<category><![CDATA[powerpoint]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=139</guid>
		<description><![CDATA[For those of you who attended my aviation weather class and asked for the PowerPoint, I&#8217;ve posted it.
In addition, there&#8217;s now a forum where groundschool students can ask questions and one of the instructors (mostly me) will do our best to answer. Anyone can read the forum, and you can sign up for a free [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who attended my aviation weather class and asked for the PowerPoint, I&#8217;ve <a href="http://compu.terlicio.us/tutorials/eaa-512-groundschool/aeroweather/">posted it</a>.</p>
<p>In addition, there&#8217;s now <a href="http://compu.terlicio.us/forum/eaa-512-ground-school/">a forum</a> where groundschool students can ask questions and one of the instructors (mostly me) will do our best to answer. Anyone can read the forum, and you can sign up for a free account to post questions.</p>
<span class="sfforumlink"><a href="http://compu.terlicio.us/forum/eaa-512-ground-school/aeroweather-powerpoint-posted"><img src="http://compu.terlicio.us/wp-content/plugins/simple-forum/styles/icons/default/bloglink.png" alt="" /> Join the forum discussion on this post</a> - (1) Posts</span>]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/03/aeroweather-powerpoint-posted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#181;Audio 0.6.2 Released</title>
		<link>http://compu.terlicio.us/2009/03/audio-062-released/</link>
		<comments>http://compu.terlicio.us/2009/03/audio-062-released/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 05:58:31 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[micro-audio]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[µAudio]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=127</guid>
		<description><![CDATA[Due to one annoying bug that just missed the 0.6.1 release AND some missing documentation, I decided to push out another update.
As always, head over the the &#181;Audio page at Wordpress.org or grab a copy from my &#181;Audio page.
]]></description>
			<content:encoded><![CDATA[<p>Due to one annoying bug that just missed the 0.6.1 release AND some missing documentation, I decided to push out another update.</p>
<p>As always, head over the the <a href="http://wordpress.org/extend/plugins/microaudio/" title="&micro;Audio at Wordpress.org">&micro;Audio page at Wordpress.org</a> or grab a copy from my <a href="http://compu.terlicio.us/code/plugins/audio/" title="&micro;Audio at Compu.terlicio.us">&micro;Audio page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/03/audio-062-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>&#181;Audio 0.6.1 Released</title>
		<link>http://compu.terlicio.us/2009/03/audio-061-released/</link>
		<comments>http://compu.terlicio.us/2009/03/audio-061-released/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 23:53:33 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[micro-audio]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress.org]]></category>
		<category><![CDATA[µAudio]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=120</guid>
		<description><![CDATA[A minor bug fix release for &#181;Audio is out today. Properly validates at W3C now and fixes a couple little bugs in the css parser.
Head over the the &#181;Audio page at Wordpress.org or grab a copy from my &#181;Audio page.
Those of you waiting for the 0.7 release with the new sidebar widget shouldn&#8217;t have too [...]]]></description>
			<content:encoded><![CDATA[<p>A minor bug fix release for &micro;Audio is out today. Properly validates at W3C now and fixes a couple little bugs in the css parser.</p>
<p>Head over the the <a href="http://wordpress.org/extend/plugins/microaudio/" title="&micro;Audio at Wordpress.org">&micro;Audio page at Wordpress.org</a> or grab a copy from my <a href="http://compu.terlicio.us/code/plugins/audio/" title="&micro;Audio at Compu.terlicio.us">&micro;Audio page</a>.</p>
<p>Those of you waiting for the 0.7 release with the new sidebar widget shouldn&#8217;t have too much longer to wait. It&#8217;s coming with some major changes to how &micro;Audio handles javascript. There will probably be a 0.6.2 release in the next week or so to fix any lingering bugs with the current implementation, and then 0.7 will have the new code.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/03/audio-061-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#181;Audio 0.6 Released</title>
		<link>http://compu.terlicio.us/2009/01/audio-06-released/</link>
		<comments>http://compu.terlicio.us/2009/01/audio-06-released/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 22:56:43 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[micro-audio]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[µAudio]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=108</guid>
		<description><![CDATA[Well, at long last it&#8217;s here, &#181;Audio version 0.6. This releases brings a bunch of changes, including support for css skinning, much improved javascript, a complete removal of all browser dependant code and a smaller basic install (just 450 Bytes).
Head on over to Wordpress.org or grab a copy from my &#181;Audio Page.
]]></description>
			<content:encoded><![CDATA[<p>Well, at long last it&#8217;s here, &micro;Audio version 0.6. This releases brings a bunch of changes, including support for css skinning, much improved javascript, a complete removal of all browser dependant code and a smaller basic install (just 450 Bytes).</p>
<p>Head on over to <a href="http://wordpress.org/extend/plugins/microaudio/">Wordpress.org</a> or grab a copy from my <a href="http://compu.terlicio.us/code/plugins/audio/">&micro;Audio Page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/01/audio-06-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#181;Mint 0.4 Released</title>
		<link>http://compu.terlicio.us/2008/12/mint-04-released/</link>
		<comments>http://compu.terlicio.us/2008/12/mint-04-released/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 01:20:56 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[micro-mint]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[mint API]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress.org]]></category>
		<category><![CDATA[µMint]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=106</guid>
		<description><![CDATA[Just in time for Wordpress 2.7, µMint 0.4.

New Dashboard Widget
Better number formatting
2.7 Compatible

Mosey over to the &#181;Mint page at wordpress.org or grab a copy from my &#181;Mint page.
]]></description>
			<content:encoded><![CDATA[<p>Just in time for Wordpress 2.7, µMint 0.4.</p>
<ul>
<li>New Dashboard Widget</li>
<li>Better number formatting</li>
<li>2.7 Compatible</li>
</ul>
<p>Mosey over to the <a title="&micro;Mint at Wordpress.org" href="http://wordpress.org/extend/plugins/micromint/">&micro;Mint page at wordpress.org</a> or grab a copy from my <a title="&micro;Mint at Compu.terlicio.us" href="http://compu.terlicio.us/code/plugins/mint/">&micro;Mint</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/12/mint-04-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Scones: Recipe</title>
		<link>http://compu.terlicio.us/2008/10/scones-recipe/</link>
		<comments>http://compu.terlicio.us/2008/10/scones-recipe/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 18:11:22 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[California Flavor]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[scones]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=99</guid>
		<description><![CDATA[The Scone (pronounced to rhyme with &#8220;cone&#8221; or &#8220;con&#8221;) must be among the most civilized of breads. Delicious when made plain and served with clotted cream and jam, or when fruit and seasonings are mixed into the dough, a scone can be eaten as part of a Devonshire tea, or as part of the mad [...]]]></description>
			<content:encoded><![CDATA[<p>The Scone (pronounced to rhyme with &#8220;cone&#8221; or &#8220;con&#8221;) must be among the most civilized of breads. Delicious when made plain and served with clotted cream and jam, or when fruit and seasonings are mixed into the dough, a scone can be eaten as part of a Devonshire tea, or as part of the mad morning rush out the door. In addition, as these scones bake well from frozen, you can easily bake them fresh in about 15 minutes. This particular recipe also include the instructions to make my most favorite scone: raspberry and mint.<br />
<span id="more-99"></span></p>
<h4>Ingredients:</h4>
<ul>
<li>1 3/4 cups Flour.*</li>
<li>1/4 Cup Sugar</li>
<li>3 1/2 Teaspoons Baking Powder</li>
<li>1/8 Teaspoon Salt</li>
<li>1/3 Cup Butter, unsalted, cold but not hard</li>
<li>1/3 Cup Sour Cream, cold</li>
<li>1/2 Cup Cream**, as necessary</li>
<li><em>optional</em> 1 Teaspoon Vanilla</li>
</ul>
<p>*  While several types of flour are customary, I prefer white flour from wheat for my scones. In any case, the flour should be well sifted for the best result (and ignore what the package says about &#8220;pre-sifted&#8221;)<br />
**  Especially if fruit is added, the Cream content may need to be modified in order for the dough not to get to wet. Add slowly to avoid a useless mess. Some people (including my mother) like to use buttermilk, although in this case, you may consider 3/4 cup buttermilk and no sour cream.</p>
<p><strong>For the Raspberry and Mint scone:</strong></p>
<ul>
<li>1/3 Cup Raspberrys, washed and drained well</li>
<li>Splash of &#8220;Mint&#8221;*</li>
<li>2 Tablespoons Milk</li>
<li>1 Tablespoon Simple Syrup, or granulated sugar in a pinch</li>
</ul>
<p>*  See the note at the end on Simple Mint Extract.</p>
<h4>Preparation:</h4>
<p>Pre-heat oven to 400 F (convection oven), 425 F (plain oven). Grease a baking sheet well.</p>
<p>Sift the salt, baking powder, flour and sugar together. With the butter cool (but not hard), cut the butter into the dry ingredients, either via a pastry cutter, knives, or a stand mixer on it&#8217;s very lowest settings (preferably using a pastry hook). If you use the mixer, it is important not to over mix, a second or two should do it. The final result should be grain sized lumps of butter in the dry mixture. If you intend to freeze and then bake the scones, and extra tablespoon of butter may be a good idea.</p>
<p>Gently mix in the sour cream and about half the cream. If you are making the scones plain, mix in a teaspoon of vanilla. Add cream until the dough if thick and flaky, but not &#8220;rubbery&#8221;. If you are adding a fruit or other additive that is quite moist, you may want to add it before you finish adding the cream as the moisture in the additive can make the dough too wet if all of the cream is added. If you are adding a soft fruit (like raspberrys) and using a mixer, you should add them after you remove the dough from the mixer, otherwise you will end up with puree.</p>
<p>Turn the dough out on a surface liberally dusted with flour. Knead 3-5 times until the dough is just coated enough in flour that you can easily handle it. Pat the dough out in to approximately an 8&#8243; round. With a lightly greased knife, cut the round into 8 pieces. Lay the pieces out on the baking sheet and bake for 8-12 minutes, until the tops are a very light golden color. Optionally wash the top lightly with a mixture of 2 tablespoons cream to 1 tablespoon simple syrup (or sugar). If baking in a non-convection oven, turn the baking sheet 3-4 times to avoid hotspots. Cool on a rack and enjoy (if someone doesn&#8217;t eat them before they are cool). If freezing, freeze on the baking sheet. From froze, add 3-5 minutes to cooking time.</p>
<p><strong>Mint Raspberry Scones:</strong> My favorite scones have a subtle hint of mint accentuated with delicious fresh raspberrys. To make the mint extract, take 2-3 sprigs of fresh mint, minced finely. Put the mint in a suacepan on low heat with approximately 2 tablespoons of sweet white wine (Riesling, for instance). Add a splash of clear alcohol (Everclear, for example) and allow the mixture to warm, but not to boil until the mint is limp and slightly brown. Drain the mixture thoroughly. I add 1-2 teaspoons of this to the recipe when I add the other ingredients. When adding the berries, wait until you have turned the dough out the knead, and then knead the berries in.</p>
<p><strong>Variation:</strong> Scones can be made with a wide variety of fruits, spices, and even savories. Popular combinations include, current, currents and cinnamon, lemon and poppyseed and ginger and honey. If you have an interesting alternative, drop it in the comments.</p>
<h4>Serving:</h4>
<p>If you get very luck the scones won&#8217;t all get eaten off the cooling rack. Serve the scones warm with clotted cream and jam, or with butter, or all by themselves.  Makes 8 Scones.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/10/scones-recipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing &#181;Mint</title>
		<link>http://compu.terlicio.us/2008/10/announcing-mint/</link>
		<comments>http://compu.terlicio.us/2008/10/announcing-mint/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 02:43:00 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[announcements]]></category>
		<category><![CDATA[micro-mint]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[µMint]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=83</guid>
		<description><![CDATA[
I am happy to announce the release of a new plugin today: µMint. Like my other µ plugins, it&#8217;s a small, lightweight plugin to (hopefully) do something useful. In this case, µMint allows you to painlessly integrate Shaun Inman&#8217;s Mint into Wordpress. Unlike the currently existent solution, µMint does not make use of iframes. Instead, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_sidebar1.jpg" style="float: left; padding: 4px;"><img class="size-medium wp-image-85" title="µMint Sidebar Widget" src="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_sidebar1.jpg" alt="µMint Sidebar" width="141" height="149" /></a></p>
<p>I am happy to announce the release of a new plugin today: µMint. Like my other µ plugins, it&#8217;s a small, lightweight plugin to (hopefully) do something useful. In this case, µMint allows you to painlessly integrate <a title="Mint Gardener" href="http://www.shauninman.com/">Shaun Inman&#8217;s</a> <a href="http://haveamint.com">Mint</a> into Wordpress. Unlike the currently existent solution, µMint does not make use of iframes. Instead, µMint is designed to work with both the <a href="http://84degrees.com/expose/">Exposé API</a>, by <a href="http://84degrees.com">Adam Livesley</a> as well as the included API, µAPI for Mint. Furthermore, there is a development version of a connector whcih allows Wordpress to directly query Mint, when the two share a database.</p>
<p>µAPI does more than just get your stats, it displays them for you. You can have your choice of a sidebar widget, a dashboard widget, or both. And, in the µ plugin philosophy, stats are cached periodically to reduce the number of API calls required.</p>
<p>I think that µAPI neatly bridges the gap between Mint and Wordpress, and I hope you&#8217;ll <a href="http://compu.terlicio.us/code/plugins/mint/">give it a try</a>.</p>
<div id="attachment_84" class="wp-caption alignright" style="width: 508px"><a href="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_dashboard.jpg"><img class="size-full wp-image-84" title="µMint Dashboard" src="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_dashboard.jpg" alt="µMint for Wordpress Dashboard" width="498" height="321" /></a><p class="wp-caption-text">µMint for Wordpress Dashboard</p></div>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/10/announcing-mint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
