<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Overlap.org</title>
	<atom:link href="http://overlap.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://overlap.org</link>
	<description>Share your feed. Download releases. Attend events.</description>
	<pubDate>Thu, 07 Aug 2008 23:58:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<!-- <language>en</language> -->
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>info@overlap.org ()</managingEditor>
		<webMaster>info@overlap.org()</webMaster>
		<category></category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Overlap.org releases diverse audio and video from independent artists, organizes live events in San Francisco and beyond, and provides anyone a way to share their music or films for free on Overlap.org. This podcast is a taste of some of the forward-thinking content released by Overlap.</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Arts"/>
<itunes:category text="Arts">
  <itunes:category text="Performing Arts"/>
</itunes:category>
<itunes:category text="News &amp; Politics"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>info@overlap.org</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://overlap.org/wp-content/themes/overlap/media/overlap_logo_144x144.png" />
		<image>
			<url>http://overlap.org/wp-content/themes/overlap/media/overlap_logo_144x144.png</url>
			<title>Overlap.org</title>
			<link>http://overlap.org</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Fix Your MTRR on Gentoo with Thinkpad x61 Intel x3100</title>
		<link>http://overlap.org/2008/08/06/fix-your-mtrr-on-gentoo-with-thinkpad-x61-intel-x3100/</link>
		<comments>http://overlap.org/2008/08/06/fix-your-mtrr-on-gentoo-with-thinkpad-x61-intel-x3100/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 15:23:50 +0000</pubDate>
		<dc:creator>rejon</dc:creator>
		
		<category><![CDATA[Notes]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://rejon.org/?p=891</guid>
		<description><![CDATA[I&#8217;ve noticed for ages that my thinkpad x61 with 4 gigs of ram has been sluggish on the desktop with redraws. Now that I have a bit more time, I looked into this, oh, and because I&#8217;ve been shamed into getting all the funky compiz-fusion graphics looking hot on my desktop by Freddie B and [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I&#8217;ve noticed for ages that my <a href="http://rejon.org/2008/01/23/thinkpad-x61-thinkpad_select/">thinkpad</a> <a href="http://rejon.org/2007/08/11/new-laptop-thinkpad-x61-gentoo-sound-and-dhcp/">x61</a> with <a href="http://rejon.org/2007/11/15/thinkpad-x61-configs/">4 gigs of ram</a> has been sluggish on the desktop with redraws. Now that I have a bit more time, I looked into this, oh, and because I&#8217;ve been shamed into getting all the funky <a href="http://en.wikipedia.org/wiki/Compiz-Fusion">compiz-fusion graphics</a> looking hot on my desktop by <a href="http://identi.ca/mecredis">Freddie B</a> and <a href="http://identi.ca/christopheradams">Mr. Adams</a>.</p>
<p>After some <a href="http://forums.gentoo.org/viewtopic-t-698591-start-50-postdays-0-postorder-asc-highlight-.html">gentoo forum spelunking</a> into the issue across distros, I found out that at least with <a href="http://en.wikipedia.org/wiki/X3100#GMA_X3100">Intel 965 (x3100)</a> and kernel 2.6.25-26, there are some major issues with mtrr not being set properly. </p>
<p>I took the plunge at trying to understand the issue and wrote a basic script to fix-up my <a href="http://en.wikipedia.org/wiki/Mtrr">mtrr</a> settings from the commandline:</p>
<pre>
#!/bin/bash
#
# fixmtrr
#
# fixes /proc/mtrr
# based upon termites script from gentoo forums

# disable pre-existing ones and order does matter!
echo "disable=0" &gt;| /proc/mtrr
echo "disable=1" &gt;| /proc/mtrr
echo "disable=3" &gt;| /proc/mtrr
echo "disable=4" &gt;| /proc/mtrr
echo "disable=5" &gt;| /proc/mtrr
echo "disable=2" &gt;| /proc/mtrr

# Now create the right ones...

# These are powers of two, they get progressively smaller
# so we can get right up to the system device page below.
echo "base=0x00000000 size=0x80000000 type=write-back" &gt;| /proc/mtrr
echo "base=0x80000000 size=0x40000000 type=write-back" &gt;| /proc/mtrr
echo "base=0xC0000000 size=0x10000000 type=write-back" &gt;| /proc/mtrr

# Video Card:
# 0x10000000 was the value for size trying for
echo "base=0xE0000000 size=0x10000000 type=write-combining" &gt;| /proc/mtrr

# High memory area
echo "base=0x100000000 size=0x40000000 type=write-back" &gt;| /proc/mtrr
</pre>
<p>This helped to set my mtrr up right so that X can find the dynamic shared memory to do all the fun compiz effects and more. If there is a better fix for the above, I&#8217;d love to hear about it! More than just bling bling, my overall computer is much much better. I can&#8217;t believe I put up with this! </p>
<p>Then, I started running powertop to test out my system, and noticed that there are many features that can be set after a computer is setup, so I created an init script to set all this at boot:</p>
<pre>
!/sbin/runscript
#
# This starts the thinkpad post-boot settings
#

TITLE="Thinkpad Specific Options"
LINKPOWER=/sys/class/scsi_host/host0/link_power_management_policy
FIXMTRR=/usr/local/bin/fixmtrr
WRITEBACK=/proc/sys/vm/dirty_writeback_centisecs

checkconfig() {
    if [ ! -e $LINKPOWER ] &#38;&#38;
       [ ! -e $FIXMTRR ] &#38;&#38;
       [ ! -e $WRITEBACK ] ; then
        eerror "You cannot set $TITLE. Check settings."
        return 1
    fi
}

start()
{
    checkconfig || return 1

    ebegin "Starting $TITLE"
    $FIXMTRR
    echo min_power &gt; $LINKPOWER
    echo 1500 &gt; $WRITEBACK
}

stop()
{
    checkconfig || return 1

    ebegin "Stopping $TITLE"
    echo 500 &gt; $WRITEBACK
}
</pre>
<p>Make sure to put the fixmtrr script in /usr/local/bin or change the path to fixmtrr in your script. Then, set thinkpad script to run at boot before xdm kicks in:</p>
<pre>rc-update add thinkpad boot</pre>
<p>These are pretty basic scripts, but I wanted to dump them out for other users of this system. Its beyond just Gentoo-based distros, and will take a while to get into main kernel especially for slow distros like Ubuntu, Fedora, etc <img src='http://rejon.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I had to put that one in there for those who try to convert or chide me off Gentoo.</p>
</blockquote>Originally from <a href="http://rejon.org/2008/08/06/fix-your-mtrr-gentoo-thinkpad-x61-intel-x3100/">Fix Your MTRR on Gentoo with Thinkpad x61 Intel x3100</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/06/fix-your-mtrr-on-gentoo-with-thinkpad-x61-intel-x3100/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Software, Free Culture Trajectories, and Free Culture Conference</title>
		<link>http://overlap.org/2008/08/05/free-software-free-culture-trajectories-and-free-culture-conference/</link>
		<comments>http://overlap.org/2008/08/05/free-software-free-culture-trajectories-and-free-culture-conference/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 04:17:24 +0000</pubDate>
		<dc:creator>rejon</dc:creator>
		
		<category><![CDATA[Notes]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://rejon.org/?p=887</guid>
		<description><![CDATA[@mlinksva just put out a great slide show, albeit the over-use of bullet points ;), that is an overview of CC as well as a general look at the historical trajectories of Free Software and how Free Culture Movement is approximately 10 years behind. This is a great beginning at the more intimate look at [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://identi.ca/mlinksva">@mlinksva</a> just put out a <a href="http://www.slideshare.net/mlinksva/free-softwarefree-culture-collaboration">great slide show</a>, albeit the over-use of bullet points ;), that is an overview of <a href="http://creativecommons.org">CC</a> as well as a general look at the historical trajectories of <a href="http://en.wikipedia.org/wiki/Free_software">Free Software</a> and how <a href="http://en.wikipedia.org/wiki/Free_culture_movement">Free Culture Movement</a> is approximately 10 years behind. This is a great beginning at the more intimate look at where <strong>WE</strong> are heading collectively, because of course, Free Software and Free Culture&#8217;s paths are intermingled. It would be quite interesting actually to write a book about these paths with major highlights and where <strong>WE</strong> are heading.</p>
<p>Yes, I know there are many books analyzing Free Software and then some coming out like David Bollier&#8217;s Viral Spiral that looks at Commons production overall including rise of Creative Commons, but actually one looking at the larger scope of Free Culture would be quite interesting.</p>
<p>Check out the slides and throw em up if you have any comments:</p>
<div><a href="http://www.slideshare.net/mlinksva/free-softwarefree-culture-collaboration?src=embed" title="Free Software/Free Culture Collaboration">Free Software/Free Culture Collaboration</a>
<div>view <a href="http://www.slideshare.net/mlinksva/free-softwarefree-culture-collaboration?src=embed" title="View Free Software/Free Culture Collaboration on SlideShare">presentation</a> (tags: <a href="http://slideshare.net/tag/wiki">wiki</a> <a href="http://slideshare.net/tag/opencontent">opencontent</a> <a href="http://slideshare.net/tag/opensource">opensource</a> <a href="http://slideshare.net/tag/freesoftware">freesoftware</a>)</div>
</div>
<p>BTW, I wonder if we should collectively be working on a more finite conference about the <a href="http://en.wikipedia.org/wiki/Free_culture_movement">Free Culture Movement</a> for next year. This would be one targeted towards production of content, assessing failed projects, live events, and no eunuchs to assist in cultural production. The idea is that this conference would directly fit into the trajectory of Free Software. This conference would be in the optimal location globally for most people to attend for the least amount of expenditure, such as Amsterdam, Vancouver, Singapore, or a better optimized location. I think we can learn from Wikimania in Cairo and conferences in Sapporo as absurd for more the usual suspects on the conference circuit (of which I am a part).</p>
<p><strong>Free Culture Conference (&#8221;Get your FreeCon&#8221;)</strong> would be a meeting of specific projects to hash out interrelationships and collective trajectories for the coming year. We have had great success with the <a href="http://libregraphicsmeetings.org">Libre Graphics Meeting</a> which is not about people hand waving and armchair philosophizing about every single person&#8217;s movement, but specific projects coming together to their roadmap, challenges for interoperability, and real hacking on projects more than just declarations.</p>
<p>What would it take to put on a proper Free Culture Conference and who would need to be present. I would say:</p>
<p><a href="http://fsf.org">Free Software Foundation</a><br />
<a href="http://creativecommons.org">Creative Commons</a><br />
<a href="http://wikimedia.org">Wikimedia Properties</a><br />
<a href="http://gnome.org">Gnome Foundation</a><br />
<a href="http://ocw.mit.edu">Open Courseware Consortium</a><br />
<a href="http://archive.org">Internet Archive</a></p>
<p>And the list keeps going on&#8230;please add to, as this is just off the head&#8230;the number of companies that would be interested in this intermixing would be quite high IMO. I&#8217;m particularly interested in this being a place for companies interested in Open Hardware and Specifications to intermingle (aka, <a href="http://openmoko.com">Openmoko</a>, VIA, Intel)</p>
<p>The idea is that this is a place where project roadmaps are compared, integrations resolved (like Wikipedia BY-SA compatibility), and real hacking would take place. Also, this conference would be 2-3 days max and marked with conversions of projects to more liberalized licensing as affirmations each day to pump up participants [<a href="#0-freesoftware-freeculture-trajectories">0</a>]. The goal of the event would be to produce actual statements showing resolutions with implementation to back them up, and to announce the next 5-10 free culture priorities for the year.</p>
<p>Is anyone interested in this?</p>
<p><br />
[0] <span>I&#8217;ve called this <strong>Freedom Day</strong> before, but it needs a better name without the negative associations with Freedom in many asian countries - aka, freedom means free as in destroy the government, which this is NOT. Rather, the idea of Freedom Day would be for projects to announce using free licenses and/or moving from more restrictive licenses to more free licenses. What would a better name for this annual day be? What about <strong>SHARING DAY</strong>, or <strong>Global Day of Sharing</strong></span></p>
</blockquote>Originally from <a href="http://rejon.org/2008/08/05/freesoftware-freeculture-trajectories/">Free Software, Free Culture Trajectories, and Free Culture Conference</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/05/free-software-free-culture-trajectories-and-free-culture-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>View From My Window [19.43] 02.08.08 [Flickr]</title>
		<link>http://overlap.org/2008/08/05/view-from-my-window-1943-020808-flickr/</link>
		<comments>http://overlap.org/2008/08/05/view-from-my-window-1943-020808-flickr/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 20:02:51 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[cloud]]></category>

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2736595164</guid>
		<description><![CDATA[steve.wilde posted a photo:


Heavy Weather
  
]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2736595164/" title="View From My Window [19.43] 02.08.08"><img src="http://farm4.static.flickr.com/3060/2736595164_4b4da9e6ab_m.jpg" width="240" height="160" alt="View From My Window [19.43] 02.08.08" /></a></p>

<p>Heavy Weather</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=h7KJVK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=h7KJVK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=QSd5Ck"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=QSd5Ck" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=l0zsSK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=l0zsSK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2736595164/">View From My Window [19.43] 02.08.08 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/05/view-from-my-window-1943-020808-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3060/2736595164_73960ec5ce_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>View From My Window [05:29] 05.08.08 [Flickr]</title>
		<link>http://overlap.org/2008/08/05/view-from-my-window-0529-050808-flickr/</link>
		<comments>http://overlap.org/2008/08/05/view-from-my-window-0529-050808-flickr/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 20:02:18 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[cloud]]></category>

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2736593614</guid>
		<description><![CDATA[steve.wilde posted a photo:


Golden Sun Rise
  
]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2736593614/" title="29] 05.08.08"><img src="http://farm4.static.flickr.com/3133/2736593614_041f3de5e0_m.jpg" width="240" height="160" alt="29] 05.08.08" /></a></p>

<p>Golden Sun Rise</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=9iu74K"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=9iu74K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=E0S6Kk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=E0S6Kk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=tgOGCK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=tgOGCK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2736593614/">View From My Window [05:29] 05.08.08 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/05/view-from-my-window-0529-050808-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3133/2736593614_068b84c074_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>Almost to the Game</title>
		<link>http://overlap.org/2008/08/04/almost-to-the-game/</link>
		<comments>http://overlap.org/2008/08/04/almost-to-the-game/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 06:35:10 +0000</pubDate>
		<dc:creator>deerfang</dc:creator>
		
		<category><![CDATA[commons]]></category>

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

		<guid isPermaLink="false">http://deerfang.org/?p=358</guid>
		<description><![CDATA[An article on New York Times talks about the current terrorist threat in China as days getting closer to the Olympic opening in Beijing. The main factors for the threat are: Turkestan Islamic Party, Falun Gong, Al Qaeda and unstable individuals (although I am not clear what does &#8220;unstable individual&#8221; refer to). 
It is also [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.nytimes.com/2008/08/04/sports/olympics/04china.html?_r=1&#38;ref=asia&#38;oref=slogin">An article on New York Times</a> talks about the current terrorist threat in China as days getting closer to the Olympic opening in Beijing. The main factors for the threat are: <a href="http://shanghaiist.com/2008/07/26/turkestan_islamic_party_takes_credi.php">Turkestan Islamic Party</a>, Falun Gong, Al Qaeda and unstable individuals (although I am not clear what does &#8220;unstable individual&#8221; refer to). </p>
<p>It is also said in the article that Chinese official had missiles take aims at the sky above the Olympic stadium. There was some talk show on TV when we were having lunch yesterday. The host commented on the missiles that if there was attack, we can shoot it down with the missiles; and if it rained, we can also stop the rain with the missiles. </p>
<p>Last night, my friend were telling me some political jokes that were circulating through cell text messaging. The joke involves current Chinese president and Mao. He showed me story on his phone and tried to forward it to my phone. Strange thing happened.  My phone received the message but in blank saying &#8220;Missing Text&#8221;. We realize these kind of text messages might be censored now in China because of certain keywords.  The one my firend received were back in May. We tried to send the joke a few more times and also tried someone else&#8217; phone, but never succeeded. </p>
</blockquote>Originally from <a href="http://deerfang.org/2008/08/04/almost-to-the-game/">Almost to the Game</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/04/almost-to-the-game/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Links for 2008-08-04 [del.icio.us]</title>
		<link>http://overlap.org/2008/08/04/links-for-2008-08-04-delicious/</link>
		<comments>http://overlap.org/2008/08/04/links-for-2008-08-04-delicious/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 05:00:00 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[commons]]></category>

		<guid isPermaLink="false">http://del.icio.us/stevewilde#2008-08-04</guid>
		<description><![CDATA[<ul>
<li><a href="http://hitotoki.org/london/">Hitotoki</a><br />
A Narrative Map of London</li>
</ul>]]></description>
			<content:encoded><![CDATA[<blockquote><ul>
<li><a href="http://hitotoki.org/london/">Hitotoki</a><br>
A Narrative Map of London</li>
</ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=2EmDIK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=2EmDIK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=gNugdk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=gNugdk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=u3XRuK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=u3XRuK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://del.icio.us/stevewilde#2008-08-04">Links for 2008-08-04 [del.icio.us]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/04/links-for-2008-08-04-delicious/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Gastro Knight</title>
		<link>http://overlap.org/2008/08/04/the-gastro-knight/</link>
		<comments>http://overlap.org/2008/08/04/the-gastro-knight/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 23:58:00 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[commons]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-5935724.post-2338265096728124905</guid>
		<description><![CDATA[Just sat through an interminable Dark Knight in a sold out cinema with no air con after a pretty large meal. It was enjoyable up till the first natural end point of the film, but then they had to stumble about in the dark for 45 minutes or more with wh...]]></description>
			<content:encoded><![CDATA[<blockquote>Just sat through an interminable <span>Dark Knight</span> in a sold out cinema with no air con after a pretty large meal. It was enjoyable up till the first natural end point of the film, but then they had to stumble about in the dark for 45 minutes or more with what could easily have been the plot of an entirely different film if they had put their minds to it. Thank god for Heath Ledger's performance as it's pretty much the only one in it.<br /><br /><span>And is it me or did Harvey Dent look a little like Ken Barlow? It's that hair!</span><br /><br />Really like the effect of the ascending screechy note during fight scenes and the way the incidental music would drop out suddenly though. We had to give each other a nudge when Battersea Power Station made an appearance as the exploding warehouse where Rachel meets her end! But overall nowhere near as good as Batman Begins for me. Good to see <span>Matthew Walker's</span> excellent short <a href="http://www.depict.org/news/45">Operator</a> beforehand though.<br /><br />The meal beforehand was at <span>Gastro</span>, opposite the <span>Clapham Picturehouse</span>. Massive bowls of soup, probably a pint or more in each. I had tomato with basilica and Sam had fish soup. Not a bouillabaisse I don't think. The size of the soups meant that we barely had room for the steak and rabbit we had ordered for our main courses. But we managed. The restaurant couldn't be more French if it was in France. Only gripe was being asked if we would like to see the desert menu before our main course had arrived. Excellent.<br /><br />What with trying to digest that lot and the warmth of the dark cinema it's a good job the film was loud as we may have been sound asleep in no time.<br /><br /><span>In fact I'm off to bed now and will add some links to this later I think.</span><br /><br /><span class="bodytext"><b>Categories:</b> <a href="http://del.icio.us/hyperrealandsupercool/food&amp;drink">Food &amp; Drink</a>, <a href="http://del.icio.us/hyperrealandsupercool/film">Film</a></span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=u8bzNK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=u8bzNK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=KgpWKk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=KgpWKk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=e2UbPK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=e2UbPK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.hyperrealandsupercool.com/2008/08/gastro-knight.htm">The Gastro Knight</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/04/the-gastro-knight/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yassou</title>
		<link>http://overlap.org/2008/08/03/yassou/</link>
		<comments>http://overlap.org/2008/08/03/yassou/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 22:16:00 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[commons]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-5935724.post-5141752993348539316</guid>
		<description><![CDATA[Well, we're back and people tell me the weather has been glorious! It's grey and dull outside. It's a bit of a comedown compared to temperatures that have been hitting the mid to high 40's regularly in Rhodes. I feel over dressed with this tan!I've spe...]]></description>
			<content:encoded><![CDATA[<blockquote>Well, we're back and people tell me the weather has been glorious! It's grey and dull outside. It's a bit of a comedown compared to temperatures that have been hitting the mid to high 40's regularly in Rhodes. I feel over dressed with this tan!<br /><br />I've spent most of the weekend sifting through the photos I took and have managed to whittle the total down to 140, which are now up on Flickr. Follow the link below. Also had a pile of washing and stuff to do which is now hanging all over the flat.<br /><br />I'm now retrospectively adding posts for the days that we were in Rhodes. Which are mostly lists of places visited, what I read, how hot it was and what we ate and drank. I've done three days but I'm not sure when I'll get to finish the rest or add any useful links.<br /><br />Checking the calendar it's a busy month... <span></span>Then it's September!<br /><br /><span class="bodytext"><b>Categories:</b> <a href="http://del.icio.us/hyperrealandsupercool/music">Music</a>, <a href="http://del.icio.us/hyperrealandsupercool/London">London</a>, <a href="http://del.icio.us/hyperrealandsupercool/food&amp;drink">Food &amp; Drink</a>, <a href="http://del.icio.us/hyperrealandsupercool/film">Film</a></span><br /><br />See my <span><span>flick</span><span>r</span></span> set: <a href="http://www.flickr.com/photos/stevewilde/sets/72157606499841576/">Rhodes 2008</a>
<p><img border="0"></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=L48oNK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=L48oNK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=llz8Rk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=llz8Rk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=Wit2iK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=Wit2iK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.hyperrealandsupercool.com/2008/08/yassou.htm">Yassou</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/03/yassou/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cantocore Home Concert</title>
		<link>http://overlap.org/2008/08/03/cantocore-home-concert/</link>
		<comments>http://overlap.org/2008/08/03/cantocore-home-concert/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 08:26:12 +0000</pubDate>
		<dc:creator>deerfang</dc:creator>
		
		<category><![CDATA[Exhibitions &amp; Events]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://deerfang.org/?p=352</guid>
		<description><![CDATA[I didn&#8217;t have chance to post up Cantocore home concert pictures till now. And I landed in Guangzhou two days ago. Hot here! 


2 hours before the concert, Chris Willits and Ma Jie was setting up equipments and checking sound. They each were about to have a solo section and an improve collaborative performance. 

Dorthy [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I didn&#8217;t have chance to post up Cantocore home concert pictures till now. And I landed in Guangzhou two days ago. Hot here! </p>
<blockquote><p>
<img src="http://lh5.ggpht.com/dfang.lu/SJUw_Dcr6hI/AAAAAAAAACc/oMn1vL7AEEQ/IMG_5302.jpg?imgmax=512" width="430" alt="null" /><br />
2 hours before the concert, Chris Willits and Ma Jie was setting up equipments and checking sound. They each were about to have a solo section and an improve collaborative performance. <span></span></p>
<p><img src="http://lh6.ggpht.com/dfang.lu/SJUw_Vh_HrI/AAAAAAAAACk/ogG6iqSqjxU/IMG_5311.jpg?imgmax=512" width="430" alt="null" /><br />
Dorthy and Katie were preparing for the reception. </p>
<p><img src="http://lh6.ggpht.com/dfang.lu/SJVc9Q0fTcI/AAAAAAAAAEM/gUKl5alAEGk/IMG_5340-s.jpg?imgmax=512" width="430" alt="null" /><br />
Justin talked about art works from San Francisco artists.  </p>
<p><img src="http://lh6.ggpht.com/dfang.lu/SJUw_U5fzGI/AAAAAAAAACs/cYvSAZMByh4/IMG_5347.jpg?imgmax=512" width="430" alt="null" /><br />
I presented on Ping Pong Art Space in Guangzhou and artists from Guangzhou and it&#8217;s nearby areas. </p>
<p><img src="http://lh3.ggpht.com/dfang.lu/SJUw_dH0uuI/AAAAAAAAAC0/wS6n9_rcLXc/IMG_5381.jpg?imgmax=512" width="430" alt="null" /> Ma Jie performed with Pi Pa. </p>
<p><img src="http://lh6.ggpht.com/dfang.lu/SJU-QqiaeqI/AAAAAAAAADY/SBOXEXuP9fc/IMG_5407.jpg?imgmax=512" width="430" alt="null" /></p>
<p><img src="http://lh3.ggpht.com/dfang.lu/SJU-QwruvNI/AAAAAAAAADg/HOIIMqEr0E0/IMG_5411.jpg?imgmax=512" width="430" alt="null" /><br />
Chris Willits performed with self-modified electronic guitar, which also triggered video. </p>
<p><img src="http://lh3.ggpht.com/dfang.lu/SJU-QhQDIOI/AAAAAAAAADI/uMQTfrNSu6E/IMG_5405.jpg?imgmax=512" width="430" alt="null" /></p>
<p><img src="http://lh4.ggpht.com/dfang.lu/SJVXQn28tlI/AAAAAAAAAEE/-KybGx_dYPY/IMG_5397.jpg?imgmax=512" width="430" alt="null" /> Jon and I.
</p></blockquote>
</blockquote>Originally from <a href="http://deerfang.org/2008/08/03/cantocore-home-concert/">Cantocore Home Concert</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/03/cantocore-home-concert/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Links for 2008-08-02 [del.icio.us]</title>
		<link>http://overlap.org/2008/08/02/links-for-2008-08-02-delicious/</link>
		<comments>http://overlap.org/2008/08/02/links-for-2008-08-02-delicious/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 05:00:00 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[commons]]></category>

		<guid isPermaLink="false">http://del.icio.us/stevewilde#2008-08-02</guid>
		<description><![CDATA[<ul>
<li><a href="http://news.bbc.co.uk/1/hi/entertainment/7512072.stm">Delia Derbyshire Dance Track</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<blockquote><ul>
<li><a href="http://news.bbc.co.uk/1/hi/entertainment/7512072.stm">Delia Derbyshire Dance Track</a></li>
</ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=85l0zK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=85l0zK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=vHns6k"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=vHns6k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=tRcr8K"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=tRcr8K" border="0"></img></a>
</div></blockquote>Originally from <a href="http://del.icio.us/stevewilde#2008-08-02">Links for 2008-08-02 [del.icio.us]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/links-for-2008-08-02-delicious/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sunset 1 [Flickr]</title>
		<link>http://overlap.org/2008/08/02/sunset-1-flickr/</link>
		<comments>http://overlap.org/2008/08/02/sunset-1-flickr/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 23:07:30 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[2008]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2725868935</guid>
		<description><![CDATA[steve.wilde posted a photo:


Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I ...]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2725868935/" title="Sunset 1"><img src="http://farm4.static.flickr.com/3245/2725868935_cd416c938d_m.jpg" width="240" height="160" alt="Sunset 1" /></a></p>

<p>Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I took loads more than this but I've whittled it down to 9 to put up here.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=xndqgK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=xndqgK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=nPymik"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=nPymik" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=e7LC1K"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=e7LC1K" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2725868935/">Sunset 1 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/sunset-1-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3245/2725868935_47e4d8b7f9_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>Sunset 2 [Flickr]</title>
		<link>http://overlap.org/2008/08/02/sunset-2-flickr/</link>
		<comments>http://overlap.org/2008/08/02/sunset-2-flickr/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 23:07:09 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[2008]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2726692422</guid>
		<description><![CDATA[steve.wilde posted a photo:


Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I ...]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2726692422/" title="Sunset 2"><img src="http://farm4.static.flickr.com/3235/2726692422_91e6b599df_m.jpg" width="240" height="160" alt="Sunset 2" /></a></p>

<p>Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I took loads more than this but I've whittled it down to 9 to put up here.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=WAAEXK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=WAAEXK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=vTXpWk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=vTXpWk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=5A5bcK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=5A5bcK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2726692422/">Sunset 2 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/sunset-2-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3235/2726692422_5679b05cfd_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>Sunset 3 [Flickr]</title>
		<link>http://overlap.org/2008/08/02/sunset-3-flickr/</link>
		<comments>http://overlap.org/2008/08/02/sunset-3-flickr/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 23:06:47 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[2008]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2725867373</guid>
		<description><![CDATA[steve.wilde posted a photo:


Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I ...]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2725867373/" title="Sunset 3"><img src="http://farm4.static.flickr.com/3209/2725867373_eb6c0eb3f5_m.jpg" width="240" height="160" alt="Sunset 3" /></a></p>

<p>Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I took loads more than this but I've whittled it down to 9 to put up here.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=6wsLMK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=6wsLMK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=92erUk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=92erUk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=8u8kSK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=8u8kSK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2725867373/">Sunset 3 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/sunset-3-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3209/2725867373_d8a5710801_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>Sunset 4 [Flickr]</title>
		<link>http://overlap.org/2008/08/02/sunset-4-flickr/</link>
		<comments>http://overlap.org/2008/08/02/sunset-4-flickr/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 23:06:25 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[2008]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2726690828</guid>
		<description><![CDATA[steve.wilde posted a photo:


Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I ...]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2726690828/" title="Sunset 4"><img src="http://farm4.static.flickr.com/3294/2726690828_187cf92161_m.jpg" width="240" height="160" alt="Sunset 4" /></a></p>

<p>Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I took loads more than this but I've whittled it down to 9 to put up here.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=ZZCaIK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=ZZCaIK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=2LL2Rk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=2LL2Rk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=MG80IK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=MG80IK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2726690828/">Sunset 4 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/sunset-4-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3294/2726690828_98b76444ce_o.jpg" length="0" type="image/jpeg" />
		</item>
		<item>
		<title>Sunset 5 [Flickr]</title>
		<link>http://overlap.org/2008/08/02/sunset-5-flickr/</link>
		<comments>http://overlap.org/2008/08/02/sunset-5-flickr/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 23:05:58 +0000</pubDate>
		<dc:creator>steve.wilde</dc:creator>
		
		<category><![CDATA[2008]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">tag:flickr.com,2005:/photo/2726689828</guid>
		<description><![CDATA[steve.wilde posted a photo:


Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I ...]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.flickr.com/people/stevewilde/">steve.wilde</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/stevewilde/2726689828/" title="Sunset 5"><img src="http://farm4.static.flickr.com/3247/2726689828_7e7344598d_m.jpg" width="240" height="160" alt="Sunset 5" /></a></p>

<p>Pefkos being on the Eastern side of the island means the sunsets are brief and probably not as impressive as from the other side. The smoke from the fire augmented quite a few of these with very dramatic effects though. I took loads more than this but I've whittled it down to 9 to put up here.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Hyperfeed?a=DxSfNK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=DxSfNK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=QFHjnk"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=QFHjnk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Hyperfeed?a=TFnWJK"><img src="http://feeds.feedburner.com/~f/Hyperfeed?i=TFnWJK" border="0"></img></a>
</div></blockquote>Originally from <a href="http://www.flickr.com/photos/stevewilde/2726689828/">Sunset 5 [Flickr]</a>]]></content:encoded>
			<wfw:commentRss>http://overlap.org/2008/08/02/sunset-5-flickr/feed/</wfw:commentRss>
<enclosure url="http://farm4.static.flickr.com/3247/2726689828_13aba8d7f3_o.jpg" length="0" type="image/jpeg" />
		</item>
	</channel>
</rss>
