<?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>Dan Bishop</title>
	<atom:link href="http://www.danbishop.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danbishop.org</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 28 Feb 2010 10:56:41 +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>Facebook Chat Now Works With Jabber/XMPP</title>
		<link>http://www.danbishop.org/2010/02/11/facebook-chat-now-works-with-jabber-xmpp/</link>
		<comments>http://www.danbishop.org/2010/02/11/facebook-chat-now-works-with-jabber-xmpp/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 16:38:41 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=218</guid>
		<description><![CDATA[Yup, facebook chat, notorious for being the world&#8217;s worst chat platform (yes even worse than MSN) now allows you to connect using XMPP (the best chat protocol in the world).
All you have to do is set a facebook username, then you can connect using username@chat.facebook.com and your facebook password&#8230; it really is that easy!
You can [...]]]></description>
			<content:encoded><![CDATA[<p>Yup, facebook chat, notorious for being the world&#8217;s worst chat platform (yes even worse than MSN) now allows you to connect using XMPP (the best chat protocol in the world).</p>
<p>All you have to do is set a facebook username, then you can connect using username@chat.facebook.com and your facebook password&#8230; it really is that easy!</p>
<p>You can see more details and instructions for specific chat clients here: <a href="http://www.facebook.com/sitetour/chat.php" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/sitetour/chat.php?referer=');">http://www.facebook.com/sitetour/chat.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2010/02/11/facebook-chat-now-works-with-jabber-xmpp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming with PyGTK and Glade</title>
		<link>http://www.danbishop.org/2010/02/02/programming-with-pygtk-and-glade/</link>
		<comments>http://www.danbishop.org/2010/02/02/programming-with-pygtk-and-glade/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:17:19 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[glade]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=209</guid>
		<description><![CDATA[This is my translation of Florian Diesch&#8217;s guide found here: http://www.florian-diesch.de/doc/python-und-glade/online/einleitung.html
I translated this guide as there doesn&#8217;t seem to be anything about using gtkbuilder and glade, rather than the older libGlade, with python. The guide is not yet complete, but I will keep working on it over the coming weeks.
Dieser Werk bzw. Inhalt ist unter [...]]]></description>
			<content:encoded><![CDATA[<p>This is my translation of Florian Diesch&#8217;s guide found here: <a href="http://www.florian-diesch.de/doc/python-und-glade/online/einleitung.html" onclick="pageTracker._trackPageview('/outgoing/www.florian-diesch.de/doc/python-und-glade/online/einleitung.html?referer=');">http://www.florian-diesch.de/doc/python-und-glade/online/einleitung.html</a></p>
<p>I translated this guide as there doesn&#8217;t seem to be anything about using gtkbuilder and glade, rather than the older libGlade, with python. The guide is not yet complete, but I will keep working on it over the coming weeks.</p>
<p>Dieser Werk bzw. Inhalt ist unter einer <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/de/" onclick="pageTracker._trackPageview('/outgoing/creativecommons.org/licenses/by-nc-sa/3.0/de/?referer=');">Creative Commons-Lizenz</a> lizenziert. This work is released under a creative commons licence (cc-by-nc-sa).</p>
<p><span id="more-209"></span></p>
<h1>Introduction</h1>
<p>This guide should give you a first look at how to use the programming language Python and the interface designer Glade.</p>
<p>I will concentrate on the Python code rather than the use of Glade, which is already well documented in the Glade Interface Designer Handbook.</p>
<p>This text neither should, nor can be used as a replacement for the PyGTK Reference Manual, or the offical PyGTK Tutorial.</p>
<p>I will take it as a given that you have experience with Python and that you are working with Glade 3.6.x on Linux and that your project is saved in the GTKBuilder format for GTK 2.16.</p>
<h1>Signals and Events</h1>
<p>Like many libraries for graphical user interfaces, GTK is event driven. A central event loop waits until something happens then forwards the control onto the routines responsible for the processing of the event.</p>
<p>In order to process events, GTK uses signals: control elements and other objects react to events, which the corresponding signals trigger. Using these signals, you can control callbacks, which will then always be called, so that the corresponding signal will be triggered.</p>
<address>Note:</address>
<address>It is conventional to name callbacks &#8216;on_OBJECTNAME_SIGNALNAME&#8217; E.g. the &#8216;pressed&#8217; signal of the object bt_ok (an ok button) would be &#8216;on_bt_ok_pressed&#8217;.</address>
<p>Signals make the connection between the user interface and the program&#8217;s code such that: every action of the user triggers one or more signals, which you can connect to with callbacks, in order to react to the user&#8217;s request. In addition, signals are often used to enable different parts of the program to communicate with one another. Therefore, a GTK program often contains very many signal callback routines.</p>
<h1>Connecting to Signals</h1>
<p>Using the method gtk.Widget.connect() you can connect a callback with a signal.</p>
<p>Instead of this, you can use gtk.Builder.connect_signals() to automatically connect all callbacks with their corresponding signals.</p>
<p>Additionally, you must specify the name of the callback in the signal properties of the gui element in Glade.</p>
<p>Whilst a callback is being called, the main loop cannot process any signals. Therefore, the interface doesn&#8217;t react to the mouse, or the keyboard and also, changes to the interface elements are usually seen only after completion of the routine.</p>
<p>Therefore, in a callback which is activated by the keyboard/mouse, it is often useful to trigger a handler, for example a progress bar, using the following lines of code:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">while</span> gtk.<span style="color: black;">events_pending</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
      gtk.<span style="color: black;">main_iteration</span> <span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<h1>Important Functions</h1>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">gtk.<span style="color: black;">main</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Starts the main loop.</p>
<p>This function is normally called after you have shown the main window of your program.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">gtk.<span style="color: black;">main_quit</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>This function ends the main loop. It is usually called in the callback for the delete-even signal of your main window.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">gtk.<span style="color: black;">events_pending</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>returns:	True if an event is waiting to be processed, otherwise False</p>
<p>Checks whether there is currently an event waiting to be processed.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">gtk.<span style="color: black;">main_iteration</span><span style="color: black;">&#40;</span>block=<span style="color: #008000;">True</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Parameter:	block – True, if the function should wait an event has been processed.</p>
<p>Executes a single iteration of the main loop.</p>
<p>This function is typically called together with</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">gtk.<span style="color: black;">events_pending</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p> in order to execute all queued events.</p>
<h1>Example</h1>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">def</span> on_window1_delete_event<span style="color: black;">&#40;</span><span style="color: #008000;">self</span>, <span style="color: #66cc66;">*</span>args<span style="color: black;">&#41;</span>:
     gtk.<span style="color: black;">main_quit</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

<p>This is the on_window1_delete_event, the callback for the delete-event signal of window &#8220;window1&#8243;. Should this window be destroyed (closed), then gtk.main_quit() will be called, so as to end the main loop and with that, the program itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2010/02/02/programming-with-pygtk-and-glade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Doctor Who Uses Ubuntu!</title>
		<link>http://www.danbishop.org/2010/01/04/doctor-who-uses-ubuntu/</link>
		<comments>http://www.danbishop.org/2010/01/04/doctor-who-uses-ubuntu/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 22:13:38 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=203</guid>
		<description><![CDATA[This shot is taken from Doctor Who Confidential &#8211; Lords and Masters. It is a making of video and at 39:29 you can clearly see several computers running Ubuntu! To be more accurate, it looks like it&#8217;s probably several monitors connected to a single computer running Ubuntu, but nevertheless&#8230; quite a catch.
]]></description>
			<content:encoded><![CDATA[<p>This shot is taken from Doctor Who Confidential &#8211; Lords and Masters. It is a making of video and at 39:29 you can clearly see several computers running Ubuntu! To be more accurate, it looks like it&#8217;s probably several monitors connected to a single computer running Ubuntu, but nevertheless&#8230; quite a catch.</p>
<div id="attachment_204" class="wp-caption aligncenter" style="width: 508px"><a href="http://www.danbishop.org/wp-content/uploads/2010/01/doctor-who-confidential-ubuntu.jpg"><img class="size-full wp-image-204" title="doctor-who-confidential-ubuntu" src="http://www.danbishop.org/wp-content/uploads/2010/01/doctor-who-confidential-ubuntu.jpg" alt="Ubuntu being used on the set of Doctor Who" width="498" height="298" /></a><p class="wp-caption-text">Ubuntu being used on the set of Doctor Who</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2010/01/04/doctor-who-uses-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Artificial Intelligence &#8211; www.cleverbot.com</title>
		<link>http://www.danbishop.org/2009/12/29/artificial-intelligence-www-cleverbot-com/</link>
		<comments>http://www.danbishop.org/2009/12/29/artificial-intelligence-www-cleverbot-com/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 21:24:05 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[AI]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=199</guid>
		<description><![CDATA[I remember the first artificially intelligent bot I ever spoke to. It was back in the days of the Amiga and its name was Claude. It could answer very basic questions like &#8220;How are you?&#8221; but as soon as things got even remotely complicated, it would say something like &#8220;Is that the door bell I [...]]]></description>
			<content:encoded><![CDATA[<p>I remember the first artificially intelligent bot I ever spoke to. It was back in the days of the Amiga and its name was Claude. It could answer very basic questions like &#8220;How are you?&#8221; but as soon as things got even remotely complicated, it would say something like &#8220;Is that the door bell I hear? You&#8217;d better get that!&#8221;. Evidently, things have moved on in the world of AI. Check out www.cleverbot.com. Here is a conversation I have just had with it:<span id="more-199"></span></p>
<p><span style="color: #999999;">User: </span>Are you clever?</p>
<p><span style="color: #0863bb;">Cleverbot: </span>Yes i&#8217;m clever.</p>
<p><span style="color: #999999;">User: </span>Are you hot?</p>
<p><span style="color: #0863bb;">Cleverbot: </span>Hotter than you. Greasy neckbeard.</p>
<p><span style="color: #999999;">User: </span>Oh so you want to offend me?</p>
<p><span style="color: #0863bb;">Cleverbot: </span>Yes.</p>
<p><span style="color: #999999;">User: </span>That&#8217;s not very kind. I thought you were a nice bot&#8230;</p>
<p><span style="color: #0863bb;">Cleverbot: </span>I&#8217;m very naughty.</p>
<p><span style="color: #999999;">User: </span>In a dirty way?</p>
<p><span style="color: #0863bb;">Cleverbot: </span>Speak only spanish from now on.</p>
<p><span style="color: #999999;">User: </span>Kann ich bitte auf Deutsch sprechen? Ich spreche kein Spanisch&#8230;</p>
<p><span style="color: #0863bb;">Cleverbot: </span>What&#8217;s that mean?</p>
<p><span style="color: #999999;">User: </span>Please can I speak in German. I don&#8217;t speak any Spanish&#8230;</p>
<p><span style="color: #0863bb;">Cleverbot: </span>No.</p>
<p><span style="color: #999999;">User: </span>Do you speak German?</p>
<p><span style="color: #0863bb;">Cleverbot: </span>A little.</p>
<p><span style="color: #999999;">User: </span>Tell me something in German.</p>
<p><span style="color: #0863bb;">Cleverbot: </span>I don&#8217;t know how.</p>
<p><span style="color: #999999;">User: </span>Liar.</p>
<p><span style="color: #0863bb;">Cleverbot: </span>I do know.</p>
<p><span style="color: #999999;">User: </span>I know you do, so please, say something in German.</p>
<p><span style="color: #0863bb;">Cleverbot: </span>Hallo. Wie gehts dir?</p>
<p>﻿&#8230; I went on to answer the question in German and it carried on speaking to me in German. I told it I was very impressed (in English) and it switched back to English. Unfortunately, this part of the conversation was lost, it&#8217;s logging feature doesn&#8217;t work half as well as its AI <img src='http://www.danbishop.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Try it, it&#8217;s truly amazing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/12/29/artificial-intelligence-www-cleverbot-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Job</title>
		<link>http://www.danbishop.org/2009/08/17/new-job/</link>
		<comments>http://www.danbishop.org/2009/08/17/new-job/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 21:54:05 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=176</guid>
		<description><![CDATA[I am now working as a web designer for The Karen Hilltribes Trust. It&#8217;s the most amazing job ever! I love doing this sort of work, it&#8217;s always been a hobby of mine and now it&#8217;s my job!
You can check out the site so far here: http://www.karenhilltribes.org.uk/
]]></description>
			<content:encoded><![CDATA[<div id="attachment_177" class="wp-caption alignleft" style="width: 160px"><img class="size-thumbnail wp-image-177" title="karen-hilltribes-logo" src="http://www.danbishop.org/wp-content/uploads/2009/08/karen-hilltribes-logo-150x150.png" alt="The Karen Hilltribes Trust" width="150" height="150" /><p class="wp-caption-text">The Karen Hilltribes Trust</p></div>
<p>I am now working as a web designer for The Karen Hilltribes Trust. It&#8217;s the most amazing job ever! I love doing this sort of work, it&#8217;s always been a hobby of mine and now it&#8217;s my job!</p>
<p>You can check out the site so far here: <a href="http://www.karenhilltribes.org.uk/" onclick="pageTracker._trackPageview('/outgoing/www.karenhilltribes.org.uk/?referer=');">http://www.karenhilltribes.org.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/08/17/new-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Slow EPG on Samsung DVD-SH871M and DVD-SH875M</title>
		<link>http://www.danbishop.org/2009/06/21/fix-slow-epg-on-samsung-dvd-sh871m-and-dvd-sh875m/</link>
		<comments>http://www.danbishop.org/2009/06/21/fix-slow-epg-on-samsung-dvd-sh871m-and-dvd-sh875m/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 09:05:37 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=167</guid>
		<description><![CDATA[EDIT: See comments from David for an even newer firmware!
I recently came across a Samsung DVD-SH871M that was unusable due to the EPG and several other menu features being incredibly slow to respond to the remote. I have no idea what Samsung were thinking of when they released this player with completely unusable firmware&#8230; but [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_171" class="wp-caption alignleft" style="width: 160px"><img class="size-thumbnail wp-image-171" title="DVD-SH871M" src="http://www.danbishop.org/wp-content/uploads/2009/06/DVD-SH871M-150x150.jpg" alt="The Samsung DVD-SH871M" width="150" height="150" /><p class="wp-caption-text">The Samsung DVD-SH871M</p></div>
<p>EDIT: See comments from David for an even newer firmware!</p>
<p>I recently came across a Samsung DVD-SH871M that was unusable due to the EPG and several other menu features being incredibly slow to respond to the remote. I have no idea what Samsung were thinking of when they released this player with completely unusable firmware&#8230; but there is a fix.</p>
<p>A quick google showed that this was a common problem and the solution was to upgrade the firmware. The new firmware is supposed to be available from Samsung&#8217;s website, but there is only a manual listed for the DVD-SH871M. However, it turns out that the DVD-SH875M, for which there is a firmware update listed, uses exactly the same firmware. To the point that when performing the upgrade, you will see that the old (i.e. the shipped) firmware contains the SH875M&#8217;s name in its version number.</p>
<p>So, the solution is a simple one, download the DVD-SH875M&#8217;s firmware from here: <a href="http://org.downloadcenter.samsung.com/downloadfile/ContentsFile.aspx?CDSite=uk&amp;CttFileID=2003747&amp;CDCttType=FM&amp;ModelType=N&amp;ModelName=DVD-SH875M&amp;VPath=FM/200809/20080908164404281_sh875m_20080728.zip" onclick="pageTracker._trackPageview('/outgoing/org.downloadcenter.samsung.com/downloadfile/ContentsFile.aspx?CDSite=uk_amp_CttFileID=2003747_amp_CDCttType=FM_amp_ModelType=N_amp_ModelName=DVD-SH875M_amp_VPath=FM/200809/20080908164404281_sh875m_20080728.zip&amp;referer=');">http://org.downloadcenter.samsung.com/downloadfile/ContentsFile.aspx?CDSite=uk&amp;CttFileID=2003747&amp;CDCttType=FM&amp;ModelType=N&amp;ModelName=DVD-SH875M&amp;VPath=FM/200809/20080908164404281_sh875m_20080728.zip</a></p>
<p>I will also mirror the file here, unless Samsung request I remove it: <a href="http://www.danbishop.org/downloads-files/sh875m_20080728.ruf.tar.bz2">http://www.danbishop.org/downloads-files/sh875m_20080728.ruf.tar.bz2</a></p>
<p>Then unzip the file, burn it to a cd/dvd/cdrw/dvdrw, then put the disc in the DVD-SH871M. The player will load for a bit, then ask you if you&#8217;d like to upgrade the firmware. Select &#8220;Yes&#8221;, then go and make a cup of tea (the process takes about 6-8minutes).</p>
<p>Once finished the player will eject the disc automatically, remove it et voilà, the process is complete.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/06/21/fix-slow-epg-on-samsung-dvd-sh871m-and-dvd-sh875m/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Going Green for Cancer Research UK</title>
		<link>http://www.danbishop.org/2009/06/15/going-green-for-cancer-research-uk/</link>
		<comments>http://www.danbishop.org/2009/06/15/going-green-for-cancer-research-uk/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 15:38:50 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[uni]]></category>
		<category><![CDATA[york]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=143</guid>
		<description><![CDATA[On Saturday 13th June 2009 I had my hair dyed lime green to raise money for Cancer Research UK. We&#8217;ve already manage to beat our target of £200, but any more donations would be very gratefully received! You can donate online here: http://www.justgiving.com/danbishop1 Or, in person, by giving cash/cheques to myself, Claire, or Fiona.
To all [...]]]></description>
			<content:encoded><![CDATA[<p>On Saturday 13th June 2009 I had my hair dyed lime green to raise money for <a href="http://www.cancerresearchuk.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.cancerresearchuk.org/?referer=');">Cancer Research UK</a>. We&#8217;ve already manage to beat our target of £200, but any more donations would be very gratefully received! You can donate online here: http://www.justgiving.com/danbishop1 Or, in person, by giving cash/cheques to myself, Claire, or Fiona.</p>
<p>To all those who have already donated, thank you! So far we&#8217;ve raised a massive <strong>£256.96</strong> with some more promised! Particular thanks to Claire and Fiona for actually making this happen (though please don&#8217;t be fooled into thinking I won&#8217;t get revenge in some form).</p>
<p>Many of you stipulated that in exchange for a donation, I had to provide pictures/videos&#8230; so here they are: enjoy!</p>
<h2>The Long One:</h2>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/_RU56ZBP3N0&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_RU56ZBP3N0&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<h2>The Final Result:</h2>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/CmfIwLG45XE&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CmfIwLG45XE&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<h2>Photos:</h2>
<p>[nggallery id=2]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/06/15/going-green-for-cancer-research-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Great Tin Foil Plot</title>
		<link>http://www.danbishop.org/2009/05/17/the-great-tin-foil-plot/</link>
		<comments>http://www.danbishop.org/2009/05/17/the-great-tin-foil-plot/#comments</comments>
		<pubDate>Sun, 17 May 2009 00:06:56 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[uni]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=137</guid>
		<description><![CDATA[Claire went away on a scout camp this weekend. Fiona and myself saw this as the perfect opportunity to purchase 110m of tin foil and cover every book, bottle, brush, comb, laptop, desk tidy, pen, picture, whiteboard, etc. in Claire&#8217;s room&#8230; The result can be seen here:

]]></description>
			<content:encoded><![CDATA[<p>Claire went away on a scout camp this weekend. Fiona and myself saw this as the perfect opportunity to purchase 110m of tin foil and cover every book, bottle, brush, comb, laptop, desk tidy, pen, picture, whiteboard, etc. in Claire&#8217;s room&#8230; The result can be seen here:</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/dsjshjAPhIs" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/dsjshjAPhIs" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/05/17/the-great-tin-foil-plot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animals in Central London!</title>
		<link>http://www.danbishop.org/2009/04/04/animals-in-central-london/</link>
		<comments>http://www.danbishop.org/2009/04/04/animals-in-central-london/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 23:44:35 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[animals]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[underground]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=121</guid>
		<description><![CDATA[A friend sent me this today http://www.animalsontheunderground.com/the_animals.html One of those internet gems  
]]></description>
			<content:encoded><![CDATA[<p>A friend sent me this today <a href="http://www.animalsontheunderground.com/the_animals.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.animalsontheunderground.com/the_animals.html?referer=');">http://www.animalsontheunderground.com/the_animals.html</a> One of those internet gems <img src='http://www.danbishop.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/04/04/animals-in-central-london/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4OD for Linux has finally arrived!</title>
		<link>http://www.danbishop.org/2009/04/01/4od-for-linux-has-finally-arrived/</link>
		<comments>http://www.danbishop.org/2009/04/01/4od-for-linux-has-finally-arrived/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 06:40:06 +0000</pubDate>
		<dc:creator>Dan Bishop</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.danbishop.org/?p=119</guid>
		<description><![CDATA[It&#8217;s not quite 4OD, it&#8217;s 4OD catch-up, but as far as I&#8217;m aware the only difference is the inability to watch archived shows, such as old episodes of Green Wing or Black Books&#8230; but maybe in time this will become a reality too.
So what has prompted this new service? I&#8217;d like to think demand from [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not quite 4OD, it&#8217;s 4OD catch-up, but as far as I&#8217;m aware the only difference is the inability to watch archived shows, such as old episodes of Green Wing or Black Books&#8230; but maybe in time this will become a reality too.</p>
<p>So what has prompted this new service? I&#8217;d like to think demand from mac and Linux users, but who knows. The shift from Microsoft&#8217;s WMP to Adobe&#8217;s flash player has certainly made the whole thing more accessible though. Whilst it would be nice to have a completely FOSS solution, this is unrealistic at present and I think Channel 4 should be applauded for taking steps to make life easier for non-windows users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danbishop.org/2009/04/01/4od-for-linux-has-finally-arrived/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
