<?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>Float Solutions</title>
	<atom:link href="http://floatsolutions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://floatsolutions.com</link>
	<description></description>
	<lastBuildDate>Thu, 10 Jun 2010 21:41:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Random quote reminds me of the `cookie&#8217; function which uses the fortune file format.</title>
		<link>http://floatsolutions.com/blog/2010/06/random-quote-reminds-me-of-the-cookie-function-which-uses-the-fortune-file-format/</link>
		<comments>http://floatsolutions.com/blog/2010/06/random-quote-reminds-me-of-the-cookie-function-which-uses-the-fortune-file-format/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 21:41:59 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/blog/2010/06/random-quote-reminds-me-of-the-cookie-function-which-uses-the-fortune-file-format/</guid>
		<description><![CDATA[Wonderful comment from the emacswiki changelog:
http://www.emacswiki.org/emacs/RecentChanges
]]></description>
			<content:encoded><![CDATA[<p>Wonderful comment from the <a href="http://www.emacswiki.org">emacswiki</a> changelog:</p>
<p><a href="http://www.emacswiki.org/emacs/RecentChanges">http://www.emacswiki.org/emacs/RecentChanges</a></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/06/random-quote-reminds-me-of-the-cookie-function-which-uses-the-fortune-file-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TortoiseGit Interface for EMACS</title>
		<link>http://floatsolutions.com/blog/2010/05/tortoisegit-interface-for-emacs/</link>
		<comments>http://floatsolutions.com/blog/2010/05/tortoisegit-interface-for-emacs/#comments</comments>
		<pubDate>Tue, 25 May 2010 15:46:35 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=239</guid>
		<description><![CDATA[I&#8217;ve been releasing stuff to Github these days, basecamp2text, drupal-irssi, simple-volume-osd, etc.  So I&#8217;ve been using TortoiseGit as a GUI to make git a little easier to swallow. 
On the SVN side of things I&#8217;ve been using a library I found over on the EmacsWIKI to interface SVN and emacs.  Since I&#8217;m using [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been releasing stuff to Github these days, <a href="http://github.com/openist/basecamp2text">basecamp2text</a>, <a href="http://github.com/openist/drupal-irssi">drupal-irssi</a>, <a href="http://github.com/openist/simple-volume-osd">simple-volume-osd</a>, etc.  So I&#8217;ve been using TortoiseGit as a GUI to make git a little easier to swallow. </p>
<p>On the SVN side of things I&#8217;ve been using a library I found over on the EmacsWIKI to interface SVN and emacs.  Since I&#8217;m using Git so much these days I thought I&#8217;d adapt that library to work with TortioseGit.  </p>
<p>Right now it only supports log, diff, blame, commit, revert and help.  It&#8217;s been working great for my uses so far.  </p>
<h2>tortoise-git.el</h2>
<p><pre><code>(defun tortoise-git-command (command filename)
&nbsp;&nbsp;(start-process &quot;tortoise-git&quot; &quot;foo&quot;
&nbsp;&nbsp; &quot;c:/Progra~1/TortoiseGit/bin/TortoiseProc&quot; (concat &quot;/command:&quot; command) 
&nbsp;&nbsp;&nbsp;&nbsp; (concat &quot;/path:&quot; (replace-regexp-in-string &quot;Program Files&quot; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (regexp-quote &quot;Progra~1&quot;) (expand-file-name filename))
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;&quot;)))

(defun tortoise-git-log ()
&nbsp;&nbsp;(interactive)
&nbsp;&nbsp;(tortoise-git-log-select (buffer-file-name)))

(defun tortoise-git-log-select (filename &amp;optional wildcards)
&nbsp;&nbsp;(interactive (find-file-read-args &quot;Find file: &quot; t))
&nbsp;&nbsp;(tortoise-git-command &quot;log&quot; filename))

(defun tortoise-git-diff ()
&nbsp;&nbsp;(interactive)
&nbsp;&nbsp;(tortoise-git-command &quot;diff&quot; (buffer-file-name)))

(defun tortoise-git-blame ()
 (interactive)
 (tortoise-git-command &quot;blame&quot; (buffer-file-name)))

(defun tortoise-git-commit () 
&nbsp;&nbsp;(interactive)
&nbsp;&nbsp;(tortoise-git-command &quot;commit&quot; (buffer-file-name)))

(defun tortoise-git-commit-select (filename &amp;optional wildcards)
(interactive (find-file-read-args &quot;Find file: &quot; t))
&nbsp;&nbsp;(tortoise-git-command &quot;commit&quot; (buffer-file-name)))

(defun tortoise-git-revert ()
&nbsp;&nbsp;(interactive)
&nbsp;&nbsp;(tortoise-git-revert-select (buffer-file-name)))

(defun tortoise-git-revert-select (filename &amp;optional wildcards)
&nbsp;&nbsp;(interactive (find-file-read-args &quot;Find file: &quot; t))
&nbsp;&nbsp;(tortoise-git-command &quot;revert&quot; filename))

(defun tortoise-git-help ()
 (interactive)
 (start-process-shell-command &quot;tortoise-git&quot; nil
&nbsp;&nbsp;(concat &quot;/cygdrive/c/Progra~1/TortoiseGit/bin/TortoiseProc /command:help&quot;)))

; add key bind
(global-set-key &quot;\C-xgl&quot; &#039;tortoise-git-log)
(global-set-key &quot;\C-xgL&quot; &#039;tortoise-git-log-select)
(global-set-key &quot;\C-xg=&quot; &#039;tortoise-git-diff)
(global-set-key &quot;\C-xgb&quot; &#039;tortoise-git-blame)
(global-set-key &quot;\C-xgc&quot; &#039;tortoise-git-commit)
(global-set-key &quot;\C-xgC&quot; &#039;tortoise-git-commit-select)
(global-set-key &quot;\C-xgs&quot; &#039;tortoise-git-repostatus)
(global-set-key &quot;\C-xgS&quot; &#039;tortoise-git-repostatus-select)
(global-set-key &quot;\C-xgr&quot; &#039;tortoise-git-revert)
(global-set-key &quot;\C-xgR&quot; &#039;tortoise-git-revert-select)
(global-set-key &quot;\C-xgh&quot; &#039;tortoise-git-help)

(provide &#039;tortoise-git)
</code></pre></p>
<p>Watch the github repository for more features in the future:</p>
<p><a href="http://github.com/openist/tortoise-git-emacs">http://github.com/openist/tortoise-git-emacs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/tortoisegit-interface-for-emacs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Volume On Screen Display (Windows Utility)</title>
		<link>http://floatsolutions.com/blog/2010/05/simple-volume-on-screen-display-windows-utility/</link>
		<comments>http://floatsolutions.com/blog/2010/05/simple-volume-on-screen-display-windows-utility/#comments</comments>
		<pubDate>Fri, 21 May 2010 00:23:00 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Desktop Customization]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=230</guid>
		<description><![CDATA[This is a simple autoit script and compiled exe that will create a on screen display of your volume level. It uses your current window theme for styling so it should look consistent and minimal across computers. This is handy for laptops that have finicky volume controls. Check out the screenshot below:

You can grab the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple autoit script and compiled exe that will create a on screen display of your volume level. It uses your current window theme for styling so it should look consistent and minimal across computers. This is handy for laptops that have finicky volume controls. Check out the screenshot below:</p>
<p><a href="http://floatsolutions.com/wp-content/uploads/2010/05/simpleosd-new.gif"><img src="http://floatsolutions.com/wp-content/uploads/2010/05/simpleosd-new.gif" alt="" title="simpleosd-new" width="380" height="144" class="alignleft size-full wp-image-231" /></a></p>
<p>You can grab the source code here:</p>
<ul>
<li><a href="http://github.com/openist/simple-volume-osd">http://github.com/openist/simple-volume-osd</a></li>
</ul>
<p>You can grab the exe file here:</p>
<ul>
<li><a href="http://github.com/openist/simple-volume-osd/downloads">http://github.com/openist/simple-volume-osd/downloads</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/simple-volume-on-screen-display-windows-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Tip: Duplicate Content and SimpleCDN</title>
		<link>http://floatsolutions.com/blog/2010/05/seo-tip-duplicate-content-and-simplecdn/</link>
		<comments>http://floatsolutions.com/blog/2010/05/seo-tip-duplicate-content-and-simplecdn/#comments</comments>
		<pubDate>Thu, 20 May 2010 17:20:36 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=226</guid>
		<description><![CDATA[If your using any sort of mirror server (simplecdn, maxcdn, akamai, limelight, etc) you have to be very careful about creating duplicate content that could be spidered by search engines.  There&#8217;s a way to handle this issue that does not require you to have access to the mirror server itself.
First you have to identify [...]]]></description>
			<content:encoded><![CDATA[<p>If your using any sort of mirror server (simplecdn, maxcdn, akamai, limelight, etc) you have to be very careful about creating duplicate content that could be spidered by search engines.  There&#8217;s a way to handle this issue that does not require you to have access to the mirror server itself.</p>
<p>First you have to identify the User Agent the mirror server is using to access your origin site.  You will have to create a rewrite condition in your <em>.htaccess</em> file that targets that User Agent, and serves a different robots.txt to the CDN, for SimpleCDN it&#8217;s this:<br />
<pre><code>RewriteCond %{HTTP_USER_AGENT} SimpleCDN
RewriteRule ^robots\.txt$ /robots_simplecdn.txt [L]</code></pre></p>
<p>Now you just need to create a <em>robots_simplecdn.txt</em> and block all robots:<br />
<pre><code>User-agent: *
Disallow: /</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/seo-tip-duplicate-content-and-simplecdn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basecamp RSS to Text (basecamp2text)</title>
		<link>http://floatsolutions.com/blog/2010/05/basecamp-rss-to-text-basecamp2text/</link>
		<comments>http://floatsolutions.com/blog/2010/05/basecamp-rss-to-text-basecamp2text/#comments</comments>
		<pubDate>Wed, 19 May 2010 22:57:50 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=219</guid>
		<description><![CDATA[I just released a little php script I use to display my basecamp feed on my desktop as a text list.
A simple php program that will take a basecamp feed and format it for text 
viewing.&#160;&#160;I use it to display my basecmap feed on my desktop with samurize.

Setup

1) Add your username/pass/feedurl to the basecamp2php.php file
2) [...]]]></description>
			<content:encoded><![CDATA[<p>I just released a little php script I use to display my basecamp feed on my desktop as a text list.<br />
<pre><code>A simple php program that will take a basecamp feed and format it for text 
viewing.&nbsp;&nbsp;I use it to display my basecmap feed on my desktop with samurize.

Setup

1) Add your username/pass/feedurl to the basecamp2php.php file
2) Set the script to run every X via cron

SAMPLE OUTPUT:

--
Basecamp Feed

* Comment posted: Re: Chitka ad&#039;s should have blue backgrounds
* Comment posted: Re: Adjust timing on front page popular articles...
* File uploaded: Capture4.jpg (JPG, 135K)
* Comment posted: Re: Improved Static File Caching
* File uploaded: Capture3.jpg (JPG, 249K)
* File uploaded: Capture2.jpg (JPG, 174K)
* File uploaded: Capture1.jpg (JPG, 138K)
* Comment posted: Re: Improved Static File Caching
--</code></pre></p>
<p>Grab it here: <a href="http://github.com/math0ne/basecamp2text">http://github.com/math0ne/basecamp2text</a></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/basecamp-rss-to-text-basecamp2text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I proudly drip Drupal&#8217;s delici&#8230;</title>
		<link>http://floatsolutions.com/blog/2010/05/i-proudly-drip-drupals-delici/</link>
		<comments>http://floatsolutions.com/blog/2010/05/i-proudly-drip-drupals-delici/#comments</comments>
		<pubDate>Tue, 18 May 2010 23:19:15 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/blog/2010/05/i-proudly-drip-drupals-delici/</guid>
		<description><![CDATA[I proudly drip Drupal&#8217;s delicious drops. source: http://drupal.org/user/498504
]]></description>
			<content:encoded><![CDATA[<p>I proudly drip Drupal&#8217;s delicious drops. source: <a href="http://drupal.org/user/498504" rel="nofollow">http://drupal.org/user/498504</a></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/i-proudly-drip-drupals-delici/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Documentation for Drupal</title>
		<link>http://floatsolutions.com/blog/2010/05/offline-documentation-for-drupal/</link>
		<comments>http://floatsolutions.com/blog/2010/05/offline-documentation-for-drupal/#comments</comments>
		<pubDate>Tue, 18 May 2010 21:55:33 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=215</guid>
		<description><![CDATA[There&#8217;s a lot of crap out there in google land when you try and search for a offline version of drupal&#8217;s documentation.  I&#8217;ve been searching for this for quite some time and never came across the final bullet proof solution for offline drupal documentation.
You basically have to use the API module and set up [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a lot of crap out there in google land when you try and search for a offline version of drupal&#8217;s documentation.  I&#8217;ve been searching for this for quite some time and never came across the final bullet proof solution for offline drupal documentation.</p>
<p>You basically have to use the API module and set up a local drupal site to create and serve the documentation, somewhat cumbersome, but as far as I can tell there is no better way right now.  Full instructions are here:</p>
<ul>
<li><a href="http://drupal.org/node/425944">Offline Documentation for Drupal</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/offline-documentation-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>has become a helpless emacs ad&#8230;</title>
		<link>http://floatsolutions.com/blog/2010/05/has-become-a-helpless-emacs-ad/</link>
		<comments>http://floatsolutions.com/blog/2010/05/has-become-a-helpless-emacs-ad/#comments</comments>
		<pubDate>Fri, 14 May 2010 17:38:49 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/blog/2010/05/has-become-a-helpless-emacs-ad/</guid>
		<description><![CDATA[has become a helpless emacs addict!
]]></description>
			<content:encoded><![CDATA[<p>has become a helpless emacs addict!</p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/has-become-a-helpless-emacs-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox / Textmate Like Search in EMACS</title>
		<link>http://floatsolutions.com/blog/2010/05/firefox-textmate-like-search-in-emacs/</link>
		<comments>http://floatsolutions.com/blog/2010/05/firefox-textmate-like-search-in-emacs/#comments</comments>
		<pubDate>Fri, 14 May 2010 17:32:50 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=201</guid>
		<description><![CDATA[I&#8217;m in the process of switching text editors to using EMACS full time.  I&#8217;ve got it very close to where I want it at this point but has been quite the journey.
One of the things I found the most frustrating was the search functionality, I wanted a search that functioned like firefox&#8217;s.  It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the process of switching text editors to using EMACS full time.  I&#8217;ve got it very close to where I want it at this point but has been quite the journey.</p>
<p>One of the things I found the most frustrating was the search functionality, I wanted a search that functioned like firefox&#8217;s.  It&#8217;s second nature to me to copy something hit C-f and C-v in succession to search for it.  In EMACS you have to C-s C-y.  Here&#8217;s a little something I cooked up to get more windows esque functionality with isearch.<br />
<pre><code>(defun windows-isearch-hook ()
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;C-f&quot;) &#039;isearch-repeat-forward)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;RET&quot;) &#039;isearch-repeat-forward)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;&lt;escape&gt;&quot;) &#039;isearch-exit)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;C-S-f&quot;) &#039;isearch-repeat-backward)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;C-v&quot;) &#039;isearch-yank-kill)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;&lt;up&gt;&quot;) &#039;isearch-ring-retreat)
&nbsp;&nbsp;(define-key isearch-mode-map (kbd &quot;&lt;down&gt;&quot;) &#039;isearch-ring-advance))
(add-hook &#039;isearch-mode-hook &#039;windows-isearch-hook)</code></pre></p>
<p>Additionally if you want to map the C-f key to isearch you&#8217;ll have to add this to an appropriate mode hook:<br />
<pre><code>(global-set-key (kbd &quot;C-f&quot;) &#039;isearch-forward)
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/firefox-textmate-like-search-in-emacs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Install a Color Theme in EMACS on Windows</title>
		<link>http://floatsolutions.com/blog/2010/05/how-to-install-a-color-theme-in-emacs-on-windows/</link>
		<comments>http://floatsolutions.com/blog/2010/05/how-to-install-a-color-theme-in-emacs-on-windows/#comments</comments>
		<pubDate>Mon, 10 May 2010 13:16:39 +0000</pubDate>
		<dc:creator>Aidan McQuay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floatsolutions.com/?p=191</guid>
		<description><![CDATA[There&#8217;s a bunch of tutorial on how to work with EMACS on windows, however I found a lot of them quite confusing and they didn&#8217;t really focus on the basics of how to EMACS up and running on windows with a custom color theme.  So here&#8217;s how I did it from scratch.
1) Download NTEMACS [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a bunch of tutorial on how to work with EMACS on windows, however I found a lot of them quite confusing and they didn&#8217;t really focus on the basics of how to EMACS up and running on windows with a custom color theme.  So here&#8217;s how I did it from scratch.</p>
<h3>1) Download NTEMACS + color-theme</h3>
<p>There are some various distributions of EMACS for windows but for the purpose of this we will be using NTEMACS, a version of EMACS that uses the native windows GUI.  Grab it here:</p>
<p><a href="http://ntemacs.sourceforge.net/">http://ntemacs.sourceforge.net/</a></p>
<p>EMACS does not support custom color-themes by default so we will have to download a custom plugin to use themes.  Grab this plugin here:</p>
<p><a href="http://download.gna.org/color-theme/">http://download.gna.org/color-theme/</a></p>
<p>Extract your EMACS folder to c:\emacs or something similar.</p>
<h3>2) Create your .emacs file and install the plugin</h3>
<p>On windows your EMACS home directory is going to be your &#8220;Application Data&#8221; folder in your &#8220;Documents and Settings&#8221; folder. eg:<br />
<pre><code> C:\Documents and Settings\USERNAME\Application Data&nbsp;&nbsp;
</code></pre></p>
<p>In this folder create a blank text file called &#8220;.emacs&#8221;.</p>
<p>Now we&#8217;re going to have to choose a folder where we will install our EMACS plugins this should be within the EMACS home directory. In &#8220;C:\Documents and Settings\USERNAME\Application Data&#8221; create a folder called: &#8220;.emacs.d\includes&#8221; and extact color-theme to that directory.</p>
<h3>3) Load the color-theme plugin and select a theme</h3>
<p>Now bring up .emacs file in your favorite editor again.  We&#8217;re going to load up the plugin and select a theme.  You do so by adding a include call so EMACS knows about the plugin then you can call plugin functions to load up the theme.  In your .emacs file place something like:<br />
<pre><code> (add-to-list &#039;load-path &quot;~/.emacs.d/includes/color-theme-6.6.0&quot;)
 (require &#039;color-theme)
 (setq color-theme-is-global t)
 (color-theme-initialize)
 ;; A nice dark color theme
 (color-theme-deep-blue)</code></pre></p>
<p>Now you can start emacs by calling c:\emacs\bin\runemacs.exe and you should see your wonderful new theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://floatsolutions.com/blog/2010/05/how-to-install-a-color-theme-in-emacs-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
