<?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>fusi0n &#187; Linux</title>
	<atom:link href="http://fusi0n.org/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://fusi0n.org</link>
	<description>pL&#039;s blog on tech/mobile</description>
	<lastBuildDate>Tue, 31 Jan 2012 10:29:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Randomize GNOME3 Wallpaper</title>
		<link>http://fusi0n.org/linux/randomize-gnome3-wallpaper</link>
		<comments>http://fusi0n.org/linux/randomize-gnome3-wallpaper#comments</comments>
		<pubDate>Wed, 05 Oct 2011 17:38:32 +0000</pubDate>
		<dc:creator>pluc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[GNOME3]]></category>

		<guid isPermaLink="false">http://fusi0n.org/?p=1987</guid>
		<description><![CDATA[I've been looking for a simple script to randomize the display of my wallpaper on my GNOME3 desktop.  After trying a few apps and not finding anything satisfying, I made my own. It's based on Dhananjay Sathe's wp-show but stripped of the GTK options dialog and some senseless redundancy. Here it is:]]></description>
			<content:encoded><![CDATA[<p>I've been looking for a simple script to randomize the display of my wallpaper on my GNOME3 desktop.  After trying a few apps and not finding anything satisfying, I made my own. It's based on  <a href="http://dsathe.blogspot.com/2011/06/auto-background-changer-for-gnome-3-gui.html">Dhananjay Sathe's wp-show</a> but stripped of the GTK options dialog and some senseless redundancy.</p>
<p>Here it is:</p>
<pre class="brush: bash; title: ; notranslate">#!/bin/bash
# To change wallpaper automatically after N minutes, add this to your CRON (where N is minutes): N 0 * * * /path/to/wp-show
base=&quot;/home/pluc/.walls/&quot;
photo=$(find $base -regex &quot;.*\([jJ][pP][gG]\|[jJ][pP][eE][gG]\|[gG][iI][fF]\|[pP][nN][gG]\|[bB][mM][pP]\)$&quot;  -type f | while read x; do echo &quot;`expr $RANDOM % 1000`:$x&quot;; done | sort -n | sed 's/[0-9]*://' | head -1)
uri=&quot;file://&quot;$photo
gsettings set org.gnome.desktop.background picture-uri &quot;$uri&quot;</pre>
]]></content:encoded>
			<wfw:commentRss>http://fusi0n.org/linux/randomize-gnome3-wallpaper/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OAuth, Timestamps and VPSes</title>
		<link>http://fusi0n.org/coding/oauth-timestamps-and-vps</link>
		<comments>http://fusi0n.org/coding/oauth-timestamps-and-vps#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:44:46 +0000</pubDate>
		<dc:creator>pluc</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[OAuth]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://fusi0n.org/?p=1863</guid>
		<description><![CDATA[During yesterday's #HackEmail, I was hacking away on a little Context.IO/Dropbox application to allow users to send files to their Dropbox by email.  I only had a few hours to come up with a working prototype to have a shot at taking first place and the glorious iPad that came with it... however, I ran [...]]]></description>
			<content:encoded><![CDATA[<p>During yesterday's <a href="http://blog.context.io/2011/06/developers-hack-your-email-at-the-startup-festival-with-context-io-and-cakemail/">#HackEmail</a>, I was hacking away on a little Context.IO/Dropbox application to allow users to send files to their Dropbox by email.  I only had a few hours to come up with a working prototype to have a shot at taking first place and the glorious iPad that came with it... however, I ran into a problem.</p>
<p>See, the OAuth protocol uses <a href="http://oauth.net/core/1.0a/#nonce">timestamps and nonces</a> to validate requests. Should the timestamp of the <em>requestee</em> be negative or inferior to the timestamp of the <em>requested</em>, the request will fail and the whole OAuth workflow will fail, and chances are you'll have no goddamn clue why. Fear not! I experienced it, so I had to understand it.<span id="more-1863"></span></p>
<p>Here's what happened: first, I need to properly illustrate the data I was working with:</p>
<ul>
<li>OAuth request sent to <a href="http://context.io">Context.IO</a> (in the  "<strong>America/Montreal</strong>" (<strong>EST)</strong>  timezone);</li>
<li>OAuth request sent <strong>from</strong> my application's server  (in the "<strong>America/Chicago</strong>" (<strong>CST</strong>) timezone);</li>
<li>Server from which the request originates  is  a <a title="Virtual Private Server" href="https://secure.wikimedia.org/wikipedia/en/wiki/Virtual_private_server">VPS</a> from <a href="http://webbynode.com/">WebbyNode</a> running <a href="http://xen.org/">Xen</a> under <a href="http://debian.org">Debian 6</a>;</li>
</ul>
<p>Now, there's a chance that, if you're in the same timezone <strong>or</strong> your timezones and date settings are properly set, all OAuth API calls will work just fine... but if the time would never change, there would be little reasons to make so many utilities to update it. So, it changes. If that happens, and it changes <em>just enough</em> to fail the OAuth check.. well that's where the problem is.</p>
<p>Having a Xen-powered VPS means that the system clock is controlled by the host (or the "parent" machine if you will). Whenever I would set the date to match the one of the server I was sending requests to, it would revert right back. It sucked. For a long time. The fix is pretty simple, you just have to know it:</p>
<pre class="brush: bash; title: ; notranslate">echo 1 &gt; /proc/sys/xen/independent_wallclock &amp;&amp; ntpdate pool.ntp.org</pre>
<p>If <em>independent_wallclock</em> exists, permissions won't let you pipe output to overwrite it, so use:</p>
<pre class="brush: bash; title: ; notranslate">echo 1 &gt;! /proc/sys/xen/independent_wallclock &amp;&amp; ntpdate pool.ntp.org</pre>
<p>After that, your timestamp should be good and the update you performed with <em>ntpdate</em> will finally stick.</p>
]]></content:encoded>
			<wfw:commentRss>http://fusi0n.org/coding/oauth-timestamps-and-vps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing mod_pagespeed on CentOS (cPanel/WHM)</title>
		<link>http://fusi0n.org/linux/installing-googles-mod_pagespeed-on-centos-with-cpanel-and-whm</link>
		<comments>http://fusi0n.org/linux/installing-googles-mod_pagespeed-on-centos-with-cpanel-and-whm#comments</comments>
		<pubDate>Thu, 11 Nov 2010 00:27:02 +0000</pubDate>
		<dc:creator>pluc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://fusi0n.org/?p=1360</guid>
		<description><![CDATA[This month, Google announced the release of an Apache module to optimize rendering times called mod_pagespeed. They've long been on to the optimization wagon: last year, they released "Page Speed", a Firefox extension to help developers optimize their pages and embed most of mod_pagespeed's diagnostics in their Webmaster Tools platform. If you want to install [...]]]></description>
			<content:encoded><![CDATA[<p>This month, Google <a href="http://googlewebmastercentral.blogspot.com/2010/11/make-your-websites-run-faster.html" target="_blank">announced</a> the release of an <a href="http://httpd.apache.org" target="_blank">Apache</a> module to optimize rendering times called <a href="http://code.google.com/speed/page-speed/docs/module.html" target="_blank">mod_pagespeed</a>. They've long been on to the optimization wagon: <a href="http://googlewebmastercentral.blogspot.com/2009/06/introducing-page-speed.html" target="_blank">last year</a>, they released "<a href="http://code.google.com/speed/page-speed/" target="_blank">Page Speed</a>", a Firefox extension to help developers optimize their pages and <a href="https://www.google.com/webmasters/tools/labs-site-performance-1" target="_blank">embed</a> most of mod_pagespeed's diagnostics in their <a href="https://www.google.com/webmasters/tools" target="_blank">Webmaster Tools</a> platform. If you want to install mod_pagespeed on your CentOS server running cPanel and WHM, you might have a few problems since the mod_pagespeed RPM depends on the httpd 2.2 package and it usually isn't installed when running cPanel/WHM since those app want to be able to control versioning themselves and not through <a title="YUM" href="http://yum.baseurl.org/" target="_blank">YUM</a>, so we'll do it manually. This guide is intended for 32bit CentOS servers where you have superuser privileges on and run cPanel and WHM. If you're running a 64bit, simply adapt the various paths and files used throughout this article.</p>
<p>What you need to do is rather simple and safe. It does involve modifying the Apache configuration files though, so make backups of every file mentioned in this article if you feel the need to. <span id="more-1360"></span></p>
<p>While you could <a href="http://code.google.com/p/modpagespeed/wiki/HowToBuild" target="_blank">build mod_pagespeed from the source</a>, (with the official <a href="http://code.google.com/p/modpagespeed/wiki/HowToBuild" target="_blank">instructions provided on the mod_pagespeed wiki</a>) we'll use the RPM binaries that you can get for your distribution <a href="http://code.google.com/speed/page-speed/download.html" target="_blank">here</a>. I suggest you copy the appropriate file's URL (such as <em>https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_i386.rpm</em>) so you can <a href="http://www.gnu.org/software/wget/" target="_blank"><em>wget</em></a> it later. Here goes some shell code you'll want to <strong>run as root</strong>:</p>
<pre class="brush: bash; title: ; notranslate">
cd /usr/local/src
mkdir mod_pagespeed
cd mod_pagespeed
wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_i386.rpm
rpm2cpio mod-pagespeed-beta_current_i386.rpm | cpio -idmv
cp /usr/local/src/mod-pagespeed/usr/lib/httpd/modules/mod_pagespeed.so /usr/local/apache/modules/
cp /usr/local/src/mod-pagespeed/etc/httpd/conf.d/pagespeed.conf /usr/local/apache/conf/
chmod 755 /usr/local/apache/modules/mod_pagespeed.so
mkdir /var/mod_pagespeed/{cache,files} -p
chown nobody:nobody /var/mod_pagespeed/*
</pre>
<p>mod_pagespeed has a dependency that you'll want to enable: mod_deflate (the httpd source directory (2.2.16) may vary depending on your install):</p>
<pre class="brush: bash; title: ; notranslate">
/usr/local/apache/bin/apxs -c -i /home/cpeasyapache/src/httpd-2.2.16/modules/filters/mod_deflate.c
</pre>
<p>After that, we'll have to edit the mod_pagespeed configuration file located at <em>/usr/local/apache/conf/pagespeed.conf</em> to reflect the correct paths, the LoadModule directives should fetch the modules in "<em>modules/module_name.so</em>":</p>
<pre class="brush: plain; title: ; notranslate">LoadModule pagespeed_module modules/mod_pagespeed.so
LoadModule deflate_module modules/mod_deflate.so
ModPagespeedFileCachePath            &amp;quot;/var/mod_pagespeed/cache/&amp;quot;
ModPagespeedGeneratedFilePrefix      &amp;quot;/var/mod_pagespeed/files/&amp;quot;</pre>
<p>After that, we'll need to include the mod_pagespeed configuration in Apache's configuration file (<em>/usr/local/apache/conf/httpd.conf</em>):</p>
<pre class="brush: plain; title: ; notranslate">Include â€œconf/pagespeed.confâ€</pre>
<p>And finally, restart your HTTP server by issuing a <em>service httpd restart</em> command. Once your web server fires up, it'll be mod_pagespeed-enabled. If all goes well, you should be able to see a new "<em>X-Mod-Pagespeed</em>" header when requesting resources on your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://fusi0n.org/linux/installing-googles-mod_pagespeed-on-centos-with-cpanel-and-whm/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Converting ext3 partitions to ext4 on Ubuntu 9.04 (Jaunty)</title>
		<link>http://fusi0n.org/linux/converting-ext3-partitions-to-ext4-on-ubuntu-904-jaunty</link>
		<comments>http://fusi0n.org/linux/converting-ext3-partitions-to-ext4-on-ubuntu-904-jaunty#comments</comments>
		<pubDate>Fri, 03 Apr 2009 20:30:03 +0000</pubDate>
		<dc:creator>pluc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.fusi0n.org/?p=804</guid>
		<description><![CDATA[I've upgraded to Ubuntu 9.04 ("Jaunty Jackalope") from 8.10 ("Intrepid Ibex") about a week ago and was surprised how smooth it went. Jaunty's still in its alpha stage (Alpha 3 as of now) yet it's surprisingly stable. One thing that Jaunty, once officially released, will add to the regular Ubuntu is ext4 support. Ext4 is [...]]]></description>
			<content:encoded><![CDATA[<p>I've upgraded to Ubuntu 9.04 ("Jaunty Jackalope") from 8.10 ("Intrepid Ibex") about a week ago and was surprised how smooth it went. Jaunty's still in its alpha stage (Alpha 3 as of now) yet it's surprisingly stable. One thing that Jaunty, once officially released, will add to the regular Ubuntu is <a title="ext4 - Wikipedia" href="http://en.wikipedia.org/wiki/Ext4" target="_blank">ext4</a> support. Ext4 is an upgrade from (wait for it.... you'll never guess!) ext3, which is starting to show its age in the filesystem world. Ext4 provides better performance than ext3, mostly due to its delayed allocation and more file support (like you'll ever have files bigger than 2 or 16 Terabytes?). Anyway, I felt like risking an in-place conversion of my two ext3 partitions for the sake of performance... and it went relatively smooth. I'll explain how I've done it so you can give it a whirl as well. One thing worth noting though is that once a filesystem is converted to ext4, there's no going back. You can't convert it in-place to ext3, you must format the whole thing and start over. So obviously, <strong>back your shit up.</strong></p>
<p><span id="more-804"></span></p>
<p>Before you start, you'll need the following:</p>
<ul>
<li><a title="e2fsprogs" href="http://packages.ubuntu.com/jaunty/e2fsprogs" target="_blank">e2fsprogs</a> &gt;= 1.41.3 (1.41.4 comes with Jaunty)</li>
<li><a title="The Linux Kernel Archives" href="http://www.kernel.org/" target="_blank">Linux Kernel</a> &gt;= 2.6.28 (2.6.28- comes with Jaunty)</li>
<li><a title="gParted" href="http://packages.ubuntu.com/jaunty/gparted" target="_blank">gParted</a> &gt;= 0.4.3 (0.4.3 comes with Jaunty)</li>
<li>If you wish to convert the partition containing /boot, you'll also need
<ul>
<li><a title="GRUB" href="http://packages.ubuntu.com/jaunty/grub" target="_blank">GRUB</a> 0.97 (0.97Â  comes with Jaunty) <sup><a href="#notes1">[1]</a></sup></li>
<li><a title="grub4ext4" href="http://code.google.com/p/grub4ext4/" target="_blank">grub4ext4</a> 0.97 - Patches GRUB with basic ext4 support <sup><a href="#notes1">[1]</a></sup></li>
<li><a title="Ubuntu 9.04 Daily Build" href="http://cdimage.ubuntu.com/daily-live/current/" target="_blank">Ubuntu 9.04 Live CD</a> <sup><a href="#notes1">[1]</a></sup></li>
</ul>
</li>
</ul>
<h4><span style="text-decoration: underline;">Converting extra partitions</span></h4>
<p>What I mean by "extra" is simply any partition or devices that do not contain your Ubuntu system. The process is extremely simple and extremely fast. It'll take you about 30 seconds for every partition you wish to convert to ext4. Make sure you're not using any files on the partition we'll work with (torrents, music, system resources, etc). If your command line-fu is good, just unmount the partition you want to convert (umount /dev/XXX where XXX is your device and partition (sda2, sdb1, hdc3)). Otherwise, fire up the GNOME Partition Editor (gparted) that's in System &gt; Administration &gt; Partition Editor. Select the device containing the partition you want to convert, right click on the partition and select "Unmount". Take note of the "Partition" label (such as /dev/sda2 or /dev/sdb1 or /dev/hdc3).</p>
<p>Now that your partition is unmounted, we can convert it to ext4. Fire up a terminal (run -&gt; gnome-terminal) and run this command as root, replacing XXX with your device and partition name/identification (that you should've noted or should know by now):</p>
<p style="padding-left: 30px;"><code>tune2fs -O extents,uninit_bg,dir_index /dev/XXX</code></p>
<p>I'll take a few seconds, and you'll have an ext4 filesystem. Easy enough, right? For added security, we'll run a filesystem check after each conversion using fsck:</p>
<p style="padding-left: 30px;"><code>fsck -pf /dev/XXX</code></p>
<p>The last thing we need to do is let your system know about the change we just did. We can do that by editing /etc/fstab as root (using whatever editor you're comfortable with) and changing the filesystem of the partition. Once /etc/fstab is open, look for a line starting with your device and partition (/dev/XXX) or your device's UUID (you can get your device's UUID by typing <em>sudo vol_id --uuid /dev/XXX</em>). Change the "ext3" to "ext4", and you're done. Repeat this process for every other partition you want to convert, <strong>except for your boot partition</strong> (the one containing /boot). Once all your partitions are converted and updated in fstab, run sudo mount -a to remount them all, or you can also do them manually by performing the inverse of the process you went through to unmount them.</p>
<h4><span style="text-decoration: underline;">Converting the main system partition</span> (the one with /boot)</h4>
<p>Here's where it gets tricky a bit. A lot of people in the Ubuntu community and some of the sources used in this article advise against doing this since there's no real gain, except boot speed increase and the GRUB boot loader doesn't officially support booting from ext4 filesystems. It's still a fun thing to do, and well you've already got a theoretically unstable system anyway, so why the hell not give it a shot?</p>
<p><strong>Obsolete (but tested &amp; working) method:</strong><sup><a href="#notes1">[1]</a></sup> Apply the patch you downloaded from grub4ext4 <sup><a href="#notes1">[1]</a></sup> (some instructions are in the <a title="INSTALL - grub4ext4" href="http://code.google.com/p/grub4ext4/source/browse/trunk/grub-0.97/INSTALL" target="_blank">grub4ext4/grub-0.97/INSTALL</a> file). That'll add some basic ext4 support to your boot loader. After that, edit GRUB's configuration file (/boot/grub/menu.lst) as root to include the ext4 change. Append the "rootfstype=ext4" directive to the boot line <sup><a href="#notes1">[1]</a></sup>, as follows, run update-grub as root and proceed with the rest of the tutorial below.</p>
<p style="padding-left: 30px;">titleÂ Â Â  Â Â Â  Ubuntu jaunty (development branch), kernel 2.6.28-10-generic<br />
uuidÂ Â Â  Â Â Â  2134efa6-d23f-4aeb-8157-5ac06f95634b<br />
kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.28-10-generic root=UUID=2134efa6-d23f-4aeb-8157-5ac06f95634b ro splash vga=792 quiet <strong>rootfstype=ext4</strong><br />
initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.28-10-generic<br />
quiet</p>
<p>Then <strong>run update-grub</strong> as root to generate a new menu.lst (not sure why, but apparently it's needed. Kind of redundant if you ask me). Since you can't unmount the main system's partition while working on the system, you'll have to reboot onto the Jaunty LiveCD you downloaded earlier in order to do it. Make <strong>sure</strong> to boot from the LiveCD, because at this stage, GRUB is configured to boot on a ext4 filesystem that we haven't yet created, and it won't boot until we do so. From the LiveCD, make sure your device isn't mounted (you can use gparted here too) then run the two commands we discussed above (tune2fs and fsck) on the device. Reboot and voila! You're booting with a full ext4 system.</p>
<p><strong>New (but untested) method:</strong> With this new method, you won't need to patch your GRUB or edit your menu.lst. It's unconfirmed and I haven't personally done this specific procedure, so if you're feeling adventurous, go ahead and let me know if it does work. If you do try it though, be prepared for a possible boot fail. It would be wise to put the grub4ext code on a USB key or save the URL or files somewhere you can access from a LiveCD. Should that happen, restore (and continuation of the procedure) is easily doable from the LiveCD. Simply mount your original system's partition from the LiveCD, <a href="https://bugs.launchpad.net/ubuntu/+bug/353071/comments/2" target="_self">create a chroot</a>, patch GRUB and continue with this tutorial from that chroot. Jaunty's version of GRUB is apparently <sup><a href="#notes1">[1]</a></sup> already supporting ext4 boot , so all you'd have to do is run the conversion and check commands mentioned above on your partition, then run update-grub as root.</p>
<h4><span style="text-decoration: underline;"><a name="notes"></a>Notes</span></h4>
<ol>
<li><a name="notes1"></a>Apparently, patching GRUB using grub4ext4 and adding rootfstype=ext4 within /boot/grub/menu.lst would be obsolete. <a href="http://linuxtechie.wordpress.com/" target="_blank">FuturePilot</a> <a title="[HOWTO] Convert (any) ext3 partitions to ext4" href="http://ubuntuforums.org/showthread.php?t=1115253#post7007941" target="_blank">reports</a> on Ubuntu Forums that simply reinstalling GRUB to your machine's master boot record (MBR) will do the trick. More information within <a title="grub error 24 with Jaunty beta" href="https://bugs.launchpad.net/ubuntu/+bug/353071" target="_blank">bug #353071</a> on Launchpad. I have not tested this method, but it would make sense to work. If you successfully do, give me a holler and I'll update accordingly.</li>
</ol>
<h4><span style="text-decoration: underline;">Sources</span></h4>
<ul>
<li><a title="Ext4 Howto" href="http://ext4.wiki.kernel.org/index.php/Ext4_Howto#For_people_who_are_running_Ubuntu" target="_blank">Ext4 Howto at Ext4 Wiki</a></li>
<li><a title="Linux Convert ext4 to ext3 file system" href="http://www.cyberciti.biz/tips/linux-convert-ext3-to-ext4-file-system.html" target="_blank">Linux Convert ext3 to ext4 file system</a> at <a title="nixCraft" href="http://www.cyberciti.biz/" target="_blank">nixCraft</a></li>
</ul>
<p style="text-align: center;">
<script type="text/javascript"><!--
google_ad_client = "pub-9594718656871709";
/* 468x60, created 4/23/09 */
google_ad_slot = "3376338773";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://fusi0n.org/linux/converting-ext3-partitions-to-ext4-on-ubuntu-904-jaunty/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

