<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>Diego, el gnomo &#187; tips</title>
	<atom:link href="http://blogs.gnome.org/diegoe/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/diegoe</link>
	<description>Pisco Sour is GNOME's official cocktail</description>
	<lastBuildDate>Wed, 21 Oct 2009 01:15:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/pe/</creativeCommons:license>		<item>
		<title>Python common mistakes</title>
		<link>http://blogs.gnome.org/diegoe/2009/05/23/python-common-mistakes/</link>
		<comments>http://blogs.gnome.org/diegoe/2009/05/23/python-common-mistakes/#comments</comments>
		<pubDate>Sat, 23 May 2009 19:09:58 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[planetdebian]]></category>
		<category><![CDATA[planetgnome]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[faq]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/?p=127</guid>
		<description><![CDATA[When starting with Python or just when you haven&#8217;t read PEP 8 you usually fall into some frequent mistakes. Mostly because you take your experience in other languages to Python and your mind gets confused with the new conventions (or something like that).
Some of these errors and their explanation:

if a == None:
Really common. None is [...]]]></description>
			<content:encoded><![CDATA[<p>When starting with Python or just when you haven&#8217;t read <a href="http://www.python.org/dev/peps/pep-0008/">PEP 8</a> you usually fall into some frequent mistakes. Mostly because you take your experience in other languages to Python and your mind gets confused with the new conventions (or something like that).</p>
<p>Some of these errors and their explanation:</p>
<ul>
<li><strong>if a == None:</strong><br />
Really common. None is a singleton, so you can (well, actually, have) to compare to it like &#8216;<strong>if a is None</strong>&#8216; or &#8216;<strong>if a is not None</strong>&#8216;.</li>
<li><strong>if (condition):</strong><br />
This is not really pythonic, if doesn&#8217;t take () around the condition in python, () purpose is grouping, you can use them in an if but only to clarify a really complex condition or similar stuff. Please don&#8217;t clutter code with unneeded characters.</li>
<li><strong>if len(list):<br />
</strong>This is a misunderstanding of Python way of things, any empty sequence (string, list, tuple) is False. So if you want to make sure a list is empty, just check if it&#8217;s False. Same for tuples, and in some ocassions for strings.</li>
<li><strong>if type(obj) is type(1):<br />
</strong>This is killing kittens, there&#8217;s a builtin function for this purpose, it&#8217;s called -surprise- isinstance(object, type). For example <strong>isinstance(123, int)</strong></li>
</ul>
<p>Read more about this and other conventions in <a href="http://www.python.org/dev/peps/pep-0008/">PEP 8</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2009/05/23/python-common-mistakes/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Saving your neck when git-svn dcommit fails</title>
		<link>http://blogs.gnome.org/diegoe/2009/03/18/saving-your-neck-when-git-svn-dcommit-fails/</link>
		<comments>http://blogs.gnome.org/diegoe/2009/03/18/saving-your-neck-when-git-svn-dcommit-fails/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 02:08:49 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[dcommit]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git-svn]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/?p=105</guid>
		<description><![CDATA[Over the weekend I had to send some changes to an SVN repo. Thing is that I use git-svn to have all those XXI century benefits like local commits.
Sadly I had some problems with git-svn, concretely it failed half the way through sending my really big number of changes. The result was that I was [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I had to send some changes to an SVN repo. Thing is that I use git-svn to have all those XXI century benefits like local commits.</p>
<p>Sadly I had some problems with git-svn, concretely it failed half the way through sending my really big number of changes. The result was that I was left with uncommitted changes and missing commits after such set of changes. No need to say that I was really nervous about the state of my hard work of the week&#8230;</p>
<p>So after some desperate google searches and some questions to my personal GIT expert, <a href="http://blogs.gnome.org/desrt/">desrt</a>, I found this <a href="http://groups.google.com/group/google-code-hosting/browse_thread/thread/e0a6597f7f4c7739?pli=1">mail in google groups</a>. I reproduce the process here:</p>
<p><strong>How to save your neck when git-svn dcommit fails half through the process</strong></p>
<ol>
<li>Open <code>.git/logs/HEAD</code></li>
<li>Look for your most recent commit (note that these commits are sorted by &#8220;unix time&#8221;, although you can also find the latest one by reading the shortlog there</li>
<li>Confirm that the commit you found is the right one: git show <hash from log></li>
<li><code>git reset --hard <em>hash from log</em></code></li>
<li><code>git svn rebase</code></li>
<li><code>git svn dcommit</code></li>
</ol>
<p>This picks up where <strong>it left off</strong>, so you won&#8217;t loose anything, happy happy happy git <img src='http://blogs.gnome.org/diegoe/wp-content/mu-plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> .</p>
<p>Hope this saved your neck like it saved mine. Other tips welcome <img src='http://blogs.gnome.org/diegoe/wp-content/mu-plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> !</p>
<p><strong>Update:</strong> Mike lets me know that the commands were bad written because of html entities and stuff, fixed now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2009/03/18/saving-your-neck-when-git-svn-dcommit-fails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GTK+ from checkout not building in Ubuntu</title>
		<link>http://blogs.gnome.org/diegoe/2008/12/12/gtk-from-checkout-not-building-in-ubuntu/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/12/12/gtk-from-checkout-not-building-in-ubuntu/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 06:01:42 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[bugs]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[ftbfs]]></category>
		<category><![CDATA[gtk+]]></category>
		<category><![CDATA[stupidautofoo]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/?p=79</guid>
		<description><![CDATA[If you try to build GTK+ from a checkout (svn, git) in Ubuntu you will probably hit this:
/usr/bin/ld:.libs/libgdk_pixbuf-2.0.ver:2: ignoring invalid character `\001&#8242; in script
/usr/bin/ld:.libs/libgdk_pixbuf-2.0.ver:2: syntax error in VERSION script
the solution is to export a C locale before building, like this:
LC_ALL=C make
Update 30/12/08: The real solution as pointed by Xan is to use bash instead of [...]]]></description>
			<content:encoded><![CDATA[<p>If you try to build GTK+ from a checkout (svn, git) in Ubuntu you will probably hit this:</p>
<blockquote><p>/usr/bin/ld:.libs/libgdk_pixbuf-2.0.ver:2: ignoring invalid character `\001&#8242; in script<br />
/usr/bin/ld:.libs/libgdk_pixbuf-2.0.ver:2: syntax error in VERSION script</p></blockquote>
<p><span style="text-decoration: line-through;">the solution is to export a C locale before building, like this:</span></p>
<blockquote><p><span style="text-decoration: line-through;">LC_ALL=C make</span></p></blockquote>
<p><strong>Update 30/12/08:</strong> The <strong>real solution</strong> as pointed by <a href="http://blogs.gnome.org/xan">Xan</a> is to use bash instead of dash for sh, reconfigure the dash package and select &#8220;DO NOT WANT&#8221; when asked:</p>
<blockquote><p>sudo dpkg-reconfigure dash</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/12/12/gtk-from-checkout-not-building-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fixing resume of my Intel 855GM in Ibex</title>
		<link>http://blogs.gnome.org/diegoe/2008/12/03/fixing-resume-of-my-intel-855gm-in-ibex/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/12/03/fixing-resume-of-my-intel-855gm-in-ibex/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 00:09:14 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[855gm]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[suspend]]></category>
		<category><![CDATA[ubuntudoesntreplytomybugs]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/?p=74</guid>
		<description><![CDATA[So, since the Ibex upgrade, my good old milkyway has been resuming to a corrupted X. This seems to be EXA&#8217;s fault. After much struggling and debugging I found that if I force XAA acceleration in xorg.conf, I won&#8217;t suffer this problem and my suspend will be useful again!.
So, to fix it, you just need [...]]]></description>
			<content:encoded><![CDATA[<p>So, since the Ibex upgrade, my good old milkyway has been resuming to a corrupted X. This seems to be EXA&#8217;s fault. After much struggling and debugging I found that if I force XAA acceleration in xorg.conf, I won&#8217;t suffer this problem and my suspend will be useful again!.</p>
<p>So, to fix it, you just need to add this to the <strong>Device</strong> section of <strong>/etc/X11/xorg.conf</strong>:</p>
<blockquote><p>Option &#8220;AccelMethod&#8221; &#8220;<strong>XAA</strong>&#8220;</p></blockquote>
<p class="subheader">You can see my bug report to the intel driver here: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=18806">Bug 18806 &#8211; [855GM] Xorg crashes during resume if Accel is enabled with EXA </a></p>
<p class="subheader">Note that it also works if you are using EXA and you disable Accel. I don&#8217;t recommend that solution. See the bug if you doubt if this applies for your laptop or system, it has lspci info about my card.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/12/03/fixing-resume-of-my-intel-855gm-in-ibex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>syntax error in VERSION script</title>
		<link>http://blogs.gnome.org/diegoe/2008/07/28/syntax-error-in-version-script/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/07/28/syntax-error-in-version-script/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 06:34:03 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[autofoo]]></category>
		<category><![CDATA[autotools]]></category>
		<category><![CDATA[damnit]]></category>
		<category><![CDATA[libtool]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/07/28/syntax-error-in-version-script/</guid>
		<description><![CDATA[So playing with some code I&#8217;m building I got to this:
/usr/bin/ld:.libs/pygvariant.ver:2: syntax error in VERSION script
Sucker autotools, after like 1 hour of thinking I read the log (I haven&#8217;t read it  ):
libtool: link: /bin/grep -E -e "init_pygvariant" ".libs/pygvariant.exp" &#62; ".libs/pygvariant.expT"
libtool: link: mv -f ".libs/pygvariant.expT" ".libs/pygvariant.exp"
libtool: link: echo "{ global:" &#62; .libs/pygvariant.ver
libtool: link:  cat .libs/pygvariant.exp [...]]]></description>
			<content:encoded><![CDATA[<p>So playing with some code I&#8217;m building I got to this:</p>
<p><code>/usr/bin/ld:.libs/pygvariant.ver:2: syntax error in VERSION script</code></p>
<p>Sucker autotools, after like 1 hour of thinking I read the log (I haven&#8217;t read it <img src='http://blogs.gnome.org/diegoe/wp-content/mu-plugins/tango-smilies/tango/face-smile.png' alt=':)' class='wp-smiley' /> ):</p>
<p><code>libtool: link: /bin/grep -E -e "init_pygvariant" ".libs/pygvariant.exp" &gt; ".libs/pygvariant.expT"<br />
libtool: link: mv -f ".libs/pygvariant.expT" ".libs/pygvariant.exp"<br />
libtool: link: echo "{ global:" &gt; .libs/pygvariant.ver<br />
libtool: link:  cat .libs/pygvariant.exp | sed -e "s/\(.*\)/\1;/" &gt;&gt; .libs/pygvariant.ver<br />
libtool: link:  echo "local: *; };" &gt;&gt; .libs/pygvariant.ver</code></p>
<p>So running all those commands made me discover that my function was still init_gvariant and not init_<strong>py</strong>gvariant.</p>
<p>That&#8217;s all for today.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/07/28/syntax-error-in-version-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know the return value of a command</title>
		<link>http://blogs.gnome.org/diegoe/2008/05/18/how-to-know-the-return-value-of-a-command/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/05/18/how-to-know-the-return-value-of-a-command/#comments</comments>
		<pubDate>Sun, 18 May 2008 22:48:27 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[return value]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/05/18/how-to-know-the-return-value-of-a-command/</guid>
		<description><![CDATA[Just do:
$ echo $?
and that&#8217;s it.
]]></description>
			<content:encoded><![CDATA[<p>Just do:</p>
<p>$ echo $?</p>
<p>and that&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/05/18/how-to-know-the-return-value-of-a-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thinkpad R50e suspend and resume</title>
		<link>http://blogs.gnome.org/diegoe/2008/05/15/thinkpad-r50e-suspend-and-resume/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/05/15/thinkpad-r50e-suspend-and-resume/#comments</comments>
		<pubDate>Thu, 15 May 2008 08:09:54 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[suspend]]></category>
		<category><![CDATA[thinkpad]]></category>
		<category><![CDATA[vbe]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/05/15/thinkpad-r50e-suspend-and-resume/</guid>
		<description><![CDATA[So I have a loyal R50e, thing is that resuming from suspend breaks graphics, I had that working back in the days but recent upgrades of drivers and stuff broke it for some months, I didn&#8217;t care to fix it since I didn&#8217;t have battery anyway.
But now I fixed it again, trick is to edit [...]]]></description>
			<content:encoded><![CDATA[<p>So I have a loyal R50e, thing is that resuming from suspend breaks graphics, I had that working back in the days but recent upgrades of drivers and stuff broke it for some months, I didn&#8217;t care to fix it since I didn&#8217;t have battery anyway.</p>
<p>But now I fixed it again, trick is to edit <code>/usr/share/acpi-support/IBM.config</code>:<br />
<code><br />
# R50e<br />
1834*|1842*|2670*)<br />
ACPI_SLEEP=true;<br />
SAVE_VIDEO_PCI_STATE=true;<br />
# toggled false -&gt;; true<br />
SAVE_VBE_STATE=true;<br />
POST_VIDEO=true;<br />
;;<br />
</code></p>
<p>There! You must make those two vars be <strong>true</strong>. Maybe some tweaking to <code>/etc/defaults/acpi-support</code> would be needed. Most of time this should be all you need to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/05/15/thinkpad-r50e-suspend-and-resume/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMTP and gmail</title>
		<link>http://blogs.gnome.org/diegoe/2008/05/15/smtp-and-gmail/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/05/15/smtp-and-gmail/#comments</comments>
		<pubDate>Thu, 15 May 2008 08:02:07 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/05/15/smtp-and-gmail/</guid>
		<description><![CDATA[Just for the records, gmail&#8217;s SMTP server uses port 465 for SSL and the 567 (or a similar number, too lazy to search for it) TLS, I had SSL + port 567 and I have been wondering why Evolution didn&#8217;t send my mails. Now I found out.
]]></description>
			<content:encoded><![CDATA[<p>Just for the records, gmail&#8217;s SMTP server uses port 465 for SSL and the 567 (or a similar number, too lazy to search for it) TLS, I had SSL + port 567 and I have been wondering why Evolution didn&#8217;t send my mails. Now I found out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/05/15/smtp-and-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing control+arrow in gnome-terminal</title>
		<link>http://blogs.gnome.org/diegoe/2008/05/09/fixing-controlarrow-in-gnome-terminal/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/05/09/fixing-controlarrow-in-gnome-terminal/#comments</comments>
		<pubDate>Fri, 09 May 2008 17:19:30 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[gnome-terminal]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/05/09/fixing-controlarrow-in-gnome-terminal/</guid>
		<description><![CDATA[I totally forgot how to fix this, so to not forget it again, here is it:
Add &#8220;$include /etc/inputrc&#8221; to your ~/.inputrc.
From  lp #89235
]]></description>
			<content:encoded><![CDATA[<p>I totally forgot how to fix this, so to not forget it again, here is it:</p>
<p>Add &#8220;$include /etc/inputrc&#8221; to your ~/.inputrc.</p>
<p>From  <a href='https://launchpad.net/bugs/89235' class='bug-link bug-link-lp'>lp #89235</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/05/09/fixing-controlarrow-in-gnome-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow X rendering with sis driver</title>
		<link>http://blogs.gnome.org/diegoe/2008/04/14/slow-x-rendering-with-sis-driver/</link>
		<comments>http://blogs.gnome.org/diegoe/2008/04/14/slow-x-rendering-with-sis-driver/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 21:44:43 +0000</pubDate>
		<dc:creator>diegoe</dc:creator>
				<category><![CDATA[bugs]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[googleme]]></category>
		<category><![CDATA[sis]]></category>
		<category><![CDATA[sisfb]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/diegoe/2008/04/14/slow-x-rendering-with-sis-driver/</guid>
		<description><![CDATA[Everything slow when using X with the sis driver? Well, here it&#8217;s awfully slow, made me want to trash my old pc&#8230; but then I discovered this bug in Launchpad : lp #26637.
Turns out that vesafb and vga16fb modules are responsible for this chaos. They seem to be stealing the memory managemen and hence making [...]]]></description>
			<content:encoded><![CDATA[<p>Everything <strong>slow</strong> when using X with the sis driver? Well, here it&#8217;s awfully slow, made me want to trash my old pc&#8230; but then I discovered this bug in Launchpad : <a href='https://launchpad.net/bugs/26637' class='bug-link bug-link-lp'>lp #26637</a>.</p>
<p>Turns out that vesafb and vga16fb modules are responsible for this chaos. They seem to be stealing the memory managemen and hence making sis driver impossible to use due to it&#8217;s lack of descent performance.</p>
<p><em>What&#8217;s the fix?</em> <strong>Blacklist vesafb and vga16fb</strong> and add <em>sisfb</em> to <em>/etc/modules</em>. You can try to add video=sisfb in the boot line of the kernel (grub&#8217;s menu.lst) too.</p>
<p>Note that Fedora doesn&#8217;t have sisfb built and is forcing vesafb into the kernel for it&#8217;s graphical boot. Ubuntu is doing the same, but they also build sisfb as a module.</p>
<p>So if you are using Fedora, you are screwed unless you rebuild your kernel, if you are using Ubuntu or Debian, make sure vesafb is not loaded (nor vga16fb) and have sisfb loaded sometime before X starts.</p>
<p><em>How can you be sure it worked?</em> Grep /var/log/Xorg.0.log for &#8216;memcpy&#8217; and see if the MB/s rate is descent, you can try with and then without the sisfb module to check if it&#8217;s making a difference. Here it does.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/diegoe/2008/04/14/slow-x-rendering-with-sis-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
