<?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"
	>

<channel>
	<title>Goldfish Bowl</title>
	<atom:link href="http://blog.goldfishsbowl.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.goldfishsbowl.co.uk</link>
	<description>Hmm squishy code</description>
	<pubDate>Mon, 03 Nov 2008 23:22:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Nano Tweaks</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/11/03/nano-tweaks/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/11/03/nano-tweaks/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 22:44:06 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/?p=265</guid>
		<description><![CDATA[Right now, I&#8217;m writing a novel.  Before I started this I wondered about how I was going to write all this down, and I decided to do so using LaTeX and nano.
A lot of people think that nano is an editor only for newbies.  Not so!  Whilst it is minimal, it has [...]]]></description>
			<content:encoded><![CDATA[<p>Right now, I&#8217;m writing a novel.  Before I started this I wondered about how I was going to write all this down, and I decided to do so using <a href="http://www.latex-project.org/">LaTeX</a> and <a href="http://www.nano-editor.org/">nano</a>.</p>
<div id="attachment_268" class="wp-caption alignleft" style="width: 130px"><a href="http://blog.goldfishsbowl.co.uk/wp-content/uploads/2008/11/nano_screenshot.jpg"><img class="size-thumbnail wp-image-268" title="nano_screenshot" src="http://blog.goldfishsbowl.co.uk/wp-content/uploads/2008/11/nano_screenshot.jpg" alt="My nano configuration" width="120" /></a><p class="wp-caption-text">My nano configuration</p></div>
<p>A lot of people think that <code>nano</code> is an editor only for newbies.  Not so!  Whilst it is minimal, it has a good set of features that allow you to be productive without having to remember syntax for commands, worry about buffers or having to switch modes all the time.  Not only that, it&#8217;s damn small:</p>
<p><code><br />
fish@jackson:~$ ls /bin/nano<br />
-rwxr-xr-x 1 root root 143K Apr  8  2008 /bin/nano<br />
</code><br />
Compared to:<br />
<code><br />
fish@jackson:~$ ls /usr/bin/vim.basic<br />
-rwxr-xr-x 1 root root 1.5M Jan 31  2008 /usr/bin/vim.basic<br />
</code></p>
<p>So now that I&#8217;ve tempted the non-believers, here we go!<br />
<span id="more-265"></span></p>
<h2>Command Line Options</h2>
<p>From the nano website:</p>
<blockquote><p>The usual way to invoke <code>nano</code> is:</p>
<p><code>nano [OPTION]&#8230; [FILE]</code>But it is also possible to edit several files in a row. Additionally, the cursor can be put on a desired line number by adding this number with a plus sign before any filename, and even in a desired column by adding it with a comma. So the complete synopsis is:</p>
<p><code>nano [OPTION]&#8230; [[+LINE] FILE]&#8230;</code><code>nano [OPTION]&#8230; [[+,COLUMN] FILE]&#8230;</code></p>
<p><code>nano [OPTION]&#8230; [[+LINE,COLUMN] FILE]&#8230;</code></p></blockquote>
<p>I find that chaining files and the goto line options are <em>incredibly</em> useful for debugging code.  Say, you get an error in your script saying &#8220;synax error on line 365&#8243;, you can go directly to that line by specifying it on the command line.  i.e. like</p>
<pre>nano +365 buggyscript.php</pre>
<h2>Whilst you&#8217;re editing &#8230;</h2>
<p>If you&#8217;ve invoked <code>nano</code> without specifying a filename, you might find yourself trying to remember the path you want to save the file in. Hows about a nice file browser? Yep, nano has one! Press ^T when you&#8217;re going to save a file and get a nice easy to navigate browser so you can find the path you need.</p>
<p>Spell Chequer?  In editing mode, ^T and it&#8217;ll invoke <code>spell</code> (for British debian/debianesque users, <code>apt-get install spell ibritish</code>)</p>
<h2>.nanorc Tweaks</h2>
<p>I&#8217;ve found a few nice tweaks that let you make nano even better, especially for the experienced user.  All of these require editing the ~/.nanorc file, which has documentation to be found by typing <code>man nanorc</code>.  However, here are a few lines which I found to be useful:</p>
<p><code>set nohelp</code><br />
Removes the prompt bar at the bottom (good if you already know them all, saves 3 lines!)</p>
<p><code>set morespace </code><br />
Gets rid of the extra newline after the header bar, and gives you an extra line!</p>
<p><code>set smarthome</code><br />
Makes the home key go to the beginning of the text, after any intending whitespace</p>
<p><code>set const</code><br />
Shows your cursor position constantly at the bottom (I find myself doing ^C a lot, so good for me)</p>
<p><code>set mouse</code><br />
Enables mouse support (who knew?).  This includes scroll-wheels, which is just awesome.</p>
<p><code>set nowrap </code><br />
Same as giving -w on command line (I had an alias to do this before)</p>
<p><code>unset historylog</code><br />
By default, saves a log of all your search string to ~/.nano_history.  I&#8217;ve never used that.</p>
<p><code>set boldtext</code><br />
Uses bold type instead of inverted for the header and the status bar.  Entirely a matter of taste, but I think boldtext looks more pro.</p>
<p>Note that you can also <a title="syntax hilighting in nano" href="http://http://tux.50webs.org/tip_nano_highlighting.html">enable <strong>syntax hilighting</strong> in nano</a>, another feature most people don&#8217;t know about.</p>
<p>Hopefully you found out something new about this dinky little editor, and maybe you&#8217;ll learn to love its simplicity!  Then again, you might just<code> :q!</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/11/03/nano-tweaks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Talking into mobiles</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/10/30/talking-into-mobiles/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/10/30/talking-into-mobiles/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:30:39 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[WTFs]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/?p=261</guid>
		<description><![CDATA[This is a trend I&#8217;ve noticed, mostly whilst working in the Library.
I&#8217;ve seen people talking on a mobile phone, and actually move the phone away from their ear and in front of their mouths when they speak.  I don&#8217;t quite understand what the point of this is - and it kinda spits in the face [...]]]></description>
			<content:encoded><![CDATA[<p>This is a trend I&#8217;ve noticed, mostly whilst working in the Library.</p>
<p>I&#8217;ve seen people talking on a mobile phone, and actually move the phone away from their ear and in front of their mouths when they speak.  I don&#8217;t quite understand what the point of this is - and it kinda spits in the face of telecoms engineers that made the GSM system full-duplex.  They are intentionally limiting their phones to half-duplex (i.e. you can either talk or listen, not both at the same time).  Also, mobile phones are designed such that the microphone is in the right place to pick up your speech at a sensible level when the phone is held to your ear.  Putting it right up against your lips just makes your voice overly loud and makes the signal clip - even when you&#8217;re speaking quietly.  Phones have compressers and limiters in them such that your voice is intelligible, regardless of how loudly you&#8217;re speaking. </p>
<p>The other odd thing is that I&#8217;ve only ever seen black people doing this.  Not once have I seen any other ethnicity doing this - which in itself is disturbing (just describing it makes me sound racist). </p>
<p>Most perplexing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/10/30/talking-into-mobiles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I Accidentally a USB</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/10/28/i-accidentally-a-usb/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/10/28/i-accidentally-a-usb/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:18:47 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[WTFs]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/?p=258</guid>
		<description><![CDATA[Since the start of term, I&#8217;ve been getting emails to my Uni account with subject lines like this:



MARKING YOUR USB
USB FOUND - PLEASE COLLECT
ANOTHER USB FOUND!!

 

So I decided to &#8220;mark my USB&#8221; in case I lost it in the future. I made the file &#8220;THIS_IS_A_USB.txt&#8221; on the root of the drive with the following content:
HELLO. [...]]]></description>
			<content:encoded><![CDATA[<p>Since the start of term, I&#8217;ve been getting emails to my Uni account with subject lines like this:</p>
<div><strong></strong></div>
<p><strong></p>
<ul>
<li>MARKING YOUR USB</li>
<li>USB FOUND - PLEASE COLLECT</li>
<li>ANOTHER USB FOUND!!</li>
</ul>
<p> </p>
<p></strong></p>
<p>So I decided to &#8220;mark my USB&#8221; in case I lost it in the future. I made the file &#8220;THIS_IS_A_USB.txt&#8221; on the root of the drive with the following content:</p>
<p>HELLO. THIS IS A USB, AND IT BELLONGS TO xxx@KENT.AC.UK ACTUALLY, this is a USB drive. The thing you&#8217;re plugging it into is a USB (I suppose, but it&#8217;d make more sense to call it a USB connection). Calling it a &#8220;USB&#8221; just confuses people - it&#8217;d be like saying &#8220;I have a red&#8221;, rather than saying &#8220;I have a red ball&#8221;. A USB what? A USB flashlight? A USB cable? A USB keyboard? Anyway. I&#8217;d quite like this back about now so email me <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The compsci IRC channel and everyone on my course have been ruthlessly taking the piss - maybe if this person finds this, they&#8217;ll get a clue.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/10/28/i-accidentally-a-usb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My iPod is depressed</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/10/27/my-ipod-is-depressed/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/10/27/my-ipod-is-depressed/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:04:08 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[WTFs]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/?p=254</guid>
		<description><![CDATA[As I was walking home from campus today, the playlist from shuffle mode went like this:

One - Aimee Man - A song about being lonely
Alone In Kyoto - Air
Radio #1 - Air
Move Along - All American Rejects - I&#8217;m not even sure why I have this song
Northern Birds - Amateur Transplants - an extremely derogatory [...]]]></description>
			<content:encoded><![CDATA[<p>As I was walking home from campus today, the playlist from shuffle mode went like this:</p>
<ul>
<li><strong><a href="http://www.last.fm/music/Aimee+Mann/_/One">One - Aimee Man</a></strong> - A song about being lonely</li>
<li><strong><a href="http://www.last.fm/music/Air/_/Alone+in+Kyoto">Alone In Kyoto - Air</a></strong></li>
<li><strong><a href="http://www.last.fm/music/Air/_/Radio%2B%25231">Radio #1 - Air</a></strong></li>
<li><strong><a href="http://www.last.fm/music/The+All-American+Rejects/Move+Along">Move Along - All American Rejects</a></strong> - I&#8217;m not even sure why I have this song</li>
<li><strong><a href="http://www.last.fm/music/Amateur+Transplants/_/Northern+Birds">Northern Birds - Amateur Transplants</a></strong> - an extremely derogatory song about girls from up North.</li>
</ul>
<p>Just what I needed after a taxing Monday at uni.  <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_neutral.gif' alt=':-|' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/10/27/my-ipod-is-depressed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Door Mouse Nests</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/10/19/door-mouse-nests/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/10/19/door-mouse-nests/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 10:39:04 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/10/19/door-mouse-nests/</guid>
		<description><![CDATA[I&#8217;m watching Countryfile with some pancakes and Colombian coffee (the normal sort of thing you do on a Sunday morning).  They were showing the release of the rare Hazel Doormouse back into the Yorkshire Downs.  They took their mouse and popped it into a little wooden box that they bolted to a Hazel tree.
It occurred [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m watching Countryfile with some pancakes and Colombian coffee (the normal sort of thing you do on a Sunday morning).  They were showing the release of the rare Hazel Doormouse back into the Yorkshire Downs.  They took their mouse and popped it into a little wooden box that they bolted to a Hazel tree.</p>
<p>It occurred to me - surely that&#8217;s giving the mouse some confused messages.  Imagine what it&#8217;d be like following the mouses children when they go to make their own nests.</p>
<p>&#8220;Here we see the young doormouse venturing into the wild to establish his own nest.  After picking a suitable tree with plenty of nuts to eat, he pops off to Homebase to get a sheet of 5 mil ply, a bottle of PVA wood glue and some 20 mil wood screws and raw plugs to build his home - and in the process earning himself 37 Nectar points - which will provide welcome discounts over the cold winter.  &#8221;</p>
<p>Just, no.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/10/19/door-mouse-nests/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Charlie the Unicorn Drinking Game</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/10/04/charlie-the-unicorn-drinking-game/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/10/04/charlie-the-unicorn-drinking-game/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 20:39:36 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/10/04/charlie-the-unicorn-drinking-game/</guid>
		<description><![CDATA[NOTE: This is a really.  Really.  Really bad idea.  I drank a pint of water in the process of this, over the course of 3 minutes.
Charlie the Unicorn Drinking Game: get a drink, watch a Charlie the Unicorn video, and take a sip every time the name &#8220;Charlie&#8221; is spoken.  Down your drink at the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE</strong>: This is a really.  Really.  Really bad idea.  I drank a pint of water in the process of this, over the course of 3 minutes.</p>
<p>Charlie the Unicorn Drinking Game: get a drink, watch a <a href="http://www.youtube.com/watch?v=Q5im0Ssyyus">Charlie the Unicorn</a> video, and take a sip every time the name &#8220;Charlie&#8221; is spoken.  Down your drink at the end.  Collapse and go into a coma.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/10/04/charlie-the-unicorn-drinking-game/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Halp the freshers!</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/09/29/halp-the-freshers/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/09/29/halp-the-freshers/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 20:00:08 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/09/29/halp-the-freshers/</guid>
		<description><![CDATA[
WHOA. Tiring work! So many clueless freshers who need help enrolling or setting up their IT account (&#8221;Do I really need one?&#8221; &#8220;Um.  Yes.  Unless you fancy not knowing when any of your classes are, not being able to get your results or register for your modules&#8221;).
One of the members of full time staff got [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kent.ac.uk/is/computing/img/sbs.jpg" style="padding: 10px" align="left" width="150" height="100" /></p>
<p>WHOA. Tiring work! So many clueless freshers who need help enrolling or setting up their IT account (&#8221;Do I really need one?&#8221; &#8220;Um.  Yes.  Unless you fancy not knowing when any of your classes are, not being able to get your results or register for your modules&#8221;).</p>
<p>One of the members of full time staff got a good one.  Bearing in mind the Help and Enquiry desk is in the Library, Level 2 of 4, in the center - &#8220;Is the Library upstairs too?&#8221; &#8220;Um.  Yes&#8221; *points at Level 2 East &#8220;Are there books in there too?&#8221;. Desker looks at the bookshelves in plain view in the East wing.  &#8221; &#8230; Yes.&#8221;</p>
<p>Then there&#8217;s the ones that you ask &#8220;Have you followed the instructions?&#8221; and they reply quite happily &#8220;Yes! Of course!&#8221; and then as you read them the instructions, they manage to achieve what they were trying to do.  So obviously they weren&#8217;t following the instructions.</p>
<p>Who aren&#8217;t quite as bad as the ones who simply slap down their laptop and demand you set wireless up for them (or somesuch); who&#8217;ve not even bothered to find the instructions, let alone read them; then get indignant when I give them the documentation and tell them to go try it and if it still doesn&#8217;t work come back.  Or those who get annoyed when I have to make an appointment because we&#8217;re really busy - it&#8217;s not my fault we&#8217;re really busy!</p>
<p>But it&#8217;s not all bad.  Hilight of today was when I was quietly logging a query, and all of a sudden a rather attractive girl plonked herself down next to me and said &#8220;This uni is crap isn&#8217;t it?&#8221; &#8220;Why do you say that&#8221; I replied, neutrally.  &#8220;I just tried to print to gill1 and nothing has happened and it&#8217;s eaten my money&#8221; &#8220;Oh.  I&#8217;ll fix that.  Try gill3 instead&#8221; &#8220;Will I still get charged?&#8221; &#8220;Nope!&#8221; &#8220;Yay.  Thanks!&#8221;.  Turns out gill1 did a E_GOT_BORED_AND_CRASHED overnight (the printers tend to do that) and had a 30MB queue of documents from people trying to print their timetables.  After a quick call to The Ones who Can, it was sorted and we brought the printer back up again - but apparently people were still trying to print to it whilst he was clearing out the queue!</p>
<p>As I was leaving, one of the roamers said that a user wanted to know where cafe2 was.  I said that there was no cafe2, but there was a cafe1 which was behind him.  &#8220;But they printed to cafe2!&#8221; he said &#8220;Well, go check Level 1 Center in a parallel dimension and see if it&#8217;s there.&#8221;</p>
<p>So, that&#8217;s fresher madness.  Tomorrow I have lectures from 10AM till 1PM,then a library shift from 1PM to 2PM, then another lecture 2PM till 4PM.  Yes, you&#8217;re right.  I&#8217;m not going to get a chance to stop for lunch.  Joy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/09/29/halp-the-freshers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Embaressment</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/09/23/embaressment/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/09/23/embaressment/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 09:14:45 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/09/23/embaressment/</guid>
		<description><![CDATA[So, I&#8217;m in the Gulbenkian with a coffee and a laptop.  I took the only seat with a power point next to it, and the table next to me is occupied by Mikael Kohling, my first year Java tutor.  I had to explain to a friend who came up to me, saying &#8220;Why aren&#8217;t you [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m in the Gulbenkian with a coffee and a laptop.  I took the only seat with a power point next to it, and the table next to me is occupied by <a href="http://en.wikipedia.org/wiki/Michael_K%C3%B6lling">Mikael Kohling</a>, my first year Java tutor.  I had to explain to a friend who came up to me, saying &#8220;Why aren&#8217;t you at work?&#8221; that I was in fact not at work because I had failed to take into account British Summer Time into my program that imports my work rota into Google calendar.</p>
<p>How embaressing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/09/23/embaressment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lambeth Conference</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/08/02/lambeth-conference/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/08/02/lambeth-conference/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 16:31:40 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[WTFs]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/08/02/lambeth-conference/</guid>
		<description><![CDATA[
Yes yes, the Lambeth Conference has been happening up at UKC, and I&#8217;ve been doing some IT support for it.
I have been working on the Help &#38; Enquiry desk at the library.  Bishops, it seems, are confusing.
We had one fellow who wanted to &#8220;send an email from here&#8221;.  I explained that we didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://timescolumns.typepad.com/gledhill/images/2008/07/17/great_rowan_pic.jpg" style="padding: 1em; float: left" /></p>
<p>Yes yes, the <a href="http://lambethconference.org/">Lambeth Conference</a> has been happening up at <a href="http://kent.ac.uk/">UKC</a>, and I&#8217;ve been doing some IT support for it.</p>
<p>I have been working on the Help &amp; Enquiry desk at the library.  Bishops, it seems, are confusing.</p>
<p>We had one fellow who wanted to &#8220;send an email from here&#8221;.  I explained that we didn&#8217;t give out email addresses, but he didn&#8217;t understand.  He just gave me an email address that he wanted to send the email to, and expected to magically open an email account and just send it.  He only wanted to send one email, he kept telling me - like that makes any difference!</p>
<p>I ended up pointing him at Gmail and getting him to sign up.  At which point he sat at the helpdesk and started writing an email.  I awkwardly asked him to go use another machine, as it looked like he was working there.</p>
<p>Then there was the person who wanted to get the name and addresses of some of the bishops he met.  I got him logged on, at which point he started fiddling with the mouse like he&#8217;d never used one in his life.  Then my replacement turned up and I ran for the hills.</p>
<p>One of the other helpdeskers working in the press office (which, by the way, is not &#8220;as far away from the conference as possible&#8221;, in fact it&#8217;s as close to the conference as possible.  Oh and the fence isn&#8217;t 10 foot high.) got a mention in <a href="http://timescolumns.typepad.com/gledhill/2008/07/lambeth-diary-b.html#more">The Times Online</a>.</p>
<p>So, yes.  Fun times.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/08/02/lambeth-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer of Ca..ookies: Stotty&#8217;s Recipe</title>
		<link>http://blog.goldfishsbowl.co.uk/2008/07/22/summer-of-caookies-stottys-recipe/</link>
		<comments>http://blog.goldfishsbowl.co.uk/2008/07/22/summer-of-caookies-stottys-recipe/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 15:52:58 +0000</pubDate>
		<dc:creator>fish</dc:creator>
		
		<category><![CDATA[Baking]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.goldfishsbowl.co.uk/2008/07/22/summer-of-caookies-stottys-recipe/</guid>
		<description><![CDATA[I mentioned a desire to make cookies in #cs earlier today, and was greeted with a slightly worrying amount of enthusiasm.

14:39  &#60;crowbar&#62; cookie materials are now here :)14:40  &#60;andee&#62; o.O

14:43  &#60;xand&#62; o.o

14:44  * Steve thinks Crowbar likes cooking

14:44  &#60;steve&#62; ...and cookies

14:44  &#60;xand&#62; who doesn't?

14:44  * Stotty&#124;work likes cooking [...]]]></description>
			<content:encoded><![CDATA[<p>I mentioned a desire to make cookies in #cs earlier today, and was greeted with a slightly worrying amount of enthusiasm.</p>
<pre>
14:39  &lt;crowbar&gt; cookie materials are now here :)14:40  &lt;andee&gt; o.O

14:43  &lt;xand&gt; o.o

14:44  * Steve thinks Crowbar likes cooking

14:44  &lt;steve&gt; ...and cookies

14:44  &lt;xand&gt; who doesn't?

14:44  * Stotty|work likes cooking cookies

14:44  &lt;andee&gt; on a lighter note, my debian package for lastest asterisk works <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 

14:45  &lt;stotty|work&gt; check it out:  http://www.jstott.me.uk/recipes/chocolatechipcookies.php

14:45  &lt;andee&gt; as in this wont make you fat <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 

14:45  &lt;steve&gt; I'd use chunks of chocolate <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> 

14:46  &lt;stotty|work&gt; that is the w00test recipe ever

14:50  &lt;crowbar&gt; Stotty|work: you're a star - i was about to look for arecipie :p

14:50  &lt;steve&gt; Use chocolate CHUNKS not chips <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> 

14:50  &lt;crowbar&gt; i've got a bit of cooking chocolate

14:51  &lt;crowbar&gt; and some white chocolate

14:51  &lt;stotty|work&gt; needs milk, white and dark chocolate

14:51  &lt;steve&gt; PERFECT

14:51  &lt;steve&gt; Dark is preferable

14:51  &lt;steve&gt; as an addition <img src='http://blog.goldfishsbowl.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 

14:51  &lt;crowbar&gt; i'll have to make my own white chocolate chunks</pre>
<p>And thus, <a href="http://www.jstott.me.uk/recipes/chocolatechipcookies.php">cookies</a>.  I made a slight alteration in that I put in chocolate chips AND chocolate chunks, as well as adding some cocoa powder and a smidgen of that nice white chocolate stuffs.  I&#8217;ll post my perfected alterations as soon as I&#8217;ve worked out exactly what&#8217;s best.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.goldfishsbowl.co.uk/2008/07/22/summer-of-caookies-stottys-recipe/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.279 seconds -->
<!-- Cached page served by WP-Cache -->
