<?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>can&#039;t use it</title>
	<atom:link href="http://cantuse.it/feed/" rel="self" type="application/rss+xml" />
	<link>http://cantuse.it</link>
	<description>A blog about good and bad usability, user interface design, prototyping, web application development, computer science and everything else.</description>
	<lastBuildDate>Thu, 18 Feb 2010 06:48:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Intimidating.</title>
		<link>http://cantuse.it/2010/02/intimidating/</link>
		<comments>http://cantuse.it/2010/02/intimidating/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:48:16 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[ui&usability]]></category>

		<guid isPermaLink="false">http://cantuse.it/?p=307</guid>
		<description><![CDATA[5 MINUTES AND 44 SECONDS LEFT.
What is this, a bomb?

]]></description>
			<content:encoded><![CDATA[<blockquote><p>5 MINUTES AND 44 SECONDS LEFT.</p></blockquote>
<p>What is this, a bomb?</p>
<p><img class="alignnone size-medium wp-image-308" title="Screenshot 2010-02-18" src="http://cantuse.it/wp-content/uploads/2010/02/Screenshot-2010-02-18-kohteessa-1.45.57-363x300.png" alt="Screenshot 2010-02-18" width="363" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2010/02/intimidating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash drive appears as 200 mb under Windows</title>
		<link>http://cantuse.it/2010/01/flash-drive-appears-as-200-mb-under-windows/</link>
		<comments>http://cantuse.it/2010/01/flash-drive-appears-as-200-mb-under-windows/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 17:08:49 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://cantuse.it/?p=304</guid>
		<description><![CDATA[I got this tiny flash drive from Amazon a couple of months ago and I really grew to like it. Something peculiar happened with it, Windows wouldn&#8217;t recognize the FAT partition that I had created using Mac OS X and re-formatting it with Windows reduced the capacity of the disk to 200mb.
Solution is to use [...]]]></description>
			<content:encoded><![CDATA[<p>I got this <a href="http://www.amazon.com/SuperTalent-Pico-C-Flash-Drive-STU8GPCS/dp/B001BAW7P4/ref=sr_1_2?ie=UTF8&amp;s=electronics&amp;qid=1263747909&amp;sr=8-2">tiny flash drive</a> from Amazon a couple of months ago and I really grew to like it. Something peculiar happened with it, Windows wouldn&#8217;t recognize the FAT partition that I had created using Mac OS X and re-formatting it with Windows reduced the capacity of the disk to 200mb.</p>
<p>Solution is to use HP&#8217;s flash drive format tool under Windows, it recognizes the full capacity.</p>
<p><a href="http://www.pcworld.com/downloads/file/fid,64963-page,1/description.html">http://www.pcworld.com/downloads/file/fid,64963-page,1/descr­iption.html</a></p>
<p>Keywords: flash disk, flash drive, usb drive, thumb drive (we really need a standardized name :), 200 mb, 200mb, partition, format</p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2010/01/flash-drive-appears-as-200-mb-under-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quirky Proof of Concept: Automatic transition animation for CSS hovers (CSS transitions for older browsers)</title>
		<link>http://cantuse.it/2009/12/proof-of-concept-automatic-transition-animation-for-css-hovers-with-jquery/</link>
		<comments>http://cantuse.it/2009/12/proof-of-concept-automatic-transition-animation-for-css-hovers-with-jquery/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 06:32:59 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[webdev]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hover]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[transition]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=287</guid>
		<description><![CDATA[I coded some javascript to emulate css transitions for older browsers. It works by parsing the CSS of the page, determining rules which also have a :hover state, then attaching itself to onmouseover/onmouseout events and animating according to the hovered definition in CSS.
Here&#8217;s the quirky proof of concept and you can read the source to [...]]]></description>
			<content:encoded><![CDATA[<p>I coded some javascript to emulate css transitions for older browsers. It works by parsing the CSS of the page, determining rules which also have a :hover state, then attaching itself to onmouseover/onmouseout events and animating according to the hovered definition in CSS.</p>
<p><a href="http://cemre.gr/projects/hover-transition-animation/">Here&#8217;s the quirky proof of concept</a> and you can read the source to look at the code as well. It&#8217;s quite a dirty solution:</p>
<ul>
<li>IE has different ways of accessing the stylesheet, didn&#8217;t implement that</li>
<li>It&#8217;s probably very inefficient to iterate over all styles to get the hovered rules. Moreover, for each hovered rule, I search through the style rules again to find the un-hovered rule (O(n<sup>2</sup>) :)). Probably indexing all rules in a JS array would make things faster because of direct access? Another good idea if making the user provide all selectors which should be hover-animated.</li>
<li>It goes wonky if attributes that can&#8217;t be animated are defined (like font-family). I should probably make a list of all &#8220;animatable&#8221; attributes and only work on them.</li>
<li>It doesn&#8217;t account for default styles defined with a browser style-sheet (doesn&#8217;t restore them on mouseout)</li>
<li>For some reason margin-left and margin-right aren&#8217;t read in Firefox?</li>
</ul>
<p>Anyway here&#8217;s the thing: <a href="http://cemre.gr/projects/hover-transition-animation/">Automatic transition animation for CSS hovers with jQuery.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/12/proof-of-concept-automatic-transition-animation-for-css-hovers-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customize Macbook touchpad/Magic Mouse gestures</title>
		<link>http://cantuse.it/2009/12/customize-macbook-touchpadmagic-mouse-gestures/</link>
		<comments>http://cantuse.it/2009/12/customize-macbook-touchpadmagic-mouse-gestures/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 20:19:34 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[gestures]]></category>
		<category><![CDATA[magic mouse]]></category>
		<category><![CDATA[multi-touch]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=284</guid>
		<description><![CDATA[BetterTouchTool is a more advanced  version of MultiClutch that I talked about a month ago. It allows to customize the gestures of both Magic Mouse and the multi touch touchpad. It also incorporates functionality similar to &#8220;MiddleClick&#8221;.
Get it here: http://blog.boastr.net/
]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://blog.boastr.net/">BetterTouchTool</a></strong> is a more advanced  version of MultiClutch that I talked about a month ago. It allows to customize the gestures of both Magic Mouse and the multi touch touchpad. It also incorporates functionality similar to &#8220;MiddleClick&#8221;.</p>
<p>Get it here: <a href="http://blog.boastr.net/">http://blog.boastr.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/12/customize-macbook-touchpadmagic-mouse-gestures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert RM to AVI in Mac OS</title>
		<link>http://cantuse.it/2009/12/convert-rm-to-avi-in-mac-os/</link>
		<comments>http://cantuse.it/2009/12/convert-rm-to-avi-in-mac-os/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 16:47:30 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=281</guid>
		<description><![CDATA[From http://www.macosxhints.com/article.php?story=20060906153448633
Convert Real audio and video into MP3 and AVI files
Authored by: straniero on Wed, Jan 17 2007 at 1:47AM PST
I want to thank the person who started this thread! I&#8217;ve been trying for years to convert my South Park Real Movie collection to Quicktime and have finally managed thanks to them!
But&#8230; The instructions are not [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.macosxhints.com/article.php?story=20060906153448633">http://www.macosxhints.com/article.php?story=20060906153448633</a></p>
<blockquote><p>Convert Real audio and video into MP3 and AVI files<br />
Authored by: straniero on Wed, Jan 17 2007 at 1:47AM PST</p>
<p>I want to thank the person who started this thread! I&#8217;ve been trying for years to convert my South Park Real Movie collection to Quicktime and have finally managed thanks to them!</p>
<p>But&#8230; The instructions are not real clear! Here&#8217;s plain and clearly what you need to do to convert .rm video to Quicktime&#8230;.</p>
<p>1) Download ffmpegX.dmg, mencoder and mplayer from ffmegx.com/download.html<br />
mencoder and mplayer are zipped together as &#8220;ffmpegXbinaries20060307.zip&#8221;<br />
Unzip them after downloading or FFMPEGX can&#8217;t find them while it&#8217;s installing (D&#8217;uh!)<br />
Run FFMPEGX so that it can complete the installation!!!!!</p>
<p>2) Download and install Real Player 10 (not 9 or any other version!) from real.com<br />
I tried it with 9 and realized that these people who are saying that they couldn&#8217;t find the &#8220;codecs&#8221; folder in the right place were doing the same thing, and it doesn&#8217;t work! (I did only find 12 codecs and not 14, but it works!)</p>
<p>3) Control-click on the Realplayer icon and &#8220;open package contents&#8221;. Navigate to Contents -&gt; Frameworks -&gt; HXClientKit.framework -&gt; Helix Plugins -&gt; Codecs. Take all of the files in the &#8220;codecs&#8221; folder and copy them to a new folder that you create inside of /Library/Application Support/ffmpegX and name the folder &#8220;reallib&#8221;.</p>
<p>4)That&#8217;s it! Open FFMPEGX and convert your Realplayer media to Quicktime! For some reason though, you must use the DivX Mencoder preset or it won&#8217;t work, (So, export it again when you&#8217;re done!)</p>
<p>Other tips&#8230;.<br />
FFPEGX just has stripes on the progress bar while it&#8217;s doing this conversion, it&#8217;s normal.<br />
If you do a &#8220;get info&#8221; while you&#8217;re converting, you&#8217;ll see millions of &#8220;1 Dupicate frame(s)!&#8221; messages. It&#8217;s not stuck in a loop! I think what it should say is &#8220;1 Frame has been duplicated!&#8221;. These messages just mean that it is working!</p>
<p>I also found that by putting the 3ivx codec into FFMPEGX in the same way as the Real codecs I could convert videos that I could get to run in Quicktime before! Who knows the possibilities?</p>
<p>Happy encoding!<br />
The Straniero</p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/12/convert-rm-to-avi-in-mac-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[rant] Verizon Internet installer: painful and what&#8217;s worse, totally unnecessary!</title>
		<link>http://cantuse.it/2009/10/verizon-internet-installer-painful-and-whats-worse-totally-unnecessary/</link>
		<comments>http://cantuse.it/2009/10/verizon-internet-installer-painful-and-whats-worse-totally-unnecessary/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 20:42:03 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[verizon]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=264</guid>
		<description><![CDATA[In Europe, to get ADSL working, you plug the router in, and usually the first page you open asks for your username and password. You enter them, you get going. The most you do is opening 192.168.1.1 and putting down some info.
In the US, you are forced to download and install an installer, which will [...]]]></description>
			<content:encoded><![CDATA[<p>In Europe, to get ADSL working, you plug the router in, and usually the first page you open asks for your username and password. You enter them, you get going. The most you do is opening 192.168.1.1 and putting down some info.</p>
<p>In the US, you are forced to download and install an installer, which will take a couple of hours out of your life, doing essentially nothing but setting up your username and password (and maybe a few router settings, but since they ship the router themselves they can preset them already). There is no option to skip the screens which tell you how to plug an electric adapter into the wall socket! And every screen loads in a few seconds meaning you can&#8217;t just press next next next and keep going.</p>
<p>And their installer refuses to run on Mac OS Snow Leopard, saying that the system I use is too old. Luckily I had a spare Windows laptop! Otherwise no internet for me.</p>
<p>You wait, going through tons of unnecessary screens, agreeing to unnecessary agreements, getting installed SH*T on your computer! I was baffled to see Verizon actually FORCES you to install the Yahoo stuff! If you deselect both the Messenger and the Toolbar, you can&#8217;t continue!</p>
<p>If they would rape my main computer this way, instead of the Windows partition of my old MacBook, I&#8217;d be very annoyed.</p>
<p>Why couldn&#8217;t I just plug my router in like elsewhere in the world!?</p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/10/verizon-internet-installer-painful-and-whats-worse-totally-unnecessary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Middle click for Multi-Touch trackpads. Boost your productivity</title>
		<link>http://cantuse.it/2009/10/middle-click-for-multi-touch-trackpads-boost-your-productivity/</link>
		<comments>http://cantuse.it/2009/10/middle-click-for-multi-touch-trackpads-boost-your-productivity/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 01:27:35 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=260</guid>
		<description><![CDATA[http://clement.beffa.org/labs/projects/middleclick/
Three finger tap becomes middle click. This, added to MultiClutch that I previously mentioned, boosts my web surfing productivity tenfold. I can open pages in new tabs, browse between tabs and close tabs without using the keyboard at all, just with finger strokes. It&#8217;s very nice, I must tell you :)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://clement.beffa.org/labs/projects/middleclick/">http://clement.beffa.org/labs/projects/middleclick/</a></p>
<p>Three finger tap becomes middle click. This, added to MultiClutch that I previously mentioned, boosts my web surfing productivity tenfold. I can open pages in new tabs, browse between tabs and close tabs without using the keyboard at all, just with finger strokes. It&#8217;s very nice, I must tell you :)</p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/10/middle-click-for-multi-touch-trackpads-boost-your-productivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Set up custom multi-touch gestures for your Mac</title>
		<link>http://cantuse.it/2009/09/set-up-custom-multi-touch-gestures-for-your-mac/</link>
		<comments>http://cantuse.it/2009/09/set-up-custom-multi-touch-gestures-for-your-mac/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:42:46 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=257</guid>
		<description><![CDATA[Here&#8217;s what I had been looking for some time, surely it would be of use to everybody.
Multiclutch lets you assign shortcut keys to some multi-touch gestures in applications, so let&#8217;s say in Safari when you put 3 fingers and swipe left, instead of going back-forward, you could configure it to switch tabs. Similarly you can [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s what I had been looking for some time, surely it would be of use to everybody.</p>
<p>Multiclutch lets you assign shortcut keys to some multi-touch gestures in applications, so let&#8217;s say in Safari when you put 3 fingers and swipe left, instead of going back-forward, you could configure it to switch tabs. Similarly you can configure rotate gesture to for example implement back-forward.</p>
<p>It&#8217;s a bit tricky to configure it on Snow Leopard, here&#8217;s how it works:</p>
<p><a href="http://blog.prashantv.com/2009/multiclutch-fixes-instructions/">http://blog.prashantv.com/2009/multiclutch-fixes-instructions/</a></p>
<p>Don&#8217;t forget the last step, if you don&#8217;t do it, Firefox and some other apps might crash.</p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/09/set-up-custom-multi-touch-gestures-for-your-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great plugin for Fireworks CS4: sub-pixel nudge</title>
		<link>http://cantuse.it/2009/09/great-plugin-for-fireworks-cs4-sub-pixel-nudge/</link>
		<comments>http://cantuse.it/2009/09/great-plugin-for-fireworks-cs4-sub-pixel-nudge/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 02:39:22 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=254</guid>
		<description><![CDATA[Lets you move objects not in whole pixels but in sub-pixels, great for making Apple-style indent or emboss effects.
http://johndunning.com/fireworks/about/CustomNudge
]]></description>
			<content:encoded><![CDATA[<p>Lets you move objects not in whole pixels but in sub-pixels, great for making Apple-style indent or emboss effects.</p>
<p><a href="http://johndunning.com/fireworks/about/CustomNudge">http://johndunning.com/fireworks/about/CustomNudge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/09/great-plugin-for-fireworks-cs4-sub-pixel-nudge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireshark installation problems in Snow Leopard</title>
		<link>http://cantuse.it/2009/09/wireshark-installation-problems-in-snow-leopard/</link>
		<comments>http://cantuse.it/2009/09/wireshark-installation-problems-in-snow-leopard/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 17:04:14 +0000</pubDate>
		<dc:creator>cemre</dc:creator>
				<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://www.cantuse.it/?p=247</guid>
		<description><![CDATA[I installed Wireshark for my Networking course on Snow Leopard and had some difficulties.
After copying the command line utilities, if the folder you copied into wasn&#8217;t there before, it&#8217;s probably not in the include path. To edit the include path:

Open Terminal
sudo nano ~/.bash_profile
Add such a line:
export PATH=/opt/wireshark/bin/:$PATH
adjust name of the folder according to where you [...]]]></description>
			<content:encoded><![CDATA[<p>I installed Wireshark for my Networking course on Snow Leopard and had some difficulties.</p>
<p>After copying the command line utilities, if the folder you copied into wasn&#8217;t there before, it&#8217;s probably not in the include path. To edit the include path:</p>
<ol>
<li>Open Terminal</li>
<li>sudo nano ~/.bash_profile</li>
<li>Add such a line:<br />
export PATH=/opt/wireshark/bin/:$PATH<br />
adjust name of the folder according to where you copied the files.</li>
</ol>
<p>Secondly, I was instructed to put ChmodBPF in StartupItems, but got the following error when I restarted:</p>
<blockquote><p>“/Library/StartupItems/ChmodBPF” has not been started because it does not have the proper security settings.</p></blockquote>
<p>I observed that there was something wrong with the ownership of those files. To solve it,</p>
<ol>
<li>Open Terminal</li>
<li>Go to /Library/StartupItems/</li>
<li>chown -R root:wheel</li>
</ol>
<p>This will fix the problem.</p>
<p>Then I got the following errors when I ran Wireshark:</p>
<blockquote><p>The following errors were found while loading the MIBS:<br />
-:0 1 module-not-found failed to locate MIB module `IP-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `IF-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `TCP-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `UDP-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMPv2-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `RFC1213-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `IPV6-ICMP-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `IPV6-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-COMMUNITY-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-FRAMEWORK-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-MPD-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-NOTIFICATION-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-PROXY-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-TARGET-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-USER-BASED-SM-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-USM-DH-OBJECTS-MIB&#8217;<br />
-:0 1 module-not-found failed to locate MIB module `SNMP-VIEW-BASED-ACM-MIB&#8217;</p></blockquote>
<p>Apparently there is a problem with include paths. Solution:</p>
<ol>
<li>Click OK on error message.</li>
<li>In Wireshark window Edit &gt; Preferences &gt; Name Resolution.</li>
<li>Click <em>SMI (MIB and PIB) paths</em> edit button</li>
<li>Click New</li>
<li>Add the path <em>/usr/share/snmp/mibs/</em></li>
<li>OK and close Wireshark, also close X11.</li>
<li>Restart Wireshark</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cantuse.it/2009/09/wireshark-installation-problems-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
