<?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>seeking immortality &#187; english</title>
	<atom:link href="http://blag.sebacean.net/category/english/feed/" rel="self" type="application/rss+xml" />
	<link>http://blag.sebacean.net</link>
	<description>where are we going, and why am i in this handbasket</description>
	<lastBuildDate>Tue, 22 Dec 2009 23:26:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WatchThis: Let the Right One In</title>
		<link>http://blag.sebacean.net/2009/01/watchthis-let-the-right-one-in/</link>
		<comments>http://blag.sebacean.net/2009/01/watchthis-let-the-right-one-in/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 11:32:50 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[vampires]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=89</guid>
		<description><![CDATA[Must see, really cool take on the topic. Complete with disturbing images of a north-european distopian, snowcovered town Far better than the twilight movie, which sucked (i liked the book though, i read all four).]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rottentomatoes.com/m/lat_den_ratte_komma_in/"><img src="http://images.rottentomatoes.com/images/movie/custom/63/10009663.jpg" alt="" /></a></p>
<p>Must see, really cool take on the topic. Complete with disturbing images of a north-european distopian, snowcovered town <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Far better than the twilight movie, which sucked (i liked the book though, i read all four).</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2009/01/watchthis-let-the-right-one-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xslt sample: factorial (named template)</title>
		<link>http://blag.sebacean.net/2009/01/xslt-sample-factorial-named-template/</link>
		<comments>http://blag.sebacean.net/2009/01/xslt-sample-factorial-named-template/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 21:36:22 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=75</guid>
		<description><![CDATA[Currently learning for an exam and freshing up my XSLT knowledge &#8230; &#60;?xml version=&#34;1.0&#34;?&#62; &#60;xsl:stylesheet version=&#34;1.0&#34; xmlns:xsl=&#34;http://www.w3.org/1999/XSL/Transform&#34;&#62; &#60;!-- ! Small XSLT prog that calculates the faculty of one or more ! numbers by recursively calling a named template ! numbers are expected to be in a tree: ! &#60;nums&#62;&#60;num&#62;1&#60;/num&#62;&#60;num&#62;2&#60;/num&#62;...&#60;/nums&#62; --&#62; &#60;xsl:output method=&#34;text&#34;/&#62; &#60;xsl:template match=&#34;num&#34;&#62; &#60;xsl:text&#62;fak(&#60;/xsl:text&#62;]]></description>
			<content:encoded><![CDATA[<p>Currently learning for an exam and freshing up my XSLT knowledge &#8230; <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre class="brush: xslt">
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;xsl:stylesheet version=&quot;1.0&quot;
  xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;
  &lt;!--
    ! Small XSLT prog that calculates the faculty of one or more
    ! numbers by recursively calling a named template
    ! numbers are expected to be in a tree:
    ! &lt;nums&gt;&lt;num&gt;1&lt;/num&gt;&lt;num&gt;2&lt;/num&gt;...&lt;/nums&gt;
   --&gt;

  &lt;xsl:output method=&quot;text&quot;/&gt;

  &lt;xsl:template match=&quot;num&quot;&gt;
      &lt;xsl:text&gt;fak(&lt;/xsl:text&gt;
      &lt;xsl:value-of select=&quot;.&quot;/&gt;
      &lt;xsl:text&gt;) is &lt;/xsl:text&gt;
      &lt;xsl:call-template name=&quot;fak&quot;&gt;
          &lt;xsl:with-param name=&quot;number&quot; select=&quot;.&quot;/&gt;
      &lt;/xsl:call-template&gt;
  &lt;/xsl:template&gt;

  &lt;xsl:template name=&quot;fak&quot;&gt;
      &lt;xsl:param name=&quot;number&quot;/&gt;
      &lt;xsl:choose&gt;
          &lt;xsl:when test=&quot;$number = 1&quot;&gt;
              &lt;xsl:value-of select=&quot;$number&quot;/&gt;
          &lt;/xsl:when&gt;
          &lt;xsl:otherwise&gt;
              &lt;xsl:variable name=&quot;recursefak&quot;&gt;
                  &lt;xsl:call-template name=&quot;fak&quot;&gt;
                      &lt;xsl:with-param name=&quot;number&quot; select=&quot;$number - 1&quot;/&gt;
                  &lt;/xsl:call-template&gt;
              &lt;/xsl:variable&gt;
              &lt;xsl:value-of select=&quot;$number * $recursefak&quot;/&gt;
          &lt;/xsl:otherwise&gt;
      &lt;/xsl:choose&gt;
  &lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
</pre>
<p>Expected XML looks like this (with DTD even! ;P):</p>
<pre class="brush: xml">
&lt;?xml version=&quot;1.0&quot; ?&gt;
&lt;!DOCTYPE numbers [
  &lt;!ELEMENT nums (num+)&gt;
  &lt;!ELEMENT num (#PCDATA)&gt;
]&gt;
&lt;nums&gt;
  &lt;num&gt;3&lt;/num&gt;
  &lt;num&gt;12&lt;/num&gt;
&lt;/nums&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2009/01/xslt-sample-factorial-named-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8230; better than vista</title>
		<link>http://blag.sebacean.net/2009/01/better-than-vista/</link>
		<comments>http://blag.sebacean.net/2009/01/better-than-vista/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 10:00:55 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=68</guid>
		<description><![CDATA[i seldomly laugh out loud when reading something &#8230; but this made my day XKCD 528 &#60;img alt=&#8220;Disclaimer: I have not actually tried the beta yet. I hear it&#8217;s quite pleasant and hardly Hitler-y at all.&#8221;&#62; ps) i saw the (leaked) beta in vmware and it actually was quite nice pps) the horde on webspace]]></description>
			<content:encoded><![CDATA[<p>i seldomly laugh out loud when reading something &#8230; but this made my day <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img src="http://imgs.xkcd.com/comics/windows_7.png" alt="Windows 7" /><br />
<a href="http://xkcd.com/528/">XKCD 528 &lt;img alt=<em>&#8220;Disclaimer: I have not actually tried the beta yet.  I hear it&#8217;s quite pleasant and hardly Hitler-y at all.&#8221;&gt;</em></a></p>
<p>ps) i saw the (leaked) beta in vmware and it actually was quite nice <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
pps) the <a href="http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part2/">horde on webspace (no shell)</a> guide will be delayed until my host decides to fix his PHP installation (imap_open() is broken&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2009/01/better-than-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horde on Webspace (no shell) Part2</title>
		<link>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/</link>
		<comments>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 16:07:36 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=63</guid>
		<description><![CDATA[After uploading the (now smaller) Horde with our FTP client we can continue with Part 2 The Database Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde. This step depends on your webhosters so i&#8217;ll just make it quick:]]></description>
			<content:encoded><![CDATA[<p>After uploading the (<a href="http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/">now</a> smaller) Horde with our FTP client we can continue with</p>
<p><strong>Part 2 The Database</strong><br />
Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde.</p>
<p>This step depends on your webhosters so i&#8217;ll just make it quick:<br />
First create a database with your webhost, then find: hostname (often locahost), username, password, type (often tcp) and databasename for that database.</p>
<p>Now your webhoster probably offers some kind of management frontend (mostly phpmyadmin). There you navigate to your database and select the &#8220;SQL&#8221; tab.</p>
<p>In the editbox you will find there you have to paste some of the lines from the .sql file provided with Horde that matches your database. I use mysql so i used ./scripts/sql/create.mysql.sql.</p>
<p>Out host already created the database, the user etc. so we only need lines that create tables. In my file this would be lines 52 -> end (look for the first CREATE TABLE statement). Copy&#038;Paste and press Submit. This should have given you no errors and created ~18 tables in your database.</p>
<p>In the next step we will create a basic configuration that allows Horde to run so we can do the rest of the setup from within it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Horde on Webspace (no shell) Part1</title>
		<link>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/</link>
		<comments>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 01:19:09 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=57</guid>
		<description><![CDATA[Because i don't like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.
This experiment will most likely fail because i don't have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening]]></description>
			<content:encoded><![CDATA[<p>Because i don&#8217;t like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.</p>
<p>This experiment will most likely fail because i don&#8217;t have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening<br />
<strong><br />
Part1: Horde is f***ing huge!<br />
</strong><br />
<code><br />
du -sch .<br />
108M    total<br />
</code></p>
<p>I&#8217;ll start by making horde a little slimer&#8230;<br />
This will give me all the folders with locales other than german or english (cd to horde first)<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB<br />
</code><br />
and this will delete them<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p>The same for the &#8220;.po&#8221; files:<br />
<code><br />
find -iname ??_??.po -type f | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p><code><br />
du -sch .<br />
51M     total<br />
</code><br />
Half the size, nice <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>om nom nom nom nom</title>
		<link>http://blag.sebacean.net/2008/07/om-nom-nom-nom-nom/</link>
		<comments>http://blag.sebacean.net/2008/07/om-nom-nom-nom-nom/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 17:02:51 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[pics]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=20</guid>
		<description><![CDATA[An onomatopoeical adjective based on the sound emitted when something is &#8220;oh so tasty&#8221; (either through hunger or flavorological value) that one gnaws through it without regard to cleanliness or etiquette.]]></description>
			<content:encoded><![CDATA[<blockquote><p>An onomatopoeical adjective based on the sound emitted when something is &#8220;oh so tasty&#8221; (either through hunger or flavorological value) that one gnaws through it without regard to cleanliness or etiquette.</p></blockquote>

]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/07/om-nom-nom-nom-nom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>what internetaccess used to cost&#8230;</title>
		<link>http://blag.sebacean.net/2008/06/what-internetaccess-used-to-cost/</link>
		<comments>http://blag.sebacean.net/2008/06/what-internetaccess-used-to-cost/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:42:36 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[ultima online]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=19</guid>
		<description><![CDATA[While cleaning up my harddrive i found an old .txt i used to keep track of what i paid each month for internet access. Back then i used a modem, maybe ISDN later to dial to a local ISP, so essentially i paid a local phonecall, mostly in the evening. These Prices are in German]]></description>
			<content:encoded><![CDATA[<p>While cleaning up my harddrive i found an old .txt i used to keep track of what i paid each month for internet access. Back then i used a modem, maybe ISDN later to dial to a local ISP, so essentially i paid a local phonecall, mostly in the evening.</p>
<p>These Prices are in German Marks, which back then was maybe half to two thirds of a dollar (date is in MM/YY form and the comma marks the decimal point, so first entry reads 62 Mark and 3 Pfennig)</p>
<p>07/98:  62,03<br />
08/98: 190,66<br />
09/98: 193,22<br />
10/98: 174,92<br />
11/98: 176,06<br />
12/98: 231,59<br />
01/99: 179,12<br />
02/99: 207,84<br />
03/99: 237,94<br />
04/99: 238,27<br />
05/99: 226,31<br />
06/99: 137,04</p>
<p>Back then you had 56kbit with a modem or 64kbit with ISDN later and you had to make every minute count <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  All of this was to play Ultima Online in the evenings and i was still in school back then &#8230; kind of an expensive hobby <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Comparing this to today&#8217;s DSL market really makes you cry <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
You get 16mbit down 1mbit DSL up for 20 euros flat or even 50mbit down 10mbit up VDSL for 70 euros flat. Kids today have it way to easy! <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/06/what-internetaccess-used-to-cost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Misery Business &#8211; WordPress 2.5.1</title>
		<link>http://blag.sebacean.net/2008/04/misery-business-wordpress-251/</link>
		<comments>http://blag.sebacean.net/2008/04/misery-business-wordpress-251/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 23:14:23 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[girls]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=16</guid>
		<description><![CDATA[Annoyed by the fact that I was &#8220;forced&#8221; to upgrade WordPress by a security vulnerability I decided to simplify the process by using the anonymous subversion access WordPress provides instead of doing the manual &#8220;delete these, keep these&#8221; routine. It worked fine, currently I set it to the newest tag, but in future I might]]></description>
			<content:encoded><![CDATA[<p>Annoyed by the fact that I was &#8220;forced&#8221; to upgrade WordPress by a <a href="http://wordpress.org/development/2008/04/wordpress-251/">security vulnerability</a> I decided to simplify the process by using the <a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion">anonymous subversion access</a> WordPress provides instead of doing the manual &#8220;delete these, keep these&#8221; routine.</p>
<p>It worked fine, currently I set it to the newest tag, but in future I might switch to the trunk, maybe then finally something breakes that I can then fix <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Title is once again inspired by a song I currently like, which was used as the music in this lovely &#8220;hooping&#8221; video:<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/x6PEsM3rQpI&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/x6PEsM3rQpI&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/04/misery-business-wordpress-251/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Only happy when it rains &#8230;</title>
		<link>http://blag.sebacean.net/2008/03/only-happy-when-it-rains/</link>
		<comments>http://blag.sebacean.net/2008/03/only-happy-when-it-rains/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 21:50:00 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=9</guid>
		<description><![CDATA[Well &#8230; i just updated to WordPress 2.5. And it worked, just following the guide on the offical homepage. How boring is that? I want excitement, something should go wrong and need fixing! &#8230; For those that did not recognize the title:]]></description>
			<content:encoded><![CDATA[<p>Well &#8230; i just updated to <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WordPress 2.5</a>. And it worked, just following the <a href="http://codex.wordpress.org/Upgrading_WordPress">guide</a> on the offical homepage.<br />
How boring is that? I want excitement, something should go wrong and need fixing!<br />
<br/><br />
&#8230;<br />
<br/><br />
For those that did not recognize the title:<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/zdodc1Eu1nA&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/zdodc1Eu1nA&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/only-happy-when-it-rains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jamaican screamo reggea-metal?</title>
		<link>http://blag.sebacean.net/2008/03/jamaican-screamo-reggea-metal/</link>
		<comments>http://blag.sebacean.net/2008/03/jamaican-screamo-reggea-metal/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 18:18:24 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/2008/03/19/jamaican-screamo-reggea-metal/</guid>
		<description><![CDATA[Whatever this song&#8217;s genre is called &#8230; i like it &#8230; alot]]></description>
			<content:encoded><![CDATA[<p>Whatever this song&#8217;s genre is called &#8230; i like it &#8230; alot <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/h-kmLkfFrtU&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/h-kmLkfFrtU&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/jamaican-screamo-reggea-metal/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
