<?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>John&#039;s Blog &#187; Uncategorized</title>
	<atom:link href="http://john.nachtimwald.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://john.nachtimwald.com</link>
	<description>My little blog</description>
	<lastBuildDate>Sat, 31 Jul 2010 17:28:10 +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>Yubikey Auto Lock in Gnome</title>
		<link>http://john.nachtimwald.com/2010/07/25/yubikey-auto-lock-in-gnome/</link>
		<comments>http://john.nachtimwald.com/2010/07/25/yubikey-auto-lock-in-gnome/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 22:05:29 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[screen saver]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[yubikey]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=433</guid>
		<description><![CDATA[I recently purchased a Yubikey from Yubico. What got me to buy it was the discount they&#8217;re offering to Security Now! listeners. So far I&#8217;m liking it quite a bit and have been looking to use it any way I can. One of the uses I found was to have the presence of they Yubikey [...]]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a <a href="http://www.yubico.com/products/yubikey/">Yubikey</a> from <a href="http://www.yubico.com/">Yubico</a>. What got me to buy it was the discount they&#8217;re offering to <a href="http://twit.tv/sn">Security Now!</a> listeners. So far I&#8217;m liking it quite a bit and have been looking to use it any way I can. One of the uses I found was to have the presence of they Yubikey <a href="http://forum.yubico.com/viewtopic.php?f=11&#038;t=246">unlock and lock</a> Gnome Screen Saver.</p>
<p>Toward the end of the forum thread there is a very nice set of udev rules that work perfect for me and are very clean. I put the following into /etc/udev/rules.d/85-yubikey.rules</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">ACTION</span>==<span style="color: #ff0000;">&quot;add&quot;</span>, ENV<span style="color: #7a0874; font-weight: bold;">&#123;</span>ID_VENDOR<span style="color: #7a0874; font-weight: bold;">&#125;</span>==<span style="color: #ff0000;">&quot;Yubico&quot;</span>, RUN+=<span style="color: #ff0000;">&quot;/usr/local/bin/gnome-screensaver-unlock&quot;</span>
<span style="color: #007800;">ACTION</span>==<span style="color: #ff0000;">&quot;remove&quot;</span>, ENV<span style="color: #7a0874; font-weight: bold;">&#123;</span>ID_VENDOR<span style="color: #7a0874; font-weight: bold;">&#125;</span>==<span style="color: #ff0000;">&quot;Yubico&quot;</span>, RUN+=<span style="color: #ff0000;">&quot;/usr/local/bin/gnome-screensaver-lock&quot;</span></pre></div></div>

<p>I really dislike the scripts that are in the thread for locking and unlocking the computer. Gnome Screen Saver is a DBus enabled application so controlling it is very easy. Below are the unlock and lock scripts I&#8217;ve written. They use qdbus to send the dbus commands. This could be replaced with dbus-send but I use Qt and qdbus&#8217;s syntax is easier to work with.</p>
<p>gnome-screensaver-unlock</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #007800;">user</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">ps</span> aux <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> gnome-screensaver <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $1}'</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-n</span> <span style="color: #007800;">$user</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
        <span style="color: #007800;">GNOME_SCREENSAVER_PROC</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">ps</span> xa <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> gnome-screensaver <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $1}'</span><span style="color: #000000; font-weight: bold;">`</span>
        <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-z</span> DBUS_SESSION_BUS_ADDRESS <span style="color: #000000; font-weight: bold;">/</span>proc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$GNOME_SCREENSAVER_PROC</span><span style="color: #000000; font-weight: bold;">/</span>environ<span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
        <span style="color: #c20cb9; font-weight: bold;">su</span> <span style="color: #007800;">$user</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;qdbus org.gnome.ScreenSaver / SetActive false&quot;</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

<p>gnome-screensaver-lock</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #007800;">user</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">ps</span> aux <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> gnome-screensaver <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $1}'</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-n</span> <span style="color: #007800;">$user</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #007800;">GNOME_SCREENSAVER_PROC</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">ps</span> xa <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> gnome-screensaver <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $1}'</span><span style="color: #000000; font-weight: bold;">`</span>
	<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-z</span> DBUS_SESSION_BUS_ADDRESS <span style="color: #000000; font-weight: bold;">/</span>proc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$GNOME_SCREENSAVER_PROC</span><span style="color: #000000; font-weight: bold;">/</span>environ<span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
	<span style="color: #c20cb9; font-weight: bold;">su</span> <span style="color: #007800;">$user</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;qdbus org.gnome.ScreenSaver / SetActive true&quot;</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

<p>One thing that isn&#8217;t mentioned in the forum thread that is very important, <b>this unlocking method is highly insecure</b>. The locking portion is fine but unlocking shouldn&#8217;t actually be done in this way. The above udev rules only checks that a Yubikey is inserted. It does not which which Yubikey is inserted. Any Yubikey can bypass your password and unlock the computer. The unlocking script does not preform any additional checks against the yubikey. Due to this, I don&#8217;t have the unlock code enabled on my computer.</p>
<p>However, it is possible to make unlocking secure. You can use one of the two yubikey pam modules, Yubico&#8217;s <a href="http://code.google.com/p/yubico-pam/">yubico-pam</a> and Securix Live&#8217;s <a href="http://www.securixlive.com/yubipam/index.php">yubipam</a>. Yubico-pam requires internet access because it validates against Yubico&#8217;s servers. Yubipam does not need internet access but you will have to reprogram your Yubikey with a new AES key. The new key must be stored in the computer. Each has it&#8217;s advantages and disadvantages but using the pam module with Gnome Screen Saver (I haven&#8217;t actually tried so it might not work) will provide you with a secure unlock.</p>
<p>Thinking about secure unlocks there is a <a href="http://forum.yubico.com/viewtopic.php?f=11&#038;t=210">clever solution</a> that allows for the Yubikey to be used with SSH without the need for the pam module. If I can find a way (I haven&#8217;t looked yet) to have an input that can capture the Yubikey&#8217;s output then it would be possible to handle the unlock in a secure manner without the need for the pam module&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2010/07/25/yubikey-auto-lock-in-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDocker 4.4 Released</title>
		<link>http://john.nachtimwald.com/2010/07/17/kdocker-4-4-released/</link>
		<comments>http://john.nachtimwald.com/2010/07/17/kdocker-4-4-released/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 15:03:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[KDocker]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=429</guid>
		<description><![CDATA[I&#8217;ve released KDocker 4.4 today. It is mostly bug fixes and clean up. However, there is one major change. The feature to dock when the window decorator close button (the x in the upper corner) is clicked has been removed. This feature was introduced in 4.3 and I really like how it. It gives KDocker [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve released KDocker 4.4 today. It is mostly bug fixes and clean up. However, there is one major change. The feature to dock when the window decorator close button (the x in the upper corner) is clicked has been removed. This feature was introduced in 4.3 and I really like how it. It gives KDocker a feature that no similar application has. However, I was not able to keep it due to a number of issues it introduced.</p>
<p>The dock when closed feature was implemented via XEmbed. Basically I was creating my own window mimicking the window border of the application&#8217;s window. I would then remove the border from the application&#8217;s window and embed it into my window. Events would be passed from my window into the embedded window. This should work just fine in theory but it didn&#8217;t work out so nicely. Embedding caused five issues. The first four are serious and the last is only an annoyance.</p>
<p>The most serious issue was, it broke drag and drop. This looks to be an issue with X itself because I could recreate the problem using Qt and GTK&#8217;s embed support as well as writing the embed calls myself using xlib.</p>
<p>Another issue it caused related to support windows. When the main window was embedded it broke the connection between the main window and it&#8217;s support windows. So when docking the main window there were issues docking the applications other windows. This is an issue for applications such as XMMS and the Gimp.</p>
<p>Embedding didn&#8217;t get along very well with borderless windows. Applications like Chrome and XMMS draw their own window border in place of using the window manager&#8217;s decorations. These applications have special handling for moving when clicking and dragging their border. When they are embedded you end up with one of two situations. You can click and drag the window but only in the container window. So instead of moving the window you just move the window&#8217;s contents. The other situation is moving via the border doesn&#8217;t work at all. In this case resizing doesn&#8217;t work either. Oh, and the minimize, maximize, close buttons might not work either. In both cases you can still move the window using alt+left mouse button but this isn&#8217;t ideal.</p>
<p>Focus handling with embedded windows didn&#8217;t work correctly between different window managers and possibly different versions of Xorg. Some combinations it was fine. Others focus handling only followed the mouse. There were issues with the embedded window never getting focus or only getting focus when using alt+tab to select the window after it was docked.</p>
<p>The only annoying issue that I was okay with having was when undocking a window the window manager (compiz) would cause it to move a little bit. When undocking the position of the container window is recorded, the embedded window is removed from the container and moved to it&#8217;s location. Then the container window is destroyed. Compiz didn&#8217;t like placing two windows in the exact same place and kept moving the second window down and right by the size of the decoration and frame. This isn&#8217;t a very big issue but I really don&#8217;t want to have window manager specific work arounds in the code base.</p>
<p>The decision to remove iconify on close wasn&#8217;t taken lightly. It was only due to the large number of issues it created. There is not point in using KDocker if it is only going to make docked applications unusable. I have created a <a href="https://code.launchpad.net/~user-none/kdocker/EmbedContainer">branch</a> for iconify on close so I can hopefully get it working properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2010/07/17/kdocker-4-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lebookread 0.2</title>
		<link>http://john.nachtimwald.com/2010/07/11/lebookread-0-2/</link>
		<comments>http://john.nachtimwald.com/2010/07/11/lebookread-0-2/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 01:21:49 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=420</guid>
		<description><![CDATA[I&#8217;ve made a new release of lebookread. This version supports the following formats: palmdoc, ztxt, epub, tcr, rb, mobi, and fb2. The library is usable but still needs a lot of work. Unit testing, examples, more code comments and more formats to name a few things.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a new release of <a href="https://launchpad.net/lebookread">lebookread</a>. This version supports the following formats: palmdoc, ztxt, epub, tcr, rb, mobi, and fb2. The library is usable but still needs a lot of work. Unit testing, examples, more code comments and more formats to name a few things.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2010/07/11/lebookread-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teleread Article About Converting E-books</title>
		<link>http://john.nachtimwald.com/2010/01/03/teleread-article-about-converting-e-books/</link>
		<comments>http://john.nachtimwald.com/2010/01/03/teleread-article-about-converting-e-books/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 23:49:57 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=333</guid>
		<description><![CDATA[Teleread published an article of mine about converting e-books.]]></description>
			<content:encoded><![CDATA[<p>Teleread published an article of mine about <a href="http://www.teleread.org/2010/01/03/the-abcs-of-format-conversion-for-the-kindle-sony-and-nook-plus-some-calibre-tips">converting e-books</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2010/01/03/teleread-article-about-converting-e-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Club Book for July</title>
		<link>http://john.nachtimwald.com/2009/07/01/book-club-book-for-july/</link>
		<comments>http://john.nachtimwald.com/2009/07/01/book-club-book-for-july/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:22:26 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=147</guid>
		<description><![CDATA[This month my book club has chosen to read Ex Machina, Vol. 1: The First Hundred Days. The story is about the world&#8217;s first (looks like only) superhero who decides to go into politics. His renown gives him a win and he is elected the mayor of New York City. I&#8217;ve been looking forward to [...]]]></description>
			<content:encoded><![CDATA[<p>This month my book club has chosen to read <a href="http://www.amazon.com/gp/product/1401206123?ie=UTF8&amp;tag=josbl0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1401206123">Ex Machina, Vol. 1: The First Hundred Days</a><img src="http://www.assoc-amazon.com/e/ir?t=josbl0e-20&amp;l=as2&amp;o=1&amp;a=1401206123" width="1" height="1" border="0" alt="" style="border:none !important;margin:0px !important" />. The story is about the world&#8217;s first (looks like only) superhero who decides to go into politics. His renown gives him a win and he is elected the mayor of New York City. I&#8217;ve been looking forward to reading this one so I hope it turns out better than last months pick.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2009/07/01/book-club-book-for-july/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pdfmanipulate</title>
		<link>http://john.nachtimwald.com/2009/03/29/pdfmanipulate/</link>
		<comments>http://john.nachtimwald.com/2009/03/29/pdfmanipulate/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 14:35:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[calibre]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=94</guid>
		<description><![CDATA[The other day on mobileread there was a post about combining pdf files. The person has their books in pdf and they are divided by chapters. This got me thinking about the state of the pdf tools in Calibre. There was only one, pdftrim. I&#8217;ve added three new pdf manipulation tools. Merge to combine multiple [...]]]></description>
			<content:encoded><![CDATA[<p>The other day on mobileread there was a post about combining pdf files. The person has their books in pdf and they are divided by chapters. This got me thinking about the state of the pdf tools in Calibre. There was only one, pdftrim.</p>
<p>I&#8217;ve added three new pdf manipulation tools. Merge to combine multiple pdfs into one. Split to split a pdf into multiple files by page. And info to show information about the pdf. Info is especially handy when you want to work with split and need to know how many pages are in the document.</p>
<p>To stop issue with naming conflicts (pdfinfo is used by poppler-utils) and to keep the amount of pdf* names under control I&#8217;ve created a git/bzr like wrapper for all of Calibre&#8217;s pdf manipulation tools. pdfmanipulate is the base command. A subcommand (see them all with &#8211;help) is added after.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ pdfmanipulate <span style="color: #660033;">--help</span>
Usage:
pdfmanipulate <span style="color: #7a0874; font-weight: bold;">command</span> ...
&nbsp;
<span style="color: #7a0874; font-weight: bold;">command</span> can be one of the following:
<span style="color: #7a0874; font-weight: bold;">&#91;</span>info, merge, <span style="color: #c20cb9; font-weight: bold;">split</span>, trim<span style="color: #7a0874; font-weight: bold;">&#93;</span>
&nbsp;
Use pdfmanipulate <span style="color: #7a0874; font-weight: bold;">command</span> <span style="color: #660033;">--help</span> to get <span style="color: #c20cb9; font-weight: bold;">more</span> information about a specific <span style="color: #7a0874; font-weight: bold;">command</span>
&nbsp;
Manipulate a PDF.
...</pre></div></div>

<p></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ pdfmanipulate merge <span style="color: #660033;">--help</span>
Usage: pdfmanipulate merge <span style="color: #7a0874; font-weight: bold;">&#91;</span>options<span style="color: #7a0874; font-weight: bold;">&#93;</span> file1.pdf file2.pdf ...
&nbsp;
Merges individual PDFs. Metadata will be used from the first PDF specified.
...</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2009/03/29/pdfmanipulate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kittens!</title>
		<link>http://john.nachtimwald.com/2008/12/13/kittens/</link>
		<comments>http://john.nachtimwald.com/2008/12/13/kittens/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 01:40:52 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cats]]></category>

		<guid isPermaLink="false">http://john.nachtimwald.com/?p=13</guid>
		<description><![CDATA[Today Tati and I decided to adopt two cute little kittens. Wally is an orange tabby and he is 2 months old. Cricket is a Persian mix and she is 3 months old. Both love each other and play with one another whenever they aren&#8217;t sleeping. It&#8217;s nice having them in the condo. Pictures of [...]]]></description>
			<content:encoded><![CDATA[<p>Today Tati and I decided to adopt two cute little kittens. Wally is an orange tabby and he is 2 months old. Cricket is a Persian mix and she is 3 months old. Both love each other and play with one another whenever they aren&#8217;t sleeping. It&#8217;s nice having them in the condo. Pictures of them are up at <a href="http://photos.nachtimwald.com/index.php?album=kitties">http://photos.nachtimwald.com/index.php?album=kitties</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.nachtimwald.com/2008/12/13/kittens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
