<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Newspeak</title>
	<link>http://www.newspeak.org.uk</link>
	<description></description>
	<pubDate>Wed, 06 Aug 2008 16:52:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Ever wondered how they come up with Ubuntu code names</title>
		<link>http://www.newspeak.org.uk/2008/08/06/ever-wondered-how-they-come-up-with-ubuntu-code-names/</link>
		<comments>http://www.newspeak.org.uk/2008/08/06/ever-wondered-how-they-come-up-with-ubuntu-code-names/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 16:52:28 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/08/06/ever-wondered-how-they-come-up-with-ubuntu-code-names/</guid>
		<description><![CDATA[I have. I don&#8217;t know, but I suspect it&#8217;s like this
import random

def main(argv):
    if len(argv) &#60; 2:
        sys.exit(1)

    f = file(argv[0]).read().splitlines()
    name = [random.choice(f).lower()]
    letter = name[0][0]

    for fn in argv[1:]:
        words = file(fn).read().splitlines()
        words = [w.lower() for w in words if w.lower().startswith(letter)]
        if len(words) == 0:
            return False
        name.append(random.choice(words))

    return " ".join(name)


if __name__ == [...]]]></description>
			<content:encoded><![CDATA[<p>I have. I don&#8217;t know, but I suspect it&#8217;s like this</p>
<pre>import random</pre>
<pre>
def main(argv):</pre>
<pre>    if len(argv) &lt; 2:</pre>
<pre>        sys.exit(1)</pre>
<pre>
    f = file(argv[0]).read().splitlines()</pre>
<pre>    name = [random.choice(f).lower()]</pre>
<pre>    letter = name[0][0]</pre>
<pre>
    for fn in argv[1:]:</pre>
<pre>        words = file(fn).read().splitlines()</pre>
<pre>        words = [w.lower() for w in words if w.lower().startswith(letter)]</pre>
<pre>        if len(words) == 0:</pre>
<pre>            return False</pre>
<pre>        name.append(random.choice(words))</pre>
<pre>
    return " ".join(name)</pre>
<pre></pre>
<pre>
if __name__ == "__main__":</pre>
<pre>    import sys</pre>
<pre>    result = False</pre>
<pre>    while not result:</pre>
<pre>        result = main(sys.argv[1:])</pre>
<pre>    print result</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/08/06/ever-wondered-how-they-come-up-with-ubuntu-code-names/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Week 3: Vim tricks - Indenting Code</title>
		<link>http://www.newspeak.org.uk/2008/08/06/week-3-vim-tricks-indenting-code/</link>
		<comments>http://www.newspeak.org.uk/2008/08/06/week-3-vim-tricks-indenting-code/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 09:28:11 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/08/06/week-3-vim-tricks-indenting-code/</guid>
		<description><![CDATA[ For a long time now I have known how to indent using Vim&#8217;s &#8216;&#62;&#8217; command to indent a block of text. I have learnt a few new tricks that might speed me up a bit.
]]></description>
			<content:encoded><![CDATA[<p> For a long time now I have known how to indent using Vim&#8217;s &#8216;&gt;&#8217; command to indent a block of text. I have learnt a few new tricks that might speed me up a bit.  <a href="http://www.newspeak.org.uk/2008/08/06/week-3-vim-tricks-indenting-code/#more-70" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/08/06/week-3-vim-tricks-indenting-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Week 2: Vim tricks - Automatic code completion</title>
		<link>http://www.newspeak.org.uk/2008/07/29/week-2-vim-tricks-automatic-code-completion/</link>
		<comments>http://www.newspeak.org.uk/2008/07/29/week-2-vim-tricks-automatic-code-completion/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 16:20:52 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[tech]]></category>

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

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/07/29/week-2-vim-tricks-automatic-code-completion/</guid>
		<description><![CDATA[You may have used an IDE before that allows you to automatically complete parts of your code. In Microsoft&#8217;s Visual Studio this is called &#8220;intellisense&#8221;. It&#8217;s very handy for speeding up development and for exploring objects that you can&#8217;t quite remember the attributes of. This week I found out how to add it to Vim.
]]></description>
			<content:encoded><![CDATA[<p>You may have used an IDE before that allows you to automatically complete parts of your code. In Microsoft&#8217;s Visual Studio this is called &#8220;intellisense&#8221;. It&#8217;s very handy for speeding up development and for exploring objects that you can&#8217;t quite remember the attributes of. This week I found out how to add it to Vim. <a href="http://www.newspeak.org.uk/2008/07/29/week-2-vim-tricks-automatic-code-completion/#more-69" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/07/29/week-2-vim-tricks-automatic-code-completion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Vim tricks</title>
		<link>http://www.newspeak.org.uk/2008/07/21/new-vim-tricks/</link>
		<comments>http://www.newspeak.org.uk/2008/07/21/new-vim-tricks/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 17:05:25 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/07/21/new-vim-tricks/</guid>
		<description><![CDATA[I&#8217;ve been using vim as my main text editor for over 5 years now and because I&#8217;m now dependent on it and using it every day at work I&#8217;ve decided to challenge myself to learn a new trick every week. Last week&#8217;s trick was sorting lines.
Sorting Lines
I actually learnt two new tricks to be able [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using vim as my main text editor for over 5 years now and because I&#8217;m now dependent on it and using it every day at work I&#8217;ve decided to challenge myself to learn a new trick every week. Last week&#8217;s trick was sorting lines.</p>
<h3>Sorting Lines</h3>
<p>I actually learnt two new tricks to be able to do this. The first is selecting lines using visual mode.</p>
<p>By placing the cursor on the first line you wish to select then pressing Shift+V and moving the cursor the last line to select you select the range of lines between the two and you can do any of your normal ex commands on just the selected text.</p>
<p>To sort the selected lines type :sort, this runs the sort command and replaces the selection with the result. You notice if you try to sort lines with numbers they will be sorted alphanumerically, ie. 700 would come before 8, if you want to sort numerically use :sort n. You can also remove duplicates from a list by using :sort u, to remove duplicates and sort numerically use :sort un.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/07/21/new-vim-tricks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Optional arguments in Python</title>
		<link>http://www.newspeak.org.uk/2008/03/07/optional-arguments-in-python/</link>
		<comments>http://www.newspeak.org.uk/2008/03/07/optional-arguments-in-python/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 11:22:01 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[code]]></category>

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

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

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/03/07/optional-arguments-in-python/</guid>
		<description><![CDATA[Optional arguments in python are obviously very useful allowing you to have default values so you don&#8217;t need to pass them every time. A simple hello world example always goes a long way&#8230;
def hello(to="world"):
    print "Hello,", to

&#62;&#62;&#62; hello("Steve")
Hello, Steve

&#62;&#62;&#62; hello()
Hello, world
Sometimes you&#8217;ll see people define an optional argument with a default value [...]]]></description>
			<content:encoded><![CDATA[<p>Optional arguments in python are obviously very useful allowing you to have default values so you don&#8217;t need to pass them every time. A simple hello world example always goes a long way&#8230;</p>
<pre>def hello(to="world"):</pre>
<pre>    print "Hello,", to</pre>
<pre>
&gt;&gt;&gt; hello("Steve")</pre>
<pre>Hello, Steve</pre>
<pre>
&gt;&gt;&gt; hello()</pre>
<pre>Hello, world</pre>
<p>Sometimes you&#8217;ll see people define an optional argument with a default value of None then override it in the function&#8217;s body. This might seem a strange thing to do at first, but there is a reason. Let&#8217;s say that we wanted to be able to say hello to a list of people and for it to automatically add &#8220;World&#8221; to the list.</p>
<pre>def hello(to=[]):
    to.append("World")
    if len(to) &gt; 1:
        greeting = "Hello, " + ", ".join(to[:-1]) + " and " + to[-1]
    else:
        greeting = "Hello, " + to[0]
    print greeting</pre>
<pre>&gt;&gt;&gt; hello(["Steve", "Matt"])</pre>
<pre>Hello, Steve, Matt and World</pre>
<pre>
&gt;&gt;&gt; hello(["Steve", "Matt"])</pre>
<pre>Hello, Steve, Matt and World</pre>
<pre>
&gt;&gt;&gt; hello()</pre>
<pre>Hello, World</pre>
<pre>
&gt;&gt;&gt; hello()</pre>
<pre>Hello, World and World</pre>
<pre>
&gt;&gt;&gt; hello()</pre>
<pre>Hello, World, World and World</pre>
<p>This happens because the value for the default argument is the same list every time, so when we modify it the function has the same modified list as the default argument when it is subsequently called. This is probably not the behaviour you would expect and you would rarely want to use this behaviour. The way around it is to define the default argument as None then override it.</p>
<pre>def hello(to=None):
    to = to or []
    to.append("World")
    if len(to) &gt; 1:
        greeting = "Hello, " + ", ".join(to[:-1]) + " and " + to[-1]
    else:
        greeting = "Hello, " + to[0]
    print greeting

&gt;&gt;&gt; hello()
Hello, World

&gt;&gt;&gt; hello()
Hello, World

&gt;&gt;&gt; hello(["Steve", "Matt"])
Hello, Steve, Matt and World

&gt;&gt;&gt; hello(["Steve", "Matt"])
Hello, Steve, Matt and World</pre>
<p>Because None evaluates to false, setting the default value to None means it can be easily overridden to give us the default value we actually want if there wasn&#8217;t a passed value.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/03/07/optional-arguments-in-python/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dw i&#8217;n dysgu Cymraeg.</title>
		<link>http://www.newspeak.org.uk/2008/02/19/dw-in-dysgu-cymraeg/</link>
		<comments>http://www.newspeak.org.uk/2008/02/19/dw-in-dysgu-cymraeg/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 13:57:27 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2008/02/19/dw-in-dysgu-cymraeg/</guid>
		<description><![CDATA[S&#8217;mae!
Yesterday evening I attended my first Welsh lesson with the University of Wales, Bangor. We were given a sheet with resources online including a link for downloading a Welsh spell checker, nothing for Open Source users or Linux though. There are things out there for Welsh learners and speakers in the open source world though.
Firefox
If [...]]]></description>
			<content:encoded><![CDATA[<p>S&#8217;mae!</p>
<p>Yesterday evening I attended my first Welsh lesson with the University of Wales, Bangor. We were given a sheet with resources online including a link for downloading a Welsh spell checker, nothing for Open Source users or Linux though. There are things out there for Welsh learners and speakers in the open source world though.</p>
<h3>Firefox</h3>
<p>If you&#8217;re not using firefox, you should be, I&#8217;m not going to go into why because plenty of people already have.</p>
<p>A Welsh dictionary for the spell checker to in Firefox can be installed from <a href="https://addons.mozilla.org/en-US/firefox/browse/type:3" title="Firefox dictionaries." target="_blank">this page</a>. There is also a setting that allows you to specify the languages that you want to read webpages in. To do this go to Edit -&gt; Preferences and then click on advanced. You should see a section titled &#8220;Languages&#8221; with a button labelled &#8220;Choose&#8221;, click on that, select Welsh and click add.</p>
<p>If you are particularly brave you can have a go at setting firefox to be bilingual English/Welsh by following <a href="http://www.gwelywiwr.org/firefox/bilingual.htm" title="Firefox Cymraeg" target="_blank">these instructions</a>.</p>
<h3>Online Dictionary</h3>
<p>There is an open source Welsh-English dictionary developed by the Apertium Project that allows quick lookups saves a lot of time thumbing through pocket dictionaries.</p>
<p><a href="http://xixona.dlsi.ua.es/apertium-www/?id=lookup" title="Apertium Dictionary" target="_blank">Online Welsh-English Dictionary</a></p>
<h3>Bilingual OpenOffice</h3>
<p><a href="http://agored.com/" target="_blank">Agored</a> (A project from the University in Aberystwyth) have a bilingual version of OpenOffice unfortunately it seems that there is only a windows installer. The code may be Open Source though so versions for other platforms may be available in the future. I certainly hope so.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2008/02/19/dw-in-dysgu-cymraeg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MI6 Google Ad Recruitment</title>
		<link>http://www.newspeak.org.uk/2007/12/18/mi6-google-ad-recruitment/</link>
		<comments>http://www.newspeak.org.uk/2007/12/18/mi6-google-ad-recruitment/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 10:11:07 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2007/12/18/mi6-google-ad-recruitment/</guid>
		<description><![CDATA[I wonder if this is targeted advertising and they actually want people like me.

]]></description>
			<content:encoded><![CDATA[<p>I wonder if this is targeted advertising and they actually want people like me.</p>
<p><a href="http://www.newspeak.org.uk/img/MI6%20-%20People%20like%20you.png"><img src="http://www.newspeak.org.uk/img/MI6%20-%20People%20like%20you.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2007/12/18/mi6-google-ad-recruitment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Economists Say the American Dollar Still Has Sentimental Value.</title>
		<link>http://www.newspeak.org.uk/2007/11/27/economists-say-the-american-dollar-still-has-sentimental-value/</link>
		<comments>http://www.newspeak.org.uk/2007/11/27/economists-say-the-american-dollar-still-has-sentimental-value/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 22:17:23 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2007/11/27/economists-say-the-american-dollar-still-has-sentimental-value/</guid>
		<description><![CDATA[You need to a flashplayer enabled browser to view this YouTube video
You need to a flashplayer enabled browser to view this YouTube video
You need to a flashplayer enabled browser to view this YouTube video
You need to a flashplayer enabled browser to view this YouTube video
Thank you ulti for the title
]]></description>
			<content:encoded><![CDATA[<p><object class="embed" width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/2o-G_s_uKlo"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/2o-G_s_uKlo" /><em>You need to a flashplayer enabled browser to view this YouTube video</em></object><br />
<object class="embed" width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/q5oUW5C02OQ"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/q5oUW5C02OQ" /><em>You need to a flashplayer enabled browser to view this YouTube video</em></object><br />
<object class="embed" width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/GYxabMuHsxk"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/GYxabMuHsxk" /><em>You need to a flashplayer enabled browser to view this YouTube video</em></object><br />
<object class="embed" width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/30BBvvzl730"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/30BBvvzl730" /><em>You need to a flashplayer enabled browser to view this YouTube video</em></object></p>
<p><small>Thank you ulti for the title</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2007/11/27/economists-say-the-american-dollar-still-has-sentimental-value/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenMoko Neo1973</title>
		<link>http://www.newspeak.org.uk/2007/11/16/openmoko-neo1973/</link>
		<comments>http://www.newspeak.org.uk/2007/11/16/openmoko-neo1973/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 19:07:07 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.newspeak.org.uk/2007/11/16/openmoko-neo1973/</guid>
		<description><![CDATA[Today I got my grubby hands on an openmoko neo1973. It&#8217;s cool.

It is lacking wifi networking and there doesn&#8217;t seem to be an interface for reading SMS messages although there is a basic one for sending SMS, written in python, that you can install yourself. Also there is no Preferences interface, so you have to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got my grubby hands on an openmoko neo1973. It&#8217;s cool.</p>
<p><img title="OpenMoko Screenshot" alt="OpenMoko Screenshot" src="http://www.newspeak.org.uk/img/openmoko.png" /></p>
<p>It is lacking wifi networking and there doesn&#8217;t seem to be an interface for reading SMS messages although there is a <a title="SMSTool" target="_blank" href="http://wiki.openmoko.org/wiki/SMSTool">basic one for sending</a> SMS, written in python, that you can install yourself. Also there is no Preferences interface, so you have to know a bit about linux to be able to do things like set the data and time. But the Neo1973 isn&#8217;t currently intended for use by the general public but by developers.</p>
<p>I&#8217;m hoping to be able to get a <a target="_blank" href="http://wiki.openmoko.org/wiki/Manually_using_Bluetooth#Networking">bluetooth networking</a> working so I can control it and it can talk to my computer within a reasonable distance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2007/11/16/openmoko-neo1973/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My steps for getting Ubuntu Feisty (7.04) the way I like it.</title>
		<link>http://www.newspeak.org.uk/2007/08/30/my-steps-for-getting-ubuntu-feisty-704-the-way-i-like-it/</link>
		<comments>http://www.newspeak.org.uk/2007/08/30/my-steps-for-getting-ubuntu-feisty-704-the-way-i-like-it/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 22:18:17 +0000</pubDate>
		<dc:creator>Stephen Paulger</dc:creator>
		
		<category><![CDATA[howto]]></category>

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

		<guid isPermaLink="false">http://www.newspeak.org.uk/2007/08/30/my-steps-for-getting-ubuntu-feisty-704-the-way-i-like-it/</guid>
		<description><![CDATA[Ubuntu is pretty good out of the box, but personally I need a few more things to make it feel like my computer. Before I start I install w32codecs and libdvdcss2 (on machines with a DVD drive) this allows me such wonders as DVD and MP3 playback.
Audio and Video
I remove

Rhythmbox,
Serpentine and
Totem

and install

Amarok,
Grip,
mplayer and
acidrip (on systems [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu is pretty good out of the box, but personally I need a few more things to make it feel like my computer. Before I start I install <a target="_blank" title="libdvdcss2 and w32codecs for Ubuntu" href="http://ubuntu.wordpress.com/2005/12/04/libdvdcss2-and-w32codecs-for-ubuntu/">w32codecs and libdvdcss2</a> (on machines with a DVD drive) this allows me such wonders as DVD and MP3 playback.</p>
<p><strong>Audio and Video</strong></p>
<p>I remove</p>
<ul>
<li>Rhythmbox,</li>
<li>Serpentine and</li>
<li>Totem</li>
</ul>
<p>and install</p>
<ul>
<li>Amarok,</li>
<li>Grip,</li>
<li>mplayer and</li>
<li>acidrip (on systems with a DVD drive)</li>
</ul>
<p><code>sudo apt-get remove rhythmbox serpentine totem totem-gstreamer  totem-xine  totem-mozilla<br />
sudo apt-get install grip lame amarok mplayer</code></p>
<p><strong>Firefox</strong></p>
<p>I install</p>
<ul>
<li>Media Connectivity Plugin and point it to mplayer for playback and</li>
<li>Adblock Plus and subscribe it to EasyList in order to avoid having to waste my time and bandwidth on adverts.</li>
</ul>
<p>Then I swap the Google search engine for the Google UK search engine by clicking on the search engine drop down and clicking &#8220;Manage Search Engines&#8221;. I do the same for the Ebay and Amazon search engines.</p>
<p style="font-weight: bold">Vim</p>
<p>For some bizarre reason Ubuntu comes with a crippled version of Vim that it calls &#8220;vim-tiny&#8221;. I replace this with vim-full</p>
<p><code>sudo apt-get remove vim-tiny<br />
sudo apt-get install vim-full</code></p>
<p><code>and put the following in my .vimrc</code></p>
<p><code>syntax on<br />
set expandtab<br />
set autoindent<br />
set tabstop=4<br />
set shiftwidth=4<br />
set textwidth=78</code></p>
<p>That way vim works in a way suitable for pretty much everything I use it for as soon as I open it.</p>
<p><strong>Remote Access</strong></p>
<p>If I want to be able access the machine remotely I install sshd then if it&#8217;s open to the internet I use <a title="Block brute force attacks with iptables" target="_blank" href="http://kevin.vanzonneveld.net/techblog/article/block_brute_force_attacks_with_iptables/">iptables to block bruteforce attacks</a>.</p>
<p>If I think of anything else to add here I&#8217;ll update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newspeak.org.uk/2007/08/30/my-steps-for-getting-ubuntu-feisty-704-the-way-i-like-it/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
