<?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>Joaquim Rocha&#039;s Web Page &#187; python</title>
	<atom:link href="http://www.joaquimrocha.com/category/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joaquimrocha.com</link>
	<description>Linux, technology and art</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:54:06 +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>Announcing GFreenect</title>
		<link>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/</link>
		<comments>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 11:22:22 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[interactivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1387</guid>
		<description><![CDATA[As mentioned in my last post, Edu the mighty Cuban and I have been playing with the Kinect and developed an interactive installation for Igalia&#8216;s 10th anniversary party using OpenFrameworks. (By the way, some people asked me for that application&#8217;s code so yesterday I cleaned it and it&#8217;s available on Gitorious) OpenFrameworks offers a number [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my last post, <a href="http://blogs.igalia.com/elima/" target="_blank">Edu <em>the mighty Cuban</em></a> and I have been playing with the Kinect and developed an <a href="http://www.joaquimrocha.com/2012/01/17/augmented-reality-at-igalias-10-years-anniversary/" title="Augmented Reality at Igalia’s 10 Years Anniversary">interactive installation</a> for <a href="http://www.igalia.com" target="_blank">Igalia</a>&#8216;s <a href="http://www.igalia.com/igalia-247/news/item/igalia-celebrates-its-10th-anniversary" target="_blank">10th anniversary</a> party using <a href="http://www.openframeworks.cc" target="_blank">OpenFrameworks</a>. (By the way, some people asked me for that application&#8217;s code so yesterday I cleaned it and it&#8217;s <a href="https://gitorious.org/aquarium-interactive-demo" target="_blank">available on Gitorious</a>)<br />
OpenFrameworks offers a number of functionalities either from its core libraries or by means of add-ons and indeed there is an add-on that wraps <a href="http://openkinect.org/wiki/Main_Page" target="_blank">libfreenect</a>, the Free Software library that allows to control the Kinect.</p>
<p>Using OpenFrameworks was easy, it makes it fast to start developing with it but in many aspects it&#8217;s completely different from the way we&#8217;re used to work on <a href="http://www.gnome.org" target="_blank">GNOME</a>. We are used to have single, independent libraries that do one thing and do it well and are used as needed by application developers, for example, do not include a sound library if my application is never going to use it.<br />
Having modules such as <a href="http://www.gtk.org/" target="_blank">GTK+</a>, <a href="http://www.clutter-project.org/" target="_blank">Clutter</a>, <a href="http://cairographics.org/" target="_blank">Cairo</a>, <a href="http://gstreamer.freedesktop.org" target="_blank">GStreamer</a>, etc. already gives us flexible ways to develop certain parts of applications similar to the demo mentioned before: we just had to draw the fish using Clutter/Cairo, implement their behavior and show the Clutter stage. Of course we also would need a way to control the Kinect and it would be really nice if it could offer us an easy to use API for those familiar with GLib&#8230;</p>
<p><strong>Ladies and gents, we give you&#8230; GFreenect</strong></p>
<p><a href="https://gitorious.org/gfreenect" target="_blank">GFreenect</a> is a wrapper for the Freenect library written using Glib in order to control a Kinect device and make it easy to use with GNOME technologies.<br />
It doesn&#8217;t simply wrap the Freenect library but also offers ways of using it that are familiar to you if you have developed something using other GNOME libraries.<br />
One example of this enhanced functionality is that we focused on offering an asynchronous API (although there are some synchronous alternative methods as well). Another example is that when setting the device&#8217;s tilt angle, a signal will be emitted when it has finished setting the angle, since it might be useful for some applications.</p>
<p>One of the purposes of having it written with GLib is the <a href="https://live.gnome.org/GObjectIntrospection" target="_blank">GObject Introspection</a> capability. This allowed us to include an <a href="https://gitorious.org/gfreenect/gfreenect/blobs/master/examples/testview.py" target="_blank">example application</a> that controls the various features of the Kinect and was written in Python effortlessly. A screenshot of this app is shown below:</p>
<p><a href="http://www.flickr.com/photos/joaquimrocha/6725239235/" title="GFreenectView Screenshot by Joaquim Rocha, on Flickr"><img src="http://farm8.staticflickr.com/7027/6725239235_48ffcd70cb.jpg" width="500" alt="GFreenectView Screenshot"></a></p>
<p>And that&#8217;s it! You can find the code for <a href="https://gitorious.org/gfreenect/gfreenect" target="_blank">GFreenect in Gitorious</a> (including <a href="http://people.igalia.com/elima/gfreenect/doc/0.1.2/" target="_blank">documentation for this 0.1.2 version</a>). Bear with us if you find some bugs, it is fresh out of the oven.</p>
<p>We hope you find GFreenect useful for your projects and please give us feedback if you find some issues or have any good suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2012/01/20/announcing-gfreenect/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>RPM packages of OCRFeeder for Fedora</title>
		<link>http://www.joaquimrocha.com/2011/12/21/rpm-packages-of-ocrfeeder-for-fedora/</link>
		<comments>http://www.joaquimrocha.com/2011/12/21/rpm-packages-of-ocrfeeder-for-fedora/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 17:01:39 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[ocr]]></category>
		<category><![CDATA[ocrfeeder]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1298</guid>
		<description><![CDATA[If you&#8217;re one of the people waiting for RPM packages of OCRFeeder for Fedora, rejoice! Juan, my friend and coworker at Igalia, has cooked an RPM spec and created an OCRFeeder repository for Fedora 15 and 16. To add this repository to Fedora 16 simply download this file and move it to /etc/yum.repo.list/. Alternatively you [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re one of the people waiting for RPM packages of <a href="http://live.gnome.org/OCRFeeder" target="_blank">OCRFeeder</a> for <a href="http://www.fedoraproject.org" target="_blank">Fedora</a>, rejoice!<br />
<a title="Juan Suarez" href="http://blogs.igalia.com/jasuarez/" target="_blank">Juan</a>, my friend and coworker at <a href="http://www.igalia.com" target="_blank">Igalia</a>, has cooked an RPM spec and created an <a href="http://download.opensuse.org/repositories/home:/jsuarezr:/OCRFeeder/" target="_blank">OCRFeeder repository for Fedora 15 and 16</a>.</p>
<p>To add this repository to Fedora 16 simply download <a href="http://download.opensuse.org/repositories/home:/jsuarezr:/OCRFeeder/Fedora_16/home:jsuarezr:OCRFeeder.repo" target="_blank">this file</a> and move it to <span style="color: #808080;">/etc/yum.repo.list/</span>.<br />
Alternatively you can download the RPMs directly from:<br />
<a href="http://download.opensuse.org/repositories/home:/jsuarezr:/OCRFeeder/Fedora_15/noarch/" target="_blank">OCRFeeder RPM for Fedora 15</a><br />
<a href="http://download.opensuse.org/repositories/home:/jsuarezr:/OCRFeeder/Fedora_16/noarch/" target="_blank">OCRFeeder RPM for Fedora 16</a></p>
<p><strong>Important:</strong> These Fedora packages haven&#8217;t been thoroughly tested and there might be tiny issues currently (like the icons not being installed in the right place) and I&#8217;m no longer using Fedora myself (I&#8217;ve switched to <a href="http://www.debian.org" target="_blank">Debian</a>) so please report any issues you might find.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/12/21/rpm-packages-of-ocrfeeder-for-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCRFeeder 0.7.7 released</title>
		<link>http://www.joaquimrocha.com/2011/12/10/ocrfeeder-0-7-7-released/</link>
		<comments>http://www.joaquimrocha.com/2011/12/10/ocrfeeder-0-7-7-released/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 16:12:20 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[ocr]]></category>
		<category><![CDATA[ocrfeeder]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1214</guid>
		<description><![CDATA[After more than 4 months, I am finally releasing OCRFeeder&#8216;s new version (its last release was in August, just before the DesktopSummit). The reason for the delay, apart from some vacation in Berlin and Portugal and being busy in Igalia, was that this release brings deep changes internally. The big issue The problem with developing [...]]]></description>
			<content:encoded><![CDATA[<p>After more than 4 months, I am finally releasing <a href="http://live.gnome.org/OCRFeeder" target="_blank">OCRFeeder</a>&#8216;s new version (its last release was in August, <a href="http://www.joaquimrocha.com/2011/08/05/ocrfeeder-0-7-6-and-desktopsummit-2011/" title="OCRFeeder 0.7.6 and DesktopSummit 2011" target="_blank">just before the DesktopSummit</a>).<br />
The reason for the delay, apart from some vacation in Berlin and Portugal and being busy in <a href="http://www.igalia.com" target="_blank">Igalia</a>, was that this release brings deep changes internally.</p>
<p><strong>The big issue</strong></p>
<p>The problem with developing such an application from scratch in just a few months and worrying about writing a thesis is that you don&#8217;t care much for design and performance. So from 2008 until now, OCRFeeder has suffered a big problem related to memory consumption: depending on the number of images loaded and their size, it would create a reviewer (this is what I call the place where you do stuff on the images) per image and those would remain in memory, eventually crashing.<br />
I assumed that since nobody complained about that for so long it was probably because people made a simpler usage of the application and didn&#8217;t use it for full books but now it seems that some institutions are interested in OCRFeeder and there have a been complaints and bugs filed (<a href="https://bugzilla.gnome.org/show_bug.cgi?id=637599" title="GNOME Bugzilla" target="_blank">gb#637599</a> and <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646605" title="Debian Bugzilla" target="_blank">db#646605</a>).</p>
<p>This was fixed by having only up to 5 instances of reviewers. When selecting a new image, it will drop the oldest reviewer and have this one added to the cache. It gets a bit slower to select a new image but the trade-off is worth IMHO. In future changes I&#8217;ll probably make the number of reviewers configurable in some way.<br />
Each of the content areas now also shares an editor instance instead of each one having a dedicated one.</p>
<p>I was able to load more than 500 images of ~4.5 Mb each and it was still usable so hopefully this will improve the experience for users who had these problems.</p>
<p><strong>Other changes</strong></p>
<p>Another change is that now OCRFeeder stores all its temporary files in a dedicated temporary folder under the system&#8217;s temporary folder (usually /tmp). By deleting this folder when the application quits it&#8217;s guaranteed that no temporary files will be left (as happened sometimes). Related to these changes, I&#8217;ve also decided to remove the possibility of choosing the temporary folder. Supposedly Python will already know what&#8217;s the system&#8217;s temporary folder and having such an option would make it look like Windows software from 1998.</p>
<p>As usual, some code cleaning and bug fixing was done and I would like to thank the awesome GNOME i18n team and everyone who sent their contributions.<br />
Thanks to my friend <a href="http://blogs.igalia.com/berto" target="_blank">Berto</a> you can also expect an OCRFeeder Debian package on a repository next to you soon.</p>
<p>For a more detailed list of changes, check out the <a href="http://ftp.gnome.org/pub/GNOME/sources/ocrfeeder/0.7/ocrfeeder-0.7.7.news" target="_blank">NEWS</a> file.</p>
<p><a href="http://download.gnome.org/sources/ocrfeeder/0.7/ocrfeeder-0.7.7.tar.xz" target="_blank">Source Tarball</a><br />
<a href="http://git.gnome.org/browse/ocrfeeder" target="_blank">Git</a><br />
<a href="https://bugzilla.gnome.org/enter_bug.cgi?product=ocrfeeder" target="_blank">Bugzilla</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/12/10/ocrfeeder-0-7-7-released/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>SeriesFinale for Harmattan (N9/N950)</title>
		<link>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/</link>
		<comments>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 23:58:12 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[hildon]]></category>
		<category><![CDATA[igalia]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seriesfinale]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1161</guid>
		<description><![CDATA[As promised before, here is the first release of SeriesFinale for MeeGo Harmattan. This summer Micke Prag, a fellow programmer from Sweden contacted me because he was starting a port of SF for Harmattan. By then I still didn&#8217;t have an N950 because of having missed the deadline for the first developers program. Later, when [...]]]></description>
			<content:encoded><![CDATA[<p>As <a title="SeriesFinale 0.6.9" href="http://www.joaquimrocha.com/2011/10/14/seriesfinale-0-6-9/" target="_blank">promised before</a>, here is the first release of <a title="SF info page" href="http://www.igalia.com/nc/work/labs/project/item/seriesfinale/" target="_blank">SeriesFinale</a> for <a href="http://en.wikipedia.org/wiki/MeeGo#MeeGo.2FHarmattan" target="_blank">MeeGo Harmattan</a>.</p>
<p>This summer Micke Prag, a fellow programmer from Sweden contacted me because he was starting a port of SF for Harmattan. By then I still didn&#8217;t have an <a title="N950 on Engadget" href="http://www.engadget.com/2011/06/21/nokias-n950-developer-meego-handset-gets-official-4-inch-displ/" target="_blank">N950</a> because of having missed the deadline for the first developers program. Later, when the second developers program was launched I managed to finally get one. At that point, even though I already had my <a href="http://www.samsung.com/global/microsite/galaxys/index_2.html" target="_blank">Samsung Galaxy S</a> (yes, with <a href="http://www.android.com/" target="_blank">Android</a>) I still wanted to have a port of SeriesFinale as I had received many emails asking for this port so I started from Micke&#8217;s code and finally here it is!</p>
<p><strong>The Harmattan port</strong></p>
<p><a title="SF first version for MeeGo by Joaquim Rocha, on Flickr" href="http://www.flickr.com/photos/joaquimrocha/6355673049/" target="_blank"><img class="alignright" src="http://farm7.static.flickr.com/6060/6355673049_1c9b7f585c.jpg" alt="SF first version for MeeGo" height="350" /></a></p>
<p>Maybe it is something obvious but this version is not written in <a title="PyGTK" href="http://www.pygtk.org/" target="_blank">PyGTK</a>/<a title="PyMemo" href="http://pymaemo.garage.maemo.org/" target="_blank">PyMaemo</a>. It uses part of the &#8220;old&#8221; Python backend that was changed to play well with the new UI code written in <a title="QML" href="http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeintroduction.html" target="_blank">QML</a>.</p>
<div>
This port&#8217;s code is a bit dirty by now and I&#8217;m sure there are bugs in this first version but at least it can be used and I didn&#8217;t want to make people wait much more. The support and feedback that SeriesFinale&#8217;s users have given me is amazing (some people even saying they still use the <a title="Nokia N900" href="http://en.wikipedia.org/wiki/Nokia_N900" target="_blank">N900</a> only for SF!), thank you all for it.<br />
My heart is still filled with GNOME/GTK+ love but QML is really impressive; there are some things I still need to spend some time with to figure out but I like how quick and flexible one can do stuff in QML.</div>
<div>
<p><strong>The OVI Store</strong></p>
<p>It was also the first time I published something on Nokia&#8217;s <a title="Nokia's Ovi Store" href="http://store.ovi.com/" target="_blank">Ovi Store</a> and the process took around 2 weeks before it finally got approved (it was rejected twice before due to weird stuff like &#8220;they&#8221; thinking <a title="Maemo Bugzilla" href="https://bugs.maemo.org/" target="_blank">bugs.maemo.org</a> was not a good place to report issues or the fact that an application that says it works only with English US is eligible only for the USA, not for all the countries&#8230;).</p>
<p><strong>The future</strong></p>
<p>I really like the <a title="N9" href="http://swipe.nokia.com/" target="_blank">N9</a>/N950. The user experience is something awesome and I believe this was the phone that could really compete with the iPhone and Android. Unfortunately <a title="Elopocalypse" href="http://www.engadget.com/2011/02/08/nokia-ceo-stephen-elop-rallies-troops-in-brutally-honest-burnin/" target="_blank">someone</a> at Nokia disagrees and the future of this incredible phone is doomed even though <a title="Thomas Perl on the N9 and the Lumia phones" href="http://thpmaemo.blogspot.com/2011/11/why-i-love-n9-and-things-i-didnt-know.html" target="_blank">Nokia&#8217;s alternative is not better</a>. Due to this mainly, I&#8217;m not using the N950 as my main phone. This and the fact that my personal time, in which I develop SF, is very limited, means that unless things change, I don&#8217;t know how much more releases I will do but I still wanted to add some cool features. It will probably depend again on the feedback and support.</p>
<p>Anyway here it is at an Ovi Store a few taps/swipes away and for free, as always (although I appreciate when someone buys me a beer <img src='http://www.joaquimrocha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ):</p>
<p style="text-align: center;"><a title="Get SeriesFinale from Ovi Store" href="http://store.ovi.com/content/216989" target="_blank"><img src="http://farm7.static.flickr.com/6050/6355639907_0922d93d0b.jpg" alt="Get SeriesFinale from Ovi Store" width="300" height="250" /></a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/11/18/seriesfinale-for-harmattan-n9n950/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>SeriesFinale 0.6.9</title>
		<link>http://www.joaquimrocha.com/2011/10/14/seriesfinale-0-6-9/</link>
		<comments>http://www.joaquimrocha.com/2011/10/14/seriesfinale-0-6-9/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 09:38:30 +0000</pubDate>
		<dc:creator>Joaquim Rocha</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[hildon]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seriesfinale]]></category>

		<guid isPermaLink="false">http://www.joaquimrocha.com/?p=1100</guid>
		<description><![CDATA[Yup, after some months, here is a new version of SeriesFinale. This new version doesn&#8217;t have many new features but brings an important one related to my previous blog post: the context menu. When long-pressing a show or a season, a dialog will be shown with some actions. On the show&#8217;s context menu (or context [...]]]></description>
			<content:encoded><![CDATA[<p>Yup, after some months, here is a new version of <a href="http://www.igalia.com/nc/work/labs/project/item/seriesfinale/" title="SeriesFinale" target="_blank">SeriesFinale</a>.</p>
<p>This new version doesn&#8217;t have many new features but brings an important one related to my previous blog post: <a href="http://www.joaquimrocha.com/2011/10/13/long-press-gtk-treeview-on-maemo/" title="Long press GTK+ TreeView on Maemo" target="_blank">the context menu</a>.<br />
When long-pressing a show or a season, a dialog will be shown with some actions. On the show&#8217;s context menu (or context dialog?), the user can update it, delete it, view its info or, more importantly, mark the next episode to watch as watched. On the season&#8217;s context menu, it can be deleted or, as many users have requested, mark all episodes.</p>
<p>Here are a couple of screenshots:</p>
<p><a href="http://www.flickr.com/photos/joaquimrocha/6243241154/" title="SF Context Menus Screenshots by Joaquim Rocha, on Flickr"><img src="http://farm7.static.flickr.com/6232/6243241154_83004ae25a.jpg" width="400" alt="SF Context Menus Screenshots"></a></p>
<p><a href="http://www.flickr.com/photos/joaquimrocha/6243241306/" title="SF Context Menus Screenshots by Joaquim Rocha, on Flickr"><img src="http://farm7.static.flickr.com/6232/6243241306_207fc7e4fc.jpg" width="400" alt="SF Context Menus Screenshots"></a></p>
<p>Of course that by only seeing the screenshots you don&#8217;t get the same feeling has when you quickly open the dialog and mark the next episode to watch so give it a try.<br />
It it already in Extras Testing and if it works well for you, please <a href="http://maemo.org/packages/package_instance/view/fremantle_extras-testing_free_armel/seriesfinale/0.6.9-1/" title="Vote for SF 0.6.9" target="_blank">vote for it to get into Extras</a>.</p>
<p><strong>The Future</strong></p>
<p>This summer I bought myself an Android phone. That&#8217;s right, because of pure curiosity and with the help of <a href="http://www.engadget.com/2011/02/08/nokia-ceo-stephen-elop-rallies-troops-in-brutally-honest-burnin/" title="the worst decision Nokia did this year" target="_blank">Nokia&#8217;s decisions regarding MeeGo</a>, I bought a Samsung Galaxy S.<br />
I&#8217;ve been using it ever since as my main phone but I didn&#8217;t want to leave SF unattended yet. There are a couple of things more that I want to do and I&#8217;ll keep an eye on the download statistics to try to guess how many people is still interested in this app.</p>
<p>I haven&#8217;t yet found a full replacement for it on Android. I&#8217;ve installed a few apps that either don&#8217;t work well, require login or are bloated with features making it harder to use so I don&#8217;t know if I&#8217;ll end up contributing to some FOSS one or developing an official port of SF. Do you think that developing an official version for Android makes sense?<br />
Also, people have asked me for a Symbian and Blackberry versions of it but I just don&#8217;t own any phone with these systems.</p>
<p>As for SF on the N9/N950, a release <a href="http://twitpic.com/6xpqkb" title="screenshot of SF for MeeGo" target="_blank">could be out there soon</a> so stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joaquimrocha.com/2011/10/14/seriesfinale-0-6-9/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

