<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Key &#38; Compass Blog</title>
	<atom:link href="http://davidwelbourn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidwelbourn.wordpress.com</link>
	<description>A place for me to ramble about interactive fiction.</description>
	<lastBuildDate>Sun, 20 Feb 2011 23:55:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='davidwelbourn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Key &#38; Compass Blog</title>
		<link>http://davidwelbourn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://davidwelbourn.wordpress.com/osd.xml" title="Key &#38; Compass Blog" />
	<atom:link rel='hub' href='http://davidwelbourn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Another type of text adventure: data management</title>
		<link>http://davidwelbourn.wordpress.com/2011/02/20/another-type-of-text-adventure-data-management/</link>
		<comments>http://davidwelbourn.wordpress.com/2011/02/20/another-type-of-text-adventure-data-management/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 23:55:39 +0000</pubDate>
		<dc:creator>davidwelbourn</dc:creator>
				<category><![CDATA[IFWiki]]></category>
		<category><![CDATA[Interactive Fiction]]></category>

		<guid isPermaLink="false">http://davidwelbourn.wordpress.com/?p=13</guid>
		<description><![CDATA[My last post was when? Never mind. Today I want to talk about data management. Until now, I&#8217;ve been managing my private collection of interactive fiction data as a plain text file with the scintillating name &#8220;gamedata.txt&#8221;. I originally created it to help me generate HTML pages for what is now called my Key &#38; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=13&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My last post was when? Never mind. Today I want to talk about data management.</p>
<p>Until now, I&#8217;ve been managing my private collection of interactive fiction data as a plain text file with the scintillating name &#8220;gamedata.txt&#8221;. I originally created it to help me generate HTML pages for what is now called my Key &amp; Compass website. And, not having the newest of computers (nor all that much hard drive space, <em>nor</em> fancy software), a text file was really the way for me to go. The basic design was one record per game, and a list of key:value pairs delimited by or-bars. Cheap and simple.  For example, this was (until recently) what the record for one of my games looked like:</p>
<blockquote><p><code>gid:kraka02|g:Krakatoa Tuna Melt|fn:David|ln:Welbourn|yr:2002|sys:z5|evg:Speed-IF|ev:SpeedIF 10^&amp;minus;|vers:r2|ifid:ZCODE-2-021215-1E6E|tuid:b6fz0awms527hja0|b:2071|r:2007|wc:W+m|w:sp/sp_10-9.html#davidw|x0:b2071|rline:Release 2 / Serial number 021215 / Inform v6.21 Library 6/10</code></p></blockquote>
<p>Over time, my needs evolved—I started assembling the games list for the XYZZY Awards, then became the <em>de facto</em> admin of IFWiki—and gamedata.txt had to evolve too.</p>
<p>During January, I gave some thought to the name fields: fn (firstname), ln (lastname), and sfx (suffix). About the only advantage I had from them was I could sort by a single author&#8217;s surname, but it was very poor if I wanted to record multiple authors, publishers, or porters. So I thought and thought and I kinda liked how IFDB used curly braces after author names to record their TUIDs, so if I wanted to say &#8220;Nick Montfort {as:porter}&#8221; or &#8216;Marius M&amp;uuml;ller {as:&#8221;Taleslinger&#8221;}&#8217;, I could.</p>
<p>So I abolished the (fn,ln,sfx) fields and started replacing them with (na,mult,pub,test,adap) fields for authors, multimedia contributors, publishers, testers, and adaptors respectively. (By adaptors, I mean porters and translators). Names would be delimited by semicolons, subfields would be delimited by commas, and the curly braces would enclose the subfields.</p>
<p>Choosing semicolons as delimiters meant that I could no longer use them in HTML-entity style sequences, so I borrowed Inform 7&#8242;s square brackets for substitutions, and so &#8220;M&amp;uuml;ller&#8221; became &#8220;M[uuml]ller&#8221;. And I had to invent [c] to mean comma in one case where it was needed in a subfield value:</p>
<blockquote><p><code>na:Jonathon Rosebaugh {as:"His Imperial Majesty[c] Shortwinker the Fifth"}</code></p></blockquote>
<p>Oh, and I also invented ^ to mean a non-breaking space in names where the &#8220;surname&#8221; is two or more words. &#8220;Surname&#8221; can also mean a pseudonym in its entirety, not counting leading articles.</p>
<p>About a third of way through editing gamedata.txt via Notepad, I got disenchanted with the curly braces. Although they were fine for readablility, I worried about parsing the darn things when all I wanted was a delimited between name-proper and name-details. So I chose a pair of plus-signs for the honour. A bit uglier, perhaps, but I thought I could live with it.</p>
<blockquote><p><code>na:Ryan Stevens++as:"Rybread Celsius";Cody Sandifer</code></p></blockquote>
<p>And then I realized that I had all but re-invented the ?key=value&amp;key=value format at the ends of URLs except I&#8217;d chosen different delimiters. So that gave me a little confidence that I wasn&#8217;t completely mad.</p>
<p>You may be wondering what subfields I&#8217;m recording per name. Well, lessee&#8230;</p>
<ul>
<li>as:  For the name they chose to write as.</li>
<li>aka: For another name the person is also known as, especially for ADRIFT authors where the real names aren&#8217;t as well known.</li>
<li>role: For noting how the person contributed. For example, in the authors field, I might want to specify writer or programmer. In the adaptors field, I want to know if s/he&#8217;s a porter or translator.</li>
<li>wna: His/her article name at IFWiki, if needed.</li>
<li>pre: A bit of notation to display before the list of names.</li>
<li>sfx: A bit of notation to display after the list of names.</li>
</ul>
<p>So, all well and good. Except then I decide to chat a little about this on ifmud, and after the usual queries about why this isn&#8217;t in a database, someone told me about JSON (see json.org).</p>
<p>So I thought about it, and how ugly my gamedata.txt file is with respect to competitions and versions of different games and links to other sites, etc. &#8230; and so I&#8217;m moving all my IF data into a file with the scintillating name of gamejson.txt.</p>
<p>And when it&#8217;s all ready, I&#8217;ll let you all have a look at it, eh? And maybe I&#8217;ll make another post too.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidwelbourn.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidwelbourn.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidwelbourn.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=13&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://davidwelbourn.wordpress.com/2011/02/20/another-type-of-text-adventure-data-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8572f4dbd0a3285c05138ab41b60f11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davidwelbourn</media:title>
		</media:content>
	</item>
		<item>
		<title>IFWiki raw scribbles</title>
		<link>http://davidwelbourn.wordpress.com/2010/05/20/ifwiki-scribbles/</link>
		<comments>http://davidwelbourn.wordpress.com/2010/05/20/ifwiki-scribbles/#comments</comments>
		<pubDate>Thu, 20 May 2010 11:12:02 +0000</pubDate>
		<dc:creator>davidwelbourn</dc:creator>
				<category><![CDATA[IFWiki]]></category>
		<category><![CDATA[Interactive Fiction]]></category>

		<guid isPermaLink="false">http://davidwelbourn.wordpress.com/?p=3</guid>
		<description><![CDATA[Recently, I&#8217;ve been scribbling down notes on overlarge index cards to remind me of things to do. In case people are curious, here&#8217;s what my IFWiki cardset currently looks like (and I wish there was a  &#38;check; character &#8212; hm, I suppose I can use &#38;radic;): _ missing a few AIF Comps as per Delron&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=3&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been scribbling down notes on overlarge index cards to remind me of things to do. In case people are curious, here&#8217;s what my IFWiki cardset currently looks like (and I wish there was a  &amp;check; character &#8212; hm, I suppose I can use &amp;radic;): <span id="more-3"></span></p>
<p>_ missing a few AIF Comps as per Delron&#8217;s AIF comp page (2009 Christmas Micro Comp,  2002 AIF Pre-Comp (?))</p>
<p>_ simplfy the genre templates so we don&#8217;t have both {{fantasy}} and {{fantasync}}</p>
<p>_ review the Piracy 2.0 page</p>
<p>_ &#8220;composite room&#8221; ? &#8220;partitioned room&#8221;? } multi-room</p>
<p>_ //pr-if.org/doc/play-if-card/ is the new official web page for the card. Zarf sez it&#8217;s okay to put on Starters page. Also, there&#8217;s a CC license on it. CC Attribution Share Alike 3.0</p>
<p>_ JiGcomp games are no longer &#8220;in comp&#8221;</p>
<p>_ JiGcomp game pages need placements</p>
<p><span style="text-decoration:underline;">√</span> The Feelies //ascii.textfiles.com/archives/1321</p>
<p>_ TWIFcomp entries</p>
<p>_ training sequence</p>
<p>_ new Phoenix releases (9 games on ifarchive &#8211; rereleased 4 &amp; 5 new one to go)</p>
<p><span style="text-decoration:underline;">√</span> //ostatic.com/hugonomicon &#8211; maintained by Hugella</p>
<p><span style="text-decoration:underline;">`</span> The Man in the Rain &#8211; Feb 4, 2010, TADS 2 by Karl Adamson //bedroomcoder.files.wordpress.com/2010/02/04/the-main-in-the-rain-text-adventure-puzzle/</p>
<p><span style="text-decoration:underline;">√</span> IceCreamJonsey ≡ Recchi</p>
<p>_ TWIF authors need to be credited</p>
<p>_ sf.net/projects/zlr (by vaporware)</p>
<p><span style="text-decoration:underline;">√</span> Seattle IF newsgroup //groups.google.com/group/seattle-if</p>
<p>_ &#8220;synonym sickness&#8221; (see IFDB review of Myth)</p>
<p>_ &#8220;mini-game&#8221;</p>
<p>_ &#8220;Handy Kit&#8221; reimplements some of Spider and Web in I7</p>
<p>_ EGC Paper Chase</p>
<p>_ aggregate(d), composite, partitioned } multi-room</p>
<p><span style="text-decoration:underline;">`</span> www.inthecompanyofgrues/ is Neophyte&#8217;s blog</p>
<p><span style="text-decoration:underline;">`</span> saucersofmud.wordpress.com is Matt Weiner&#8217;s blog</p>
<p><span style="text-decoration:underline;">`</span> Matt Wigdahl&#8217;s is at //www.wigdahl.net/quern/</p>
<p>_ preparing to speak about IF</p>
<p>- &#8211; job interview-like questions</p>
<p>- &#8211; make a list of topics that might discuss</p>
<p>- &#8211; &#8220;elevator speech&#8221; (1-3 minute of exposition on a topic)</p>
<p><span style="text-decoration:underline;">√</span> SF Bay Area IF Group //www.meetup.com/sf-bay-area-interactive-fiction (also at Twitter &amp; Facebook)</p>
<p>_ what&#8217;s TerpEtude (Rob @ Waterpoint using it to debug his MOO Z-machine)</p>
<p>_ accretive PC (Varicella, Lock &amp; Key, Spider &amp; Web, Make It Good (?))</p>
<p>_ Game or story? Easy or difficult? Good for newcomers?</p>
<p><span style="text-decoration:underline;">√</span> YOMIN: (vaporware&#8217;s) I6/ZIL IDE //yomin.sf.net</p>
<p><span style="text-decoration:underline;">√</span> update authors of Grand Prix 2010 games that they wrote them.</p>
<p><span style="text-decoration:underline;">√</span> Category:Floyd authors</p>
<p>_ results of JiGcomp arentyet on game pages, author pages</p>
<p><span style="text-decoration:underline;">√</span> Add Ka <span style="text-decoration:line-through;">and 43</span> to Short Titles</p>
<p><span style="text-decoration:underline;">√</span> Add Violet to &#8220;Colours&#8221; theme</p>
<p>_ add links to [IFArchive]/mini-comps/gdc7 for JIGcmp games</p>
<p><span style="text-decoration:underline;">√</span> Roofed takes place in 2040 (Games by years their story takes place)</p>
<p><span style="text-decoration:underline;">√</span> Roofed &#8220;website&#8221; www.ghostswithshitjobs.com</p>
<p>_ Nitku would like the option to download the IFWiki DB (He thinks it&#8217;s just a setting in MediaWiki)</p>
<p>_ do game pages for PAX Speed have links to CF transcript?</p>
<p>_ people who participated at PAX East (panels, readings) need crediting on their pages</p>
<p>_ make sure PAX people&#8217;s pages also link to their PAX related blogs and pics</p>
<p><span style="text-decoration:underline;">√</span> 2009 XYZZY Awards ceremony transcript</p>
<p>_ Speed-IF y=1/x game pages</p>
<p>_ Category:Inform 7 extensions</p>
<p>_ ADRIFT modules ??</p>
<p>_ T3&#8242;s old list is going</p>
<p>_ promote Zarf&#8217;s card on Starters page</p>
<p>_ more on Interpreters</p>
<p>_ Front page &#8211; PAX, Get Lamp, USB, Outreach</p>
<p>_ Grand Prix 2010 status?</p>
<p>_ /eblong.com/zarf/tmp/play-if-card/</p>
<p><span style="text-decoration:underline;">√</span> T3 on LJ //community.livejournal.com/tads3/</p>
<p><span style="text-decoration:underline;">√</span> add PAX speed game pages</p>
<p><span style="text-decoration:underline;">√</span> add PAX speed game credits to People pages</p>
<p><span style="text-decoration:underline;">√</span> Spring Thing? Apr 8 / 9</p>
<p><span style="text-decoration:underline;">√</span> latest ADRIFT games</p>
<p><span style="text-decoration:underline;">√</span> Raising the Flag on Mount Yo Momma was released out of speedif to IFDB</p>
<p>_ Meretzky is in Lobsters On A Plane</p>
<p><span style="text-decoration:underline;">√</span> Find Andy Part 1 (Little Britain) by TommoHawk, 9-Mar; Ad4</p>
<p><span style="text-decoration:underline;">√</span> GeoQuest by Dan Munroe Rel 4 090928 I7 //geocache-if.appspot.com/geoquest.html</p>
<p>_ all testers of Broken Legs must be credited on their pages</p>
<p>_ Post-Post-Comp results!</p>
<p><span style="text-decoration:underline;">√</span> Merchandise category? Swag? &#8212; Commercial games? &#8211; Feelies, T-shirts, ADRIFT &#8211; Prizes, Golden Banana &#8211; Books?</p>
<p><span style="text-decoration:underline;">√</span> move Emily&#8217;s Cheese Directory to IFWiki</p>
<p><span style="text-decoration:underline;">√</span> http://www.darkweb.com/~benrg/if-decompilers/ (including Mrifk (decompiles Glx) and SCADS 2)</p>
<p><span style="text-decoration:underline;">√</span> Cat:Commercial games</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidwelbourn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidwelbourn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidwelbourn.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=3&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://davidwelbourn.wordpress.com/2010/05/20/ifwiki-scribbles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8572f4dbd0a3285c05138ab41b60f11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davidwelbourn</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://davidwelbourn.wordpress.com/2010/05/02/hello-world/</link>
		<comments>http://davidwelbourn.wordpress.com/2010/05/02/hello-world/#comments</comments>
		<pubDate>Sun, 02 May 2010 18:30:37 +0000</pubDate>
		<dc:creator>davidwelbourn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://davidwelbourn.wordpress.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=1&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidwelbourn.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidwelbourn.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidwelbourn.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=davidwelbourn.wordpress.com&amp;blog=13439583&amp;post=1&amp;subd=davidwelbourn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://davidwelbourn.wordpress.com/2010/05/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8572f4dbd0a3285c05138ab41b60f11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davidwelbourn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
