<?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>Leandro A. F. Pereira &#187; profusion</title>
	<atom:link href="http://labs.hardinfo.org/mindcrisis/tag/profusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.hardinfo.org/mindcrisis</link>
	<description>geek em treinamento</description>
	<lastBuildDate>Sat, 29 Oct 2011 11:26:01 +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>WebKit EFL updates</title>
		<link>http://labs.hardinfo.org/mindcrisis/2011/09/02/webkit-efl-updates/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2011/09/02/webkit-efl-updates/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 15:01:37 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=442</guid>
		<description><![CDATA[After a marathon to build WebKit EFL on a Pandaboard (setting up a reliable cross-compilation environment would take more time than I had at hand), I was able to test how WebKit EFL behaved on ARM. At least the ARMv7, little-endian, kind of RISC. The results were unsurprisingly similar to x86: 92% of the tests [...]]]></description>
			<content:encoded><![CDATA[<p>After a marathon to build WebKit EFL on a Pandaboard (setting up a reliable cross-compilation environment would take more time than I had at hand), I was able to test how WebKit EFL behaved on ARM. At least the ARMv7, little-endian, kind of RISC.</p>
<p>The results were unsurprisingly similar to x86: 92% of the tests are passing. Given that libraries differ in version from the ones I have on my development machine, and that the baselines were not readjusted to match the different environment, it is a pretty decent score. Environment discrepancies aside, there were some real failures as far as I can tell &#8212; some of them are already fixed and should hit upstream soon.</p>
<p>Also of note: by using a similar approach to obtain the text baselines, more than 5200 pixel test baselines were created. After a couple of bug fixes, results remained with 95% acceptance.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2011/09/02/webkit-efl-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>State of WebKitEFL</title>
		<link>http://labs.hardinfo.org/mindcrisis/2011/08/04/state-of-webkitefl/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2011/08/04/state-of-webkitefl/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 21:04:30 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=436</guid>
		<description><![CDATA[WebKitEFL has gone a long way since it was upstreamed a year ago. Recently, we&#8217;ve been hard at work to implement the much needed testing infrastructure to not only help fix and identify bugs, but also to ensure that fixed things won&#8217;t break in the future. This infrastructure is implemented by all major ports, like [...]]]></description>
			<content:encoded><![CDATA[<p>WebKitEFL has gone a long way since it was upstreamed a year ago.</p>
<p>Recently, we&#8217;ve been hard at work to implement the much needed testing infrastructure to not only help fix and identify bugs, but also to ensure that fixed things won&#8217;t break in the future. This infrastructure is implemented by all major ports, like the Mac port, all the Chromium ports, the GTK and Qt ports, etc, and is comprised of a port-specific part, and a port-independent part.</p>
<p>The independent parts are scripts that gathers the (currently) 20000+ tests and feeds them to the port-specific parts, to compare with outputs generated previously with the same tools.</p>
<p>Since some things depends heavily on how a certain platform behaves &#8212; font hinting, for example, is largely dependent on the platform &#8212; baselines are provided for each platform, in addition to &#8220;generic&#8221; baselines for some tests. This is one of the reasons the WebKit repository is so large: the LayoutTests directory weighs about 1.4GB of tests and baselines for all the ports.</p>
<p>The platform-dependent part has been implemented and is in the process of being upstreamed. It is comprised of two tools, basically:</p>
<ul>
<li>DumpRenderTree, which, as the name says, dumps a textual representation of all the objects that will be used to render the web page &#8212; it performs a little more than that, of course, so that the output is in a known state before dumping the output;</li>
<li>ImageDiff, which compares two images and, if a significant difference is found, outputs the percentage of pixels that changed and a third image that highlights the regions of change.</li>
</ul>
<p>With these tools alone, and without any EFL-specific baselines, the port manages to get about 72% of acceptance. Given that most web pages renders perfectly under WebKitEFL, this score can be improved. However, as stated, there are <strong>a lot</strong> of tests, and manually checking each one would be very impractical and time consuming.</p>
<p>By writing a script that would compare the textual output of our DumpRenderTree with the baselines for other ports &#8212; and consider the output of the EFL port correct if within certain thresholds, the <strong>acceptance went up to 95%</strong>, which is pretty satisfactory.</p>
<p>There are still 5% of tests that are not passing,  either because of an unimplemented feature being tested (in which case, the test is temporarily skipped), or because some more deep debugging is required to improve the score. There are the occasional crashers as well, usually after merges with upstream.</p>
<p>The next step is to set up a bot that will periodically execute these tests and warn for potential breaks or changes of behavior.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2011/08/04/state-of-webkitefl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EWebKit snapshots</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/11/09/ewebkit-snapshots/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/11/09/ewebkit-snapshots/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 20:47:15 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=416</guid>
		<description><![CDATA[For the last few weeks, I&#8217;ve been making snapshots tarballs of EWebKit and making them available here. They&#8217;re roughly 12MB in size, and ought to be easier on the bandwidth for those only wanting to try it out (or perhaps to run Eve). They&#8217;re tested and should build nicely &#8212; YMMV though, since there are [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few weeks, I&#8217;ve been making snapshots tarballs of EWebKit and <a href="http://packages.profusion.mobi/webkit-efl/">making them available here</a>. They&#8217;re roughly 12MB in size, and ought to be easier on the bandwidth for those only wanting to try it out (or perhaps to run Eve). They&#8217;re tested and should build nicely &#8212; YMMV though, since there are some compiler/libraries configurations that just won&#8217;t work.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/11/09/ewebkit-snapshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring the buildbot</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/11/03/monitoring-the-buildbot/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/11/03/monitoring-the-buildbot/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 20:40:06 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=410</guid>
		<description><![CDATA[Last post I discussed about the webkit Buildbot I&#8217;ve set up. As nice as this is, simply setting up a buildbot won&#8217;t help much: things will break and won&#8217;t get noticed. Using ideas found scattered over the web, such as Github&#8217;s build indicator light, I&#8217;ve cooked my own buildbot monitor using a mail indicator bought [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/11/cropped03112010143.jpg"></a><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/11/cropped03112010143.jpg"><img class="alignright" title="cropped03112010143" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/11/cropped03112010143-150x150.jpg" alt="" width="150" height="150" align="right" /></a>Last post I discussed about the webkit Buildbot I&#8217;ve set up. As nice as this is, simply setting up a buildbot won&#8217;t help much: things will break and won&#8217;t get noticed.</p>
<p>Using ideas found scattered over the web, such as <a href="https://github.com/blog/653-our-new-build-status-indicator">Github&#8217;s build indicator light</a>, I&#8217;ve cooked my own buildbot monitor using a mail indicator bought from a Chinese store (which is really just a RGB LED with an USB interface). A simple <a href="http://python.org">Python</a> script polls the buildbot status page every 15 minutes and changes the LED color to be either green or red, depending on the build status. Click on the photo for a full-sized version.</p>
<p>Why use something like this instead of a notification area icon, you ask? Well, this looks way nicer and displays the status even when my screen is locked and I&#8217;m away from my computer. <img src='http://labs.hardinfo.org/mindcrisis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/11/03/monitoring-the-buildbot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebKit EFL automated build test</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/10/15/webkit-efl-automated-build-test/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/10/15/webkit-efl-automated-build-test/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 21:53:09 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=408</guid>
		<description><![CDATA[The past two weeks I&#8217;ve been working to set up both a Buildbot and an Early Warning System (EWS) for the EFL port of WebKit. This is an important landmark: with this there will be less build breakage happening, which happens quite often because WebKit is a moving target: things are being added, refactored, otherwise [...]]]></description>
			<content:encoded><![CDATA[<p>The past two weeks I&#8217;ve been working to set up both a <a href="http://buildbot.net">Buildbot</a> and an Early Warning System (EWS) for the EFL port of WebKit. This is an important landmark: with this there will be less build breakage happening, which happens quite often because WebKit is a moving target: things are being added, refactored, otherwise improved, and without automated tests other developers can&#8217;t see if their changes will work on all ports.</p>
<p>For those unfamiliar with this kind of stuff: the EWS bot will download every single patch submitted to WebKit&#8217;s Bugzilla, apply it with a clean tree, and then build the port. If the patch couldn&#8217;t be applied, or the build fails, a red bubble shows up in Bugzilla right beside the patch to warn the submitter that there might be a problem with it &#8212; clicking this bubble gives the build-webkit script output to give a clue of what happened.</p>
<p>The Buildbot does roughly the same thing as the EWS, with the exception of only running patches that actually went to the repository. Because of this, it performs incremental builds: there is no need to clean the build directory, so each build cycle is pretty fast: if no files relevant to the EFL port has been touched, a cycle will take about 30s, way faster than the 15minutes of each EWS cycle.</p>
<p>Both bots are being run on CPU time donated by Samsung Electronics. Currently there is only one machine running both bots, but more will be added soon.</p>
<p>Last, but not least: with the help of Buildbot, we know which revision is building or not, so expect <a href="http://packages.profusion.mobi/webkit-efl">weekly snapshots of WebKit EFL</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/10/15/webkit-efl-automated-build-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picolé: get it while it is cold</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/10/06/picole-get-it-while-it-is-cold/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/10/06/picole-get-it-while-it-is-cold/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 17:39:10 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[picolé]]></category>
		<category><![CDATA[profusion]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=404</guid>
		<description><![CDATA[Some time ago I&#8217;ve blogged about Picolé, the Icecream monitor I wrote. On that blog post, I said I would soon release the source code. It took me a while to figure out a solution to a problem I was having (as this is a spare time project and I&#8217;ve been pretty busy lately) with [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I&#8217;ve blogged about <a href="http://labs.hardinfo.org/mindcrisis/2010/05/03/picole/">Picolé</a>, the <a href="en.opensuse.org/Icecream">Icecream</a> monitor I wrote. On that blog post, I said I would soon release the source code. It took me a while to figure out a solution to a problem I was having (as this is a spare time project and I&#8217;ve been pretty busy lately) with stability. The server is now running here on <a href="http://profusion.mobi">ProFUSION</a> with more than one month of uptime, so I guess it is pretty stable for something hacked quickly like this.</p>
<p>Without further ado, the source code (and other information) is <a href="http://people.profusion.mobi/~leandro/picole/">available on its official web site</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/10/06/picole-get-it-while-it-is-cold/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Eve: EFL Web Browser</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/08/12/eve-efl-web-browser/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/08/12/eve-efl-web-browser/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 22:18:31 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=394</guid>
		<description><![CDATA[I&#8217;ve been working on the past few weeks on Eve, an web browser that uses WebKit-EFL. This browser is a complete rewrite of the old Eve web browser, and is meant to be used on mobile devices. It is currently pretty complete, including tabs, bookmarks, and history. It also looks good to boot (thanks Marina!), [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on the past few weeks on Eve, an web browser that uses WebKit-EFL.</p>
<p>This browser is a complete rewrite of the old Eve web browser, and is meant to be used on mobile devices. It is currently pretty complete, including tabs, bookmarks, and history. It also looks good to boot (thanks Marina!), as it is based on the Efenniht theme (click to open a larger version):</p>
<p style="text-align: center;"><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-browsing.png"><img title="eve-browsing" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-browsing-150x150.png" alt="" width="150" height="150" /></a> <a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-tabs.png"><img class="alignnone size-thumbnail wp-image-399" title="eve-tabs" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-tabs-150x150.png" alt="" width="150" height="150" /></a></p>
<p style="text-align: center;"><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-tabs.png"></a><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-history-1.png"><img class="alignnone size-thumbnail wp-image-397" title="eve-history-1" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-history-1-150x150.png" alt="" width="150" height="150" /></a> <a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-history-2.png"><img class="alignnone size-thumbnail wp-image-398" title="eve-history-2" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/08/eve-history-2-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Screenshots won&#8217;t make it any justice though, as Eve is capable of some nice and smooth animations. I&#8217;m too lazy to make a screencast, so you&#8217;ll have to download and run it locally to see the interface at work <img src='http://labs.hardinfo.org/mindcrisis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So Enlightenment users can benefit from this project, I&#8217;ve committed it to the Enlightenment SVN repository (on /trunk/eve). Also, there are some things that I didn&#8217;t have time to implement, so open sourcing this seems to be a nice idea: so, if you&#8217;d like to dive into the code, there are a few things that I&#8217;d like to have implemented on the browser&#8230; bug me on IRC (acidx @ freenode).</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/08/12/eve-efl-web-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WebKit Commiter</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/06/18/webkit-commiter/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/06/18/webkit-commiter/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 21:46:47 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=391</guid>
		<description><![CDATA[I&#8217;ve been recently nominated as a WebKit committer after landing more than 60 patches to upstream the EFL port. My account was set up yesterday, and I&#8217;ve already committed some build fixes that would otherwise get dusty on the bug tracker. This will eventually speed up the maintenance of the EFL port, as build fixes do not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been recently nominated as a WebKit committer after landing more than 60 patches to upstream the EFL port. My account was set up yesterday, and I&#8217;ve already committed some build fixes that would otherwise get dusty on the bug tracker.</p>
<p>This will eventually speed up the maintenance of the EFL port, as build fixes do not require to be reviewed by someone else, and thus don&#8217;t require the use of the usually crowded commit queue.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/06/18/webkit-commiter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picolé</title>
		<link>http://labs.hardinfo.org/mindcrisis/2010/05/03/picole/</link>
		<comments>http://labs.hardinfo.org/mindcrisis/2010/05/03/picole/#comments</comments>
		<pubDate>Mon, 03 May 2010 18:35:55 +0000</pubDate>
		<dc:creator>acidx</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[picolé]]></category>
		<category><![CDATA[profusion]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://labs.hardinfo.org/mindcrisis/?p=380</guid>
		<description><![CDATA[While working with WebKit at ProFUSION, this famous XKCD strip couldn&#8217;t be more descriptive: There are various ways to get a monster like WebKit to compile faster, such as using ccache or icecream. CCache is nice because I&#8217;m working with the build system, so I have to rebuild the whole thing often, even if I [...]]]></description>
			<content:encoded><![CDATA[<p>While working with <a href="http://webkit.org">WebKit</a> at <a href="http://profusion.mobi">ProFUSION</a>, this famous XKCD strip couldn&#8217;t be more descriptive:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://imgs.xkcd.com/comics/compiling.png" alt="XKCD: Compiling!" /></p>
<p>There are various ways to get a monster like WebKit to compile faster, such as using ccache or icecream.</p>
<p><a href="http://ccache.samba.org/">CCache</a> is nice because I&#8217;m working with the build system, so I have to rebuild the whole thing often, even if I didn&#8217;t change a single line of code: ccache saves the object files somewhere in your home and only copies them instead of compiling it again, if there were no changes to the source code.</p>
<p>Icecream is also nice. Forked from <a href="http://distcc.samba.org/">distcc</a>, icecream allows to distribute the compilation to other computers: add more nodes and the compilation goes faster. Compiling the kernel was never this fun before I&#8217;ve used this thing. There are some Gentoo users at ProFUSION that probably enjoys this thing as well.</p>
<p>And even though Icecream offers a nice program called Icemon with some nice visualization options, it is written for Qt3 &#8212; it works with Qt4 using the compatibility libraries &#8212; and crashes often. Since I was too lazy to debug this program, I&#8217;ve decided to write my own.</p>
<p>Called Picolé, it is an web-based monitor program. It felt natural to do a web-based program because I was working with WebKit; also, it can be installed on a server and there is no need for specialized client applications anymore. And since I&#8217;ve been longing to create something using AJAX for some time, this was the perfect opportunity.</p>
<p>The user interface is pretty simple. It offers two views: Hosts and Jobs.</p>
<p style="text-align: center;"><a href="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/05/picole.png"><img class="size-medium wp-image-385 aligncenter" title="picole" src="http://labs.hardinfo.org/mindcrisis/wp-content/uploads/2010/05/picole-300x196.png" alt="" width="300" height="196" /></a><br />
Picolé&#8217;s main interface (click to enlarge)</p>
<p>The hosts view can display all the Icecream nodes in the network either in a table, or by using a star view, similar to the Icemon one.</p>
<p>The jobs view displays all the jobs being processed right now, and tells the language, file name, node that asked the compilation and node where the compilation is being performed.</p>
<p>The server is written in Python (using <a href="http://webpy.org/">webpy</a>) and it communicates through pipes with a program, written in C++, which communicates with the Icecream&#8217;s scheduler. The reason I&#8217;m not using a single programming language is that I didn&#8217;t want to rewrite the C++ part in Python, because I am using the same classes used by the Icemon program.</p>
<p>I got permission to distribute Picolé&#8217;s source code, but I need to clean it up and fix some stability problems. I&#8217;ll let you know whenever this happens.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.hardinfo.org/mindcrisis/2010/05/03/picole/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.709 seconds -->

