<?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>The Collected Mike &#187; Lifestyle</title>
	<atom:link href="http://thecollectedmike.com/category/lifestyle/feed/" rel="self" type="application/rss+xml" />
	<link>http://thecollectedmike.com</link>
	<description>The ramblings of Michael O. Jewell</description>
	<lastBuildDate>Tue, 24 Jan 2012 15:43:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Pseudobaking</title>
		<link>http://thecollectedmike.com/2012/01/23/pseudobaking/</link>
		<comments>http://thecollectedmike.com/2012/01/23/pseudobaking/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:57:46 +0000</pubDate>
		<dc:creator>mikej</dc:creator>
				<category><![CDATA[Creations]]></category>
		<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://thecollectedmike.com/?p=228</guid>
		<description><![CDATA[<p>Being a geek who likes to bake brings with it some exciting conflict: on one hand I&#8217;m a very methodical cook, following the recipes to the number and being all &#8216;mise en place&#8216; about organizing the kitchen. On the other hand, there&#8217;s so much that is sense-based: beating to soft peaks, cooking until &#8216;nut coloured&#8217;, [...]]]></description>
			<content:encoded><![CDATA[<p>Being a geek who likes to bake brings with it some exciting conflict: on one hand I&#8217;m a very methodical cook, following the recipes to the number and being all &#8216;<a href="http://en.wikipedia.org/wiki/Mise_en_place" target="_blank">mise en place</a>&#8216; about organizing the kitchen. On the other hand, there&#8217;s so much that is sense-based: beating to soft peaks, cooking until &#8216;nut coloured&#8217;, &#8216;not over-mixing&#8217;, etc. Recipes are a blend of the reproducible and the non-reproducible.</p>
<p>This got me to thinking how chefs come up with recipes. What makes one recipe for tomato soup different to another recipe for tomato soup? Why did they make that change? Is it based on something they read elsewhere, or is it just from experience? Partly it comes down to chemistry (kneading to form gluten strands, or using baking soda to produce CO2), but I&#8217;m sure there must be some happy accidents or successful tests that lead to alterations.</p>
<p>So, I wanted to compare some recipes. I started with brownies, as these have a very simple recipe, but also a combination of different ingredients, processes, and subjective measurements. And then I shifted to some pseudocode:</p>
<p><code><br />
ingredients:<br />
200g of 70% dark chocolate<br />
250g of unsalted butter<br />
360g of caster sugar<br />
4 eggs<br />
65g of plain flour<br />
80g of cocoa powder<br />
1tsp of baking powder</code><br />
<code><br />
X = recipe:<br />
O = preheat(oven, 180C)<br />
G = line(tin, greaseproof paper)<br />
A = wmelt([chocolate, butter])<br />
B = stir([cocoa powder, flour, baking powder, caster sugar])<br />
C = stir([A, B))<br />
D = beat(eggs)<br />
E = stir([C, D]) until silky<br />
F = fill(G, E)<br />
bake(O, F, 25)</code></p>
<p>This brought to light a few interesting questions:</p>
<ul>
<li>What happens to the variables? Once <code>stir([A, B])</code> has been performed, A and B no longer exist in that form. Any reference to them should probably fail. If we had <code>B=100g of A</code> then A would then weigh 100g less &#8211; or would another variable be created implicitly?</li>
<li>Which steps can be optimized? If we&#8217;d had <code>B = stir([cocoa powder, flour])</code> and <code>B2 = stir([B, baking powder, caster sugar])</code>, how would we know that the two can be combined?</li>
<li>Is it possible to tell when operations can be handled concurrently? If there were two cooks in the kitchen, one could have handled the creation of A, and the other the creation of B. But what if creating A somehow impacted the creation of B?</li>
</ul>
<p>The next step is to make a parser for the above, possibly with some minor changes to address the questions, but I&#8217;m keen to keep any recipe language flexible enough to keep the &#8216;sensual&#8217; aspects, even if it means that it cannot be run by a machine. For me the interest lies in comparing recipes, seeing where processes are equivalent, or taking aspects from one recipe and applying them to another. Watch this space!</p>
]]></content:encoded>
			<wfw:commentRss>http://thecollectedmike.com/2012/01/23/pseudobaking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>March Experiment: Hacking My Unconscious</title>
		<link>http://thecollectedmike.com/2010/03/11/march-experiment-hacking-my-unconscious/</link>
		<comments>http://thecollectedmike.com/2010/03/11/march-experiment-hacking-my-unconscious/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 19:31:43 +0000</pubDate>
		<dc:creator>mikej</dc:creator>
				<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://thecollectedmike.com/?p=168</guid>
		<description><![CDATA[<p>For March, I&#8217;m going to see what I can do to improve my sleep patterns. I typically only need about 6.5 hours sleep per night (usually from 2am to 8:30am) and somehow still feel perfectly normal in the morning, but I figure my unconscious is there to be messed with. Here&#8217;s what I shall do, [...]]]></description>
			<content:encoded><![CDATA[<p>For March, I&#8217;m going to see what I can do to improve my sleep patterns. I typically only need about 6.5 hours sleep per night (usually from 2am to 8:30am) and somehow still feel perfectly normal in the morning, but I figure my unconscious is there to be messed with. Here&#8217;s what I shall do, probably trying each for a week and continuing with them if they work:</p>
<ul>
<li>March 11th: <a href="http://en.wikipedia.org/wiki/Hypnagogia">Hypnagogic</a> sleep. Defined as the experiences you get when falling asleep, there are a couple of techniques to experiment with this outside of regular sleeping. <a href="http://www.scribd.com/doc/3932344/40-Sleep-Hacks-The-Geeks-Guide-to-Optimizing-Sleep">This ebook</a> suggests these two approaches, which I&#8217;ll try in order (the first for a couple of days, then the second):</li>
<h4>The Arm Approach</h4>
<blockquote><ul>
<li>Lie on your back in bed or sit in a comfortable armchair.
<li>Rest your elbow on the surface of the bed or the arm of the chair so that your forearm is pointing straight up. Let your wrist go limp if that is more comfortable for you.
</li>
<li>Focus your mind on a problem you wish to solve.
</li>
<li>Allow yourself to drift toward sleep, while continuing to focus on the problem as long as you can.
</li>
<li>Wait for your arm to relax and fall, waking you up. This will happen naturally when you begin to fall more deeply asleep.
</li>
<li>Record any creative thoughts you had while dozing.
</li>
<li>Repeat.</li>
</ul>
</blockquote>
<h4>The Spoon Approach</h4>
<blockquote><p>Dali was famous for his spoon method. He rested his chin on a spoon held up by his hands. As Dali drifted off, his muscles would relax and the spoon would fall on the table and wake him up from a hypnagogic dream. He then proceeded to paint what he saw.</p></blockquote>
<li>March 19th: <a href="http://en.wikipedia.org/wiki/Lucid_dream">Lucid dreaming</a>. There&#8217;s a <a href="http://www.ehow.com/how_2100875_control-dreams-lucid-dreaming.html">handy guide</a> to this which looks intriguingly doable. Plus it ties in to the previous step (the &#8216;recording&#8217; stage) quite neatly!</li>
<li>March 26th: Waking. I&#8217;m going to get one of <a href="http://www.sleeptrackerpro.co.uk/product.asp?id=753&#038;sm=198">these</a> for this (and hopefully for future, given its price/good reviews/geekery!). It&#8217;s designed to wake you at your optimal &#8216;almost awake&#8217; moment which is near when you want to wake up, through some cunning use of movement sensors (I believe), and it even keeps sleep data which you can download via USB. I&#8217;m also going to try replacing my traditional beepy alarm clock with various music genres to see which work well, and which don&#8217;t.</li>
</ul>
<p>Other things: I&#8217;ve (finally) put a section of my table aside as a &#8216;breakfast space&#8217; (I&#8217;m incredibly bad at having breakfast) to see if having everything ready and waiting makes me more likely to actually have it!</p>
]]></content:encoded>
			<wfw:commentRss>http://thecollectedmike.com/2010/03/11/march-experiment-hacking-my-unconscious/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

