<?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 bemused blog</title>
	<atom:link href="http://bemused.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://bemused.org/blog</link>
	<description>can you get more random?</description>
	<lastBuildDate>Mon, 19 Jan 2009 22:55:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I18n of sfSimpleForumPlugin</title>
		<link>http://bemused.org/blog/2009/01/19/i18n-of-sfsimpleforumplugin/</link>
		<comments>http://bemused.org/blog/2009/01/19/i18n-of-sfsimpleforumplugin/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 22:47:50 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[geeky stuff]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[l10n]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sfSimpleForumPlugin]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=51</guid>
		<description><![CDATA[The sfSimpleForum plugin is a great way to quickly add a forum to a site, but it doesn&#8217;t handle multi-lingual sites, so here are my notes on how to add this feature.
1. Edit plugins/sfSimpleForumPlugin/config/schema.yml, add the culture field to the   sf_simple_forum_category table :
lang:     { type: varchar, size: 7 }
My [...]]]></description>
			<content:encoded><![CDATA[<p>The sfSimpleForum plugin is a great way to quickly add a forum to a site, but it doesn&#8217;t handle multi-lingual sites, so here are my notes on how to add this feature.</p>
<p>1. Edit plugins/sfSimpleForumPlugin/config/schema.yml, add the culture field to the   sf_simple_forum_category table :</p>
<pre>lang:     { type: varchar, size: 7 }</pre>
<p>My thinking is that only the categories need an added lang field, as all forums belong to a category, and all posts belong to a forum, so the language of a post is implicit in its forum and category. Note I&#8217;m using &#8216;lang&#8217; and not &#8216;culture&#8217; here, as culture seems to have a specific meaning in symfony, and is used when an object can exist with several cultures, so a category would exist in all languages.  However in this case, the french site could have a diferent set of categories to the english site, so it&#8217;s not appropriate to use the field name &#8216;culture&#8217;.</p>
<p>2. Add culture to the test data :</p>
<pre>sfSimpleForumCategory:
  c1:
    name:        Public Boards
    description: We talk about stuff here.
    rank:        1
    culture:     en_GB
  c2:
    name:        Miscellaneous
    description: Secret matters
    rank:        2
    culture:     en_GB
  c3:
    name:        Alleatoire
    description: Les choses alleatoires
    rank:        1
    culture:     fr_FR</pre>
<p>3. Select by culture when getting list of all categories in plugins/sfSimpleForumPlugin/lib/model/plugin/PluginsfSimpleForumForumPeer.php:</p>
<pre>public static function getAllOrderedByCategory()
{
  $c = new Criteria();
  $c-&gt;addJoin(self::CATEGORY_ID, sfSimpleForumCategoryPeer::ID);
  $c-&gt;add(sfSimpleForumCategoryPeer::CULTURE, sfContext::getInstance()-&gt;getUser()-&gt;getCulture());
  $c-&gt;addAscendingOrderByColumn(sfSimpleForumCategoryPeer::RANK);
  $c-&gt;addAscendingOrderByColumn(self::RANK);return self::doSelectJoinCategoryLeftJoinPost($c);
}</pre>
<p>4. Add culture to admin interface in plugins/sfSimpleForumPlugin/modules/sfSimpleForumCategoryAdmin/config/generator.yml :</p>
<pre>list:
  title: Category Administration</pre>
<pre>  display: [=name, description, rank, lang]
edit:
  title: Edit category "%%name%%"
  display: [name, description, rank, _lang, _forums]</pre>
<p>5. Add set_culture partial in plugins/sfSimpleForumPlugin/modules/sfSimpleForumCategoryAdmin/templates/_lang.php :</p>
<pre>&lt; ?php
use_helper('Utils');
$cultures = array('en_GB' =&gt; 'English', 'fr_FR' =&gt; 'French', 'de_DE' =&gt; 'German');
echo select_culture_tag('sf_simple_forum_category[lang]', $sf_simple_forum_category-&gt;getLang(), $cultures, array('id' =&gt; 'lang'));</pre>
<p>6. add select_culture_tag function in apps/backend/lib/helper/UtilsHelper.php :</p>
<pre>function select_culture_tag($name, $selected = null, $cultures = array(), $options = array())
{
$c = new sfCultureInfo(sfContext::getInstance()-&gt;getUser()-&gt;getCulture());
if (! is_array($cultures)) {
$cultures = $c-&gt;getCultures();
}</pre>
<pre>if ($culture_option = _get_option($options, 'cultures'))
{
foreach ($cultures as $key =&gt; $value)
{
if (!in_array($key, $culture_option))
{
unset($cultures[$key]);
}
}
}</pre>
<pre>asort($cultures);</pre>
<pre>$option_tags = options_for_select($cultures, $selected);</pre>
<pre>return select_tag($name, $option_tags, $options);
}</pre>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=I18n%20of%20sfSimpleForumPlugin&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2009%2F01%2F19%2Fi18n-of-sfsimpleforumplugin%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2009/01/19/i18n-of-sfsimpleforumplugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test from phone</title>
		<link>http://bemused.org/blog/2009/01/19/test-from-phone/</link>
		<comments>http://bemused.org/blog/2009/01/19/test-from-phone/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 18:46:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[geeky stuff]]></category>
		<category><![CDATA[test phone iphone]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/2009/01/19/test-from-phone/</guid>
		<description><![CDATA[Not much to say, the clue is in the title  

    

	]]></description>
			<content:encoded><![CDATA[<p>Not much to say, the clue is in the title <img src='http://bemused.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Test%20from%20phone&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2009%2F01%2F19%2Ftest-from-phone%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2009/01/19/test-from-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annapurna Circuit</title>
		<link>http://bemused.org/blog/2008/12/02/annapurna-circuit/</link>
		<comments>http://bemused.org/blog/2008/12/02/annapurna-circuit/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 15:28:52 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=65</guid>
		<description><![CDATA[Britta suggested doing the Annapurna trail sometime early next year.  As part of my initial research, here&#8217;s some links with more information :

Annapurna Circuit on WikiTravel
Photos tagged with &#8216;annapurnacircuit&#8217; at flickr
Annapurna circuit info at longdistancewalks.com
Lots of great photos

If you know of any more good sources of information, let me know

    

	]]></description>
			<content:encoded><![CDATA[<p>Britta suggested doing the Annapurna trail sometime early next year.  As part of my initial research, here&#8217;s some links with more information :</p>
<ul>
<li><a href="http://wikitravel.org/en/Annapurna_Circuit">Annapurna Circuit on WikiTravel</a></li>
<li><a href="http://www.flickr.com/photos/tags/annapurnacircuit/">Photos tagged with &#8216;annapurnacircuit&#8217; at flickr</a></li>
<li><a href="http://www.longdistancewalks.com/annapurna_circuit/index.html">Annapurna circuit info at longdistancewalks.com</a></li>
<li><a href="http://www.molon.de/galleries/Nepal/Annapurna/">Lots of great photos</a></li>
</ul>
<p>If you know of any more good sources of information, let me know</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Annapurna%20Circuit&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F12%2F02%2Fannapurna-circuit%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/12/02/annapurna-circuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The world&#8217;s ugliest buildings</title>
		<link>http://bemused.org/blog/2008/11/15/the-worlds-ugliest-buildings/</link>
		<comments>http://bemused.org/blog/2008/11/15/the-worlds-ugliest-buildings/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 12:22:11 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=63</guid>
		<description><![CDATA[Virtual Tourist have just published a press release listing (in their opinion) the worlds ugliest buildings.  While you can argue with their choice (I quite like Liverpool Cathedral and I don&#8217;t find Tour Montparnasse in Paris that much of an eyesore), it&#8217;s a shame they didn&#8217;t spend ore time promoting the article on their [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.virtualtourist.com/">Virtual Tourist</a> have just published a press release listing (in their opinion) <a href="http://www.reuters.com/article/lifestyleMolt/idUSTRE4AD2V720081114">the worlds ugliest buildings</a>.  While you can argue with their choice (I quite like Liverpool Cathedral and I don&#8217;t find Tour Montparnasse in Paris that much of an eyesore), it&#8217;s a shame they didn&#8217;t spend ore time promoting the article on their site.  the link from the article at Yahoo ! went straight to the reuters site, and I had to spend a few minutes on VirtualTourist before I found the press release.  It would have been nice to have the article promoted in the virtual tourist home page, with links to photos on their site.  Yet another missed opportunity I guess.</p>
<p>Hmm what to do today.  As I&#8217;m in Barcelona, I think I&#8217;ll have lunch at <a href="http://www.oubouffer.com/restaurant-barcelona/cn342765-quimet---quimet">Quimet &#038; Quimet</a>, a wonderful little tapas bar in Poble Sec. Or maybe I&#8217;ll just spend the rest of the morning looking out over Plaça Vicenç Martorell here at <a href="http://www.eat-out.net/restaurant-barcelona/ct344007-chelo">Chelo</a>, with another one of their amazing fruit juices.</p>
<p>Back to work on monday.  What joy!</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=The%20world%26%238217%3Bs%20ugliest%20buildings&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F11%2F15%2Fthe-worlds-ugliest-buildings%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/11/15/the-worlds-ugliest-buildings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blind pilot lands plane</title>
		<link>http://bemused.org/blog/2008/11/07/blind-pilot-lands-plane/</link>
		<comments>http://bemused.org/blog/2008/11/07/blind-pilot-lands-plane/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 19:40:01 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=62</guid>
		<description><![CDATA[A pretty incredible story from the BBC, a blind pilot landed a plane after he had a stroke whilst flying and loosing his sight.
I&#8217;ve never been very good at flying, this is the sort of thing that makes me more sure than ever that we&#8217;re better off with both feet on the ground.

   [...]]]></description>
			<content:encoded><![CDATA[<p>A pretty incredible story from the BBC, a <a href="http://news.bbc.co.uk/2/hi/uk_news/england/north_yorkshire/7715345.stm">blind pilot landed a plane</a> after he had a stroke whilst flying and loosing his sight.</p>
<p>I&#8217;ve never been very good at flying, this is the sort of thing that makes me more sure than ever that we&#8217;re better off with both feet on the ground.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Blind%20pilot%20lands%20plane&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F11%2F07%2Fblind-pilot-lands-plane%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/11/07/blind-pilot-lands-plane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vegetarian Paris</title>
		<link>http://bemused.org/blog/2008/10/30/vegetarian-paris/</link>
		<comments>http://bemused.org/blog/2008/10/30/vegetarian-paris/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 14:05:59 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[food and drink]]></category>
		<category><![CDATA[paris]]></category>
		<category><![CDATA[restaurant]]></category>
		<category><![CDATA[vegetarian]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=61</guid>
		<description><![CDATA[Being a vegetarian in France isn&#8217;t easy.  I have a couple of hardcore (ex-)vegetarian friends who moved to France and have moved back to the dark side.  Its more understandable when you realise the almost complete lack of understanding of vegetarianism amongst the local population.  Asking for a vegetable salad &#8220;sans viande&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Being a vegetarian in France isn&#8217;t easy.  I have a couple of hardcore (ex-)vegetarian friends who moved to France and have moved back to the dark side.  Its more understandable when you realise the almost complete lack of understanding of vegetarianism amongst the local population.  Asking for a vegetable salad &#8220;sans viande&#8221; will often result in a chicken salad, as apparently chicken isn&#8217;t meat in the french sense of the word. Vegetarian salad with bacon is another common dish, and when asking for the version &#8217;sans bacon&#8217; the salad will return with the bacon bits (mostly) picked out by hand.</p>
<p>So it&#8217;s good to know that there are more and more vegetarian restaurants appearing in Paris, here are a couple of vegetarian resources I&#8217;ve found recently:</p>
<ul>
<li><a href="http://www.eat-out.net/restaurant/paris/organic,vegetarian">Paris organic and vegetarian restaurant guide</a></li>
<li><a href="http://parisvegetarian.com">Paris vegetarian</a> &#8211; a blog written by an American in Paris</li>
<li><a href="http://v3ggie.com/">v3ggie.com</a> &#8211; A vegetarian search engine, with geographic options</li>
</ul>
<p>I also discovered <a href="http://v3ggie.com/">v3ggie.com</a>, a vegetarian search engine which gives interesting results, and has a greate recipe search feature.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Vegetarian%20Paris&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F10%2F30%2Fvegetarian-paris%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/10/30/vegetarian-paris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vacation in Paris</title>
		<link>http://bemused.org/blog/2008/08/02/vacation-in-paris/</link>
		<comments>http://bemused.org/blog/2008/08/02/vacation-in-paris/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 14:13:35 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=60</guid>
		<description><![CDATA[My studio is available to rent for 4 days in August, so if you fancy a short break in Paris, staying in an apartment by Canal st Martin, let me know.

    

	]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.studiosinparis.com/apartment/Paris/1">My studio</a> is available to rent for 4 days in August, so if you fancy a short break in Paris, staying in an apartment by Canal st Martin, let me know.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Vacation%20in%20Paris&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F08%2F02%2Fvacation-in-paris%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/08/02/vacation-in-paris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More great restaurants in Barcelona</title>
		<link>http://bemused.org/blog/2008/07/25/more-great-restaurants-in-barcelona/</link>
		<comments>http://bemused.org/blog/2008/07/25/more-great-restaurants-in-barcelona/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 12:48:11 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[food and drink]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=59</guid>
		<description><![CDATA[I&#8217;m back in Barcelona, and have been trying out some more restaurants.  I&#8217;ve been told that catalonians don&#8217;t go in for tapas, and the tapas restaurants in Barcelona are only for tourists, but I&#8217;m still a fan.  For a great tapas restaurant, try Flauta in eixample, an unpretentious, welcoming place, great for something [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back in Barcelona, and have been trying out some more restaurants.  I&#8217;ve been told that catalonians don&#8217;t go in for tapas, and the <a href="http://www.eat-out.net/restaurant/barcelona/spanish">tapas restaurants in Barcelona</a> are only for tourists, but I&#8217;m still a fan.  For a great tapas restaurant, try <a href="http://www.eat-out.net/restaurant-barcelona/sa322164-flauta">Flauta</a> in eixample, an unpretentious, welcoming place, great for something to eat before going out for a drink in the area. Or for something a little more classy, my two discoveries this week are <a href="http://www.oubouffer.com/restaurant-barcelona/sp322191-bodega-sepulveda">Botega Sepulveda</a> and <a href="http://www.oubouffer.com/restaurant-barcelona/su322218-los-caracoles">Los Caracoles</a></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=More%20great%20restaurants%20in%20Barcelona&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F07%2F25%2Fmore-great-restaurants-in-barcelona%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/07/25/more-great-restaurants-in-barcelona/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tea</title>
		<link>http://bemused.org/blog/2008/07/18/tea/</link>
		<comments>http://bemused.org/blog/2008/07/18/tea/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 09:21:18 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=58</guid>
		<description><![CDATA[Just heard on BBC Radio 4:
&#8220;We all know that tea is one of lifes essentials, and I for one can&#8217;t help having a deep suspicion of anyone that doesn&#8217;t like tea&#8221;
Well I&#8217;d agree with that!

    

	]]></description>
			<content:encoded><![CDATA[<p>Just heard on BBC Radio 4:</p>
<p>&#8220;We all know that tea is one of lifes essentials, and I for one can&#8217;t help having a deep suspicion of anyone that doesn&#8217;t like tea&#8221;</p>
<p>Well I&#8217;d agree with that!</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Tea&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F07%2F18%2Ftea%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/07/18/tea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sonar 2008 Roundup</title>
		<link>http://bemused.org/blog/2008/06/27/sonar-2008-roundup/</link>
		<comments>http://bemused.org/blog/2008/06/27/sonar-2008-roundup/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 09:45:02 +0000</pubDate>
		<dc:creator>gareth</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bemused.org/blog/?p=57</guid>
		<description><![CDATA[I&#8217;m back from Sonar, and the first thing on my mind is reserving for next year.  Unfurtunately I didn&#8217;t get to see as much as I would have liked, due to other commitments.  In fact, I only made it to the friday night, but that alone was worth it.  Madness were excellent, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back from <a href="http://www.sonar.es/">Sonar</a>, and the first thing on my mind is reserving for next year.  Unfurtunately I didn&#8217;t get to see as much as I would have liked, due to other commitments.  In fact, I only made it to the friday night, but that alone was worth it.  Madness were excellent, Richie Hawtin was incredible, Justice were amazing. And arriving back in Barcelona on the bus as <a href="http://flickr.com/photos/gironweb/1400972587/">the sun was rising over the port</a> was unforgettable.<br />
<br />
Next year I&#8217;ll be there again, and I&#8217;ll definitely be going to more of the daytime concerts.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=the%20bemused%20blog&amp;siteurl=http%3A%2F%2Fbemused.org%2Fblog%2F&amp;linkname=Sonar%202008%20Roundup&amp;linkurl=http%3A%2F%2Fbemused.org%2Fblog%2F2008%2F06%2F27%2Fsonar-2008-roundup%2F"><img src="http://bemused.org/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://bemused.org/blog/2008/06/27/sonar-2008-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
