<?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>As I Xi It v2.3 &#187; Web</title>
	<atom:link href="http://xiyuonline.com/blog2/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://xiyuonline.com/blog2</link>
	<description>More on the everyday adventures of Xi</description>
	<lastBuildDate>Wed, 08 Feb 2012 03:46:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<image>
<link>http://xiyuonline.com/blog2</link>
<url>http://xiyuonline.com/blog2/wp-content/mbp-favicon/blog favicon_sml.jpg</url>
<title>As I Xi It v2.3</title>
</image>
		<item>
		<title>GPS Mapping Test</title>
		<link>http://xiyuonline.com/blog2/gpsmappingtest/</link>
		<comments>http://xiyuonline.com/blog2/gpsmappingtest/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 20:42:11 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[osm]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=2166</guid>
		<description><![CDATA[This evening, I went in search for a WP plug-in that&#8217;ll let me display GPS tracks in my blog posts. I wanted something straightforward where I could just upload a .gpx file within WordPress, like you do with pics and vids, and it&#8217;ll automatically be plotted on a map and I could just pop it [...]]]></description>
			<content:encoded><![CDATA[<p>This evening, I went in search for a WP plug-in that&#8217;ll let me display GPS tracks in my blog posts. I wanted something straightforward where I could just upload a .gpx file within WordPress, like you do with pics and vids, and it&#8217;ll automatically be plotted on a map and I could just pop it into a post. It was a taller order than I&#8217;d expected.</p>
<p>The best, and no means ideal method I found was the <a href="http://wordpress.org/extend/plugins/osm/" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/osm/?referer=');">OSM </a>plug-in. It&#8217;s a bit tedious to use and involves uploading my .gpx file via FTP, copy and pasting that location into the plug-in, meddle with a few settings and then copying and pasting the code generated into my blog post. Here&#8217;s what it came up with below.</p>
<style type="text/css">.entry .olMapViewport img {max-width: none; max-height: none;}.entry-content img, .widget img {max-width: none; max-height: none;}.olControlAttribution {bottom: 0 !important;}div.olControlMousePosition {bottom: 1em !important;}#map_1 {clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px; left: 0px;}#map_1 img{clear: both; padding: 0px; margin: 0px; border: 0px; width: 100%; height: 100%; position: absolute; margin-top:0px; margin-right:0px;margin-left:0px; margin-bottom:0px;}</style><div id="map_1" style="width:600px; height:450px; overflow:hidden;padding:0px;border:thin solid black;"><script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script><script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script><script type="text/javascript">/* <![CDATA[ */(function($) { map = new OpenLayers.Map ("map_1", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var lmap = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerOSM_Attr = new OpenLayers.Layer.Vector("OSM-plugin",{attribution:"<a href=\"http://www.Fotomobil.at/wp-osm-plugin\">OSM plugin</a>"});map.addLayers([lmap, layerOSM_Attr]);map.addControl(new OpenLayers.Control.ScaleLine());    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(-0.483,51.631).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("stockerslake", "http://xiyuonline.com/blog2/wp-content/uploads/GPX/stockerslake.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);var markers = new OpenLayers.Layer.Markers( "Marker" );map.addLayer(markers);var data = {};var currentPopup;data.icon = new OpenLayers.Icon("http://xiyuonline.com/blog2/wp-content/plugins/osm/icons/marker_posts.png",     new OpenLayers.Size(2,2),     new OpenLayers.Pixel(-1, -1));var ll = new OpenLayers.LonLat(-0.476,51.635).transform(map.displayProjection,  map.projection);     var feature = new OpenLayers.Feature(markers, ll, data);feature.closeBox = true;feature.popupClass = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {"autoSize": true, minSize: new OpenLayers.Size(150,150),"keepInMap": true } );feature.data.popupContentHTML = "";feature.data.overflow = "hidden";var marker = new OpenLayers.Marker(ll,data.icon.clone());marker.feature = feature;var markerClick = function(evt) {  if (this.popup == null) {    this.popup = this.createPopup(this.closeBox);    map.addPopup(this.popup);    this.popup.show();  }   else {    this.popup.toggle();  }  OpenLayers.Event.stop(evt);};markers.addMarker(marker);})(jQuery)/* ]]&gt; */ </script></div>
<p>The other method is to import the .gpx file into Google Maps and then copying and pasting the HTML from that into the post. I&#8217;ve added it below for comparison. I think I&#8217;ll opt for the Google method in future, it&#8217;s just easier.</p>
<p><iframe src="http://maps.google.co.uk/maps/ms?msa=0&amp;msid=200235579317169647782.0004ab81f47c33c1c730c&amp;hl=en&amp;ie=UTF8&amp;vpsrc=0&amp;ll=51.631631,-0.484171&amp;spn=0.011987,0.025706&amp;z=15&amp;output=embed" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="600" height="450"></iframe><br />
<small>View
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_5"><iframe class="xmlgm" id="xmlgm_5" src="http://xiyuonline.com/blog2/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?mygooglemapid=5" style="border: 0px; width: 600px; height: 450px;" name="Google_My_Map" frameborder="0"></iframe></div>
<p> in a larger map</small></p>
<p>The next task is to find something that&#8217;ll display a map with the GPS tracks <em><strong>AND</strong></em> plot images taken along the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/gpsmappingtest/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quarter-life Crisis Indeed</title>
		<link>http://xiyuonline.com/blog2/quarter-life-crisis-indeed/</link>
		<comments>http://xiyuonline.com/blog2/quarter-life-crisis-indeed/#comments</comments>
		<pubDate>Mon, 09 May 2011 15:18:31 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[crisis]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1951</guid>
		<description><![CDATA[A friend posted this in Facebook today, thought I&#8217;d add it here. &#160;]]></description>
			<content:encoded><![CDATA[<p>A friend posted this in Facebook today, thought I&#8217;d add it <a href="http://www.newscientist.com/blogs/shortsharpscience/2011/05/feeling-depressed-maybe-youre.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.newscientist.com/blogs/shortsharpscience/2011/05/feeling-depressed-maybe-youre.html?referer=');">here</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/quarter-life-crisis-indeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All things gory</title>
		<link>http://xiyuonline.com/blog2/all-things-gory/</link>
		<comments>http://xiyuonline.com/blog2/all-things-gory/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 23:00:21 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[horror]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[saw]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1755</guid>
		<description><![CDATA[I discovered this site this evening. Bloody brilliant I say! Click here to see what it is. Thought this was a rather good article. I like how it referred to flicks like the Saw franchise as &#8220;torture porn&#8221;, that tickled me. Come to think of it, I have yet to see V, VI and 3D. [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered this site this evening. Bloody brilliant I say! <a href="http://www.bloody-disgusting.com/" onclick="pageTracker._trackPageview('/outgoing/www.bloody-disgusting.com/?referer=');">Click here to see what it is.</a></p>
<p>Thought <a href="http://www.bloody-disgusting.com/news/23825" onclick="pageTracker._trackPageview('/outgoing/www.bloody-disgusting.com/news/23825?referer=');">this </a>was a rather good article. I like how it referred to flicks like the Saw franchise as &#8220;torture porn&#8221;, that tickled me. Come to think of it, I have yet to see V, VI and 3D. Actually, I don&#8217;t think I&#8217;ve even see IV. Having read the plot summary for it, I don&#8217;t recall ever watching IV. Hmn&#8230; might have to get the boxset, or just dig out the torrents.</p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/all-things-gory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Galapagos Tortoises</title>
		<link>http://xiyuonline.com/blog2/galapagos-tortoises/</link>
		<comments>http://xiyuonline.com/blog2/galapagos-tortoises/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 09:45:44 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[chelonian]]></category>
		<category><![CDATA[galapagos]]></category>
		<category><![CDATA[tortoise]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1744</guid>
		<description><![CDATA[How neat are these dudes?!]]></description>
			<content:encoded><![CDATA[<p>How neat are these dudes?!</p>
<p><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/2XlwTGFe-xo?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/galapagos-tortoises/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fosses</title>
		<link>http://xiyuonline.com/blog2/fosses/</link>
		<comments>http://xiyuonline.com/blog2/fosses/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 17:45:19 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[fossen]]></category>
		<category><![CDATA[fosses]]></category>
		<category><![CDATA[waterfalls]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1597</guid>
		<description><![CDATA[I&#8217;m really quite fond of fosses. That means waterfalls in Icelandic for those that don&#8217;t know. Unlike TLC, I&#8217;ll be chasing waterfalls. Waterfall pics.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really quite fond of fosses. That means waterfalls in Icelandic for those that don&#8217;t know. Unlike <a href="http://www.youtube.com/watch?v=cmpOfZ_-ozI" onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=cmpOfZ_-ozI&amp;referer=');">TLC</a>, I&#8217;ll be chasing waterfalls.</p>
<p><a href="http://www.thephotoargus.com/inspiration/30-beautiful-examples-of-waterfall-photography/" onclick="pageTracker._trackPageview('/outgoing/www.thephotoargus.com/inspiration/30-beautiful-examples-of-waterfall-photography/?referer=');">Waterfall pics.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/fosses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Snowyness</title>
		<link>http://xiyuonline.com/blog2/more-snowyness/</link>
		<comments>http://xiyuonline.com/blog2/more-snowyness/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 10:43:27 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Quirky]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[calvin and hobbes]]></category>
		<category><![CDATA[snowmen]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1514</guid>
		<description><![CDATA[Calvin and Hobbes are just so neat! Click here.]]></description>
			<content:encoded><![CDATA[<p>Calvin and Hobbes are just so neat!</p>
<p><a href="http://9gag.com/gag/59965/" onclick="pageTracker._trackPageview('/outgoing/9gag.com/gag/59965/?referer=');">Click here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/more-snowyness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logorama!!</title>
		<link>http://xiyuonline.com/blog2/logorama/</link>
		<comments>http://xiyuonline.com/blog2/logorama/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 23:45:07 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Quirky]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[2010 oscars]]></category>
		<category><![CDATA[logorama]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1132</guid>
		<description><![CDATA[This is just brilliant!! For those who don&#8217;t know, it won the 2010 oscar for best animated short film and rightly so!]]></description>
			<content:encoded><![CDATA[<p>This is just brilliant!! For those who don&#8217;t know, it won the 2010 oscar for best animated short film and rightly so!</p>
<p><object id="seyretpl" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="448" height="374" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="seyretpl" /><param name="allowscriptaccess" value="always" /><param name="bgcolor" value="#000000" /><param name="wmode" value="window" /><param name="allowfullscreen" value="true" /><param name="flashvars" value="tinyimg=http://api.ning.com:80/files/xV06*1IYG8cj3N7M10pgy0ZMQBdkzH5XHJ0lt6jK*1qvDR7wQtvfuAdEzh6WUHXlZrOhc4xjeLE7nSMWEj2THxat8JdHe4Xy/Picture8.png" /><param name="src" value="http://ilovepwnage.com/player.swf?autoplay=0&amp;Addr=NTg1Ng==" /><embed id="seyretpl" type="application/x-shockwave-flash" width="448" height="374" src="http://ilovepwnage.com/player.swf?autoplay=0&amp;Addr=NTg1Ng==" flashvars="tinyimg=http://api.ning.com:80/files/xV06*1IYG8cj3N7M10pgy0ZMQBdkzH5XHJ0lt6jK*1qvDR7wQtvfuAdEzh6WUHXlZrOhc4xjeLE7nSMWEj2THxat8JdHe4Xy/Picture8.png" allowfullscreen="true" wmode="window" bgcolor="#000000" allowscriptaccess="always" name="seyretpl"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/logorama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now iPhone friendly!</title>
		<link>http://xiyuonline.com/blog2/now-iphone-friendly/</link>
		<comments>http://xiyuonline.com/blog2/now-iphone-friendly/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:33:17 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WPTouch]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1079</guid>
		<description><![CDATA[I&#8217;ve installed the WPTouch plugin for this blog and it works pretty well. It greatly simplifies the interface of the site when viewed on an iPhone or any other mobile device. Simple, elegant, fast. What more could I ask for?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve installed the WPTouch plugin for this blog and it works pretty well. It greatly simplifies the interface of the site when viewed on an iPhone or any other mobile device.</p>
<p>Simple, elegant, fast. What more could I ask for?</p>
<div id="attachment_364" class="wp-caption alignnone" style="width: 210px"><a class="thickbox" href="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_26E544EF-C4FE-4D46-B646-79DA7B314D3E.jpeg"><img class="size-full wp-image-364" style="border: 5px none grey;" src="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_26E544EF-C4FE-4D46-B646-79DA7B314D3E.jpeg" alt="Home page" width="200" height="300" /></a><p class="wp-caption-text">Home page</p></div>
<div id="attachment_364" class="wp-caption alignnone" style="width: 210px"><a class="thickbox" href="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_BB8C5022-5924-47C0-BF79-7AA60E2A1A84.jpeg"><img class="size-full wp-image-364" src="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_BB8C5022-5924-47C0-BF79-7AA60E2A1A84.jpeg" alt="Pages page" width="200" height="300" /></a><p class="wp-caption-text">Pages page</p></div>
<div id="attachment_364" class="wp-caption alignnone" style="width: 210px"><a class="thickbox" href="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_CCF8586B-FE51-4743-8EDA-36F735757F14.jpeg"><img class="size-full wp-image-364" src="http://xiyuonline.com/blog2/wp-content/uploads/2010/02/p_480_320_CCF8586B-FE51-4743-8EDA-36F735757F14.jpeg" alt="Categories list" width="200" height="300" /></a><p class="wp-caption-text">Categories list</p></div>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/now-iphone-friendly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pixles Vs. Grain</title>
		<link>http://xiyuonline.com/blog2/pixles-vs-grain/</link>
		<comments>http://xiyuonline.com/blog2/pixles-vs-grain/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 17:14:12 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Quirky]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[grain]]></category>
		<category><![CDATA[pixles]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=1072</guid>
		<description><![CDATA[Brilliant!]]></description>
			<content:encoded><![CDATA[<p>Brilliant!<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/VEg07bA1gzs&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/VEg07bA1gzs&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/xM4xH-jZ1NU&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/xM4xH-jZ1NU&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/M4c3lwyYyxo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/M4c3lwyYyxo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/pixles-vs-grain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watermelon Nights</title>
		<link>http://xiyuonline.com/blog2/watermelon-nights/</link>
		<comments>http://xiyuonline.com/blog2/watermelon-nights/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 14:39:50 +0000</pubDate>
		<dc:creator>XiYu</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[stop motion]]></category>
		<category><![CDATA[watermelon]]></category>

		<guid isPermaLink="false">http://xiyuonline.com/blog2/?p=877</guid>
		<description><![CDATA[I came across this on the web today. Pretty neat! Watermelon Nights from Dan Meth on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>I came across this on the web today. Pretty neat!<br />
<object width="400" height="302"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1607844&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1607844&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="302"></embed></object>
<p><a href="http://vimeo.com/1607844" onclick="pageTracker._trackPageview('/outgoing/vimeo.com/1607844?referer=');">Watermelon Nights</a> from <a href="http://vimeo.com/danmeth" onclick="pageTracker._trackPageview('/outgoing/vimeo.com/danmeth?referer=');">Dan Meth</a> on <a href="http://vimeo.com" onclick="pageTracker._trackPageview('/outgoing/vimeo.com?referer=');">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://xiyuonline.com/blog2/watermelon-nights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

