<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Claudio Saavedra's ChangeLog</title>
    <link>http://www.gnome.org/~csaavedra/news.html</link>
    <description>Claudio's day to day</description>

    <copyright>2009 Claudio Saavedra</copyright>
    <managingEditor>claudio@codemonkey.cl</managingEditor>
    <webMaster>claudio@codemonkey.cl</webMaster>
    <language>en</language>
    <lastBuildDate>Wed, 04 Nov 2009 15:04:00 +0200</lastBuildDate>

    <item>
      <title>Wed 2009/Nov/04</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-11.html#D04</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-11.html#D04</guid>
      <pubDate>Wed, 04 Nov 2009 14:59:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		I read the other day in a Finnish newspaper that the
		<a
		href="http://www.helsinkitimes.fi/htimes/domestic-news/general/8577-student-union-names-best-international-teachers.html">Chilean
		musicologist Alfonso Padilla was awarded by
		the Student Union of the University of Helsinki as the
		best international teacher</a>.
	    </p>

	      <p>
		Of course, this is not very relevant to be in the
		Chilean news. We all care much more about
		Pellegrini's career in Real Madrid, and whether he is
		fired or not after every match.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Tue 2009/Nov/03</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-11.html#D03</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-11.html#D03</guid>
      <pubDate>Tue, 03 Nov 2009 14:47:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Arrived in Helsinki yesterday evening after
		a rocking Igalia Summit near Padr&oacute;n
		in Galicia. Unfortunately, my luggage didn't
		make it with me.
	    </p>

	      <p>
		This is the third time in a row that my
		luggage doesn't make it with me (same happened
		when I came back in August after spending
		two months in A Coru&ntilde;a and on my trip to
		Amsterdam for the Maemo Summit in October).
		Downside is not having things I need with me,
		positive side is that it's comfortable to
		get your luggage delivered to you instead
		of having to carry it all the way from
		the airport. Of course it would be nice
		if this would be predictable, in order to
		have the important stuff in the hand luggage
		instead.
	      </p>

	      <p>
		Hopefully, it will arrive safely as it did
		the other two times.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Wed 2009/Oct/28</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-10.html#D28</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-10.html#D28</guid>
      <pubDate>Wed, 28 Oct 2009 19:19:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
                Do you see anything harmful in this chunk of code? You can read
                the GTK+ docs but please don't look at the implementation of the
                called methods.
	    </p>

              <p>
                <pre><code>GtkTreePath *path;
GtkTreeIter filter_iter;

for ( /* an iteration on all iters in a GtkTreeModel */) {
  path = gtk_tree_model_get_path (base_model, &amp;iter);
  gtk_tree_model_filter_convert_child_iter_to_iter (filter,
                                                    &amp;filter_iter, &amp;iter);
  if (gtk_tree_selection_iter_is_selected (selection, &amp;filter_iter)) {
    /* do something with path */
  }
}</pre></code>
              </p>
              <p>
                The code looks harmless, but it's not really. Looking at the
                implementation of
                <tt>gtk_tree_model_filter_convert_child_iter_to_iter()</tt>
                you'll see that the actual conversion is done by obtaining the
                <tt>GtkTreePath</tt> for the base model iterator and
                calling <tt>gtk_tree_model_filter_convert_child_path_to_path()</tt>.
                Similarly, <tt>gtk_tree_selection_iter_is_selected()</tt>
                internally calls <tt>gtk_tree_selection_path_is_selected()</tt>.
                So, you are <tt>calling gtk_tree_model_get_path()</tt>
                <em>three times</em> in total when you only need to do it once.
                Just use the <tt>GtkTreePath</tt> equivalents.
              </p>

              <p>
                Is this obvious for everyone but me? I mean, without looking
                at an oprofile callgraph and/or the GTK+ sources. I am not so
                sure.
              </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Fri 2009/Oct/02</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-10.html#D02</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-10.html#D02</guid>
      <pubDate>Fri, 02 Oct 2009 18:55:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		One thing that the N900 is missing is a way to
		scrobble the listening habits to
		<a href="http://www.last.fm">last.fm</a>. Since I am
		sort of addict to last.fm scrobbling, I couldn't wait
		for someone else to do it and wrote myself a last.fm
		scrobbler for mafw, the <a
		href="https://garage.maemo.org/projects/mafw/">Media
		Application Framework</a> used since Fremantle in
		<a href="http://www.maemo.org">Maemo</a>.
	    </p>

	      <p>
		After a few weeks smoke testing it and fixing things
		here and there, I released today <a
		href="https://garage.maemo.org/pipermail/mafw-lastfm-devel/2009-October/000000.html">mafw-lastfm
		0.0.1</a>. This is the initial
		release and it does the basic stuff quite well:
		playing-now status and scrobbling. It has several
		rough edges but it was working good enough for me not
		bother to work on them.  Releasing, I guess, is a good
		way to push me to do it, when anyone complains.
	      </p>

	      <p>
		The <a href="http://gitorious.org/mafw-lastfm">git
		repository</a> is in gitorious, there's a <a
		href="https://garage.maemo.org/projects/mafw-lastfm">garage
		page</a>
		with some resources for those curious, and I pushed
		<a
		href="http://repository.maemo.org/extras-devel/pool/fremantle/free/m/mafw-lastfm/">binary
		packages</a> to Fremantle's <a
		href="http://repository.maemo.org/extras-devel/dists/fremantle/">extras-devel
		repository</a>. Happy scrobbling!
	      </p>
	  </li>

	  <li>
	    <p>
		In August I took a few weeks off from work, and spent
		a wonderful time with Maria in Paris and
		Fontainebleau, in France. Paris is a wonderful city
		but it has just too many things to see and do, so you
		can easily go back home needing holidays from your
		holidays.  To avoid that, we spent several days in the
		small town of Fontainebleau, around an hour south from
		Paris. The town is quite small but charming anyway,
		life is way more relaxed, and it served its purpose of
		giving us some rest from the crazy Paris experience.
	      </p>

	      <p>
		The crazy Champs-&Eacute;lys&eacute;es:
	      </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3942363498/" title="traffic at les champs-élysées by csaavedra, on Flickr"><img src="http://farm3.static.flickr.com/2605/3942363498_3519258871.jpg" width="500" height="333" alt="traffic at les champs-élysées" /></a>
	      </p>

	      <p>
		One of the lovely <em>fontaine Wallace</em>, decorating many corners of Paris:
	      </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3844897415/" title="fontaine wallace by csaavedra, on Flickr"><img src="http://farm4.static.flickr.com/3521/3844897415_e8f3955d7a.jpg" width="500" height="333" alt="fontaine wallace" /></a>
	      </p>

	      <p>
		A random restaurant in Fontainebleau:
	      </p>

	      <p><a href="http://www.flickr.com/photos/csaavedra/3956131705/" title="restaurant at the corner by csaavedra, on Flickr"><img src="http://farm3.static.flickr.com/2637/3956131705_051ef75e08.jpg" width="500" height="333" alt="restaurant at the corner" /></a>
	      </p>

	      <p>
		Yesterday, I managed to finish uploading some of the pictures
		from <a
		href="http://www.flickr.com/photos/csaavedra/sets/72157622110203658/">Paris</a>
		and <a
		href="http://www.flickr.com/photos/csaavedra/sets/72157622439234916/">Fontainebleau</a>
		to flickr. The quality of these proves that I still
		have a lot to learn about reflex cameras.
	      </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Thu 2009/Sep/10</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-09.html#D10</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-09.html#D10</guid>
      <pubDate>Thu, 10 Sep 2009 23:27:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		<a
		href="http://zagadka.vm.bytemark.co.uk/magit/">magit</a>
		is one of those gems that one always discovers late,
		and then regrets not having started using earlier. If
		you are an emacs and git user, this is what you are
		missing to get those perfect commits.
	    </p>
	  </li>

	  <li>
	    <p>
		<a
		href="http://www.quepasa.cl/articulo/3_724_9.html">Wonderful
		article on Ricardo Baeza R.</a>, my Professor for
		Applied Math and Linear Algebra back in the Facultad,
		awarded now with the Chilean National Prize for Exact
		Sciences 2009.
	    </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Thu 2009/Aug/27</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-08.html#D27</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-08.html#D27</guid>
      <pubDate>Thu, 27 Aug 2009 14:13:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		So, now that <a href="http://maemo.nokia.com/">Maemo
		5</a> has been officially launched and the <a
		href="http://maemo.nokia.com/n900/">N900 phone</a> has
		been unveiled I guess now I can tell my parents what I
		was doing in Finland.
	    </p>

	      <p>
		<img alt="Nokia N900"
		class="screenart" src="http://maemo.nokia.com/img/device.png" />
	      </p>

	      <p>GTK+, GNOME, and hildon going mainstream. This is certainly
		an exciting time to be around :)
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Sat 2009/Aug/01</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-08.html#D01</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-08.html#D01</guid>
      <pubDate>Sat, 01 Aug 2009 14:53:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		I've been neglecting this corner lately, so I'll try to give a
		quick summary of what has been going on lately.
	    </p>
	  </li>

	  <li>
	    <p>
		I've spent the last month in A Coru&ntilde;a. Finally sharing
		a flat with two mates and two cats. I seem to have developed
		some kind of allergy to two of them -- I still can't figure out
		whether it's the cats or the flatmates :)
	    </p>
	  </li>

	  <li>
	    <p>
		Weekends since in A Coru&ntilde;a have been pretty active,
		mostly thanks to the kind Ant&iacute;a, who has been showing
		me the wonders of Galicia. A few weekends ago, we travelled
		through	Vimianzo, Camari&ntilde;as, Cabo Vil&aacute;n, and the
		Praia do Lago to end up at the festival <a
		href="http://www.culturaquente.com/en">Cultura Quente
		'09</a> in Caldas de Reis, where among others,
		<a href="http://en.wikipedia.org/wiki/The_Wedding_Present">The
		Wedding Present</a> was playing.
	    </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3713732203/" title="Faro Vilán by csaavedra, on Flickr"><img src="http://farm4.static.flickr.com/3520/3713732203_5eaf750a0a.jpg" width="500" height="375" alt="Faro Vilán" /></a>
	      </p>
	  </li>

	  <li>
	    <p>
		Last weekend, was the time for the <em>Festas do Apostol</em>,
		in Santiago de Compostela. I met a good bunch of nice people
		on the travel there, enjoyed the fireworks <em>burning</em>
		the Catedral de Santiago, and the tons of bands playing at
		the festival. The <em>Festas do Apostol</em> seem to be
		very important and one of the biggest touristic attractions
		in Galicia, so I'm glad to have been here in time.
	    </p>

	      <p>
		On Saturday, I was planning to attend the religious
		service at the Catedral, including the traditional <a
		href="http://en.wikipedia.org/wiki/Botafumeiro">Botafumeiro</a>
		swinging tradition, but the sleeping conditions in the
		tend didn't allow proper sleep and I overslept and didn't
		attend it in the end.
	      </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3758648735/" title="Camp Place for FestiGal by csaavedra, on Flickr"><img src="http://farm4.static.flickr.com/3471/3758648735_d04e5de619.jpg" width="500" height="375" alt="Camp Place for FestiGal" /></a>
	      </p>

	      <p>
		The weekend continued with a trip through several
		small towns and beaches on the Atlantic coast,
		including Ribeira, Porto do Son (where the great <a
		href="http://www.soncelta.com/">SonCelta</a> festival
		was taking place), Noia, and the Igrexa at the Rio San Xusto.
		Galicia is full of beautiful towns and beaches and I guess it
		would take a lifetime to know them well enough.
	      </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Thu 2009/Jul/09</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-07.html#D09</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-07.html#D09</guid>
      <pubDate>Thu, 09 Jul 2009 14:51:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Yesterday, Berto and I presented the Hildon 2.2 toolkit, during
		the mobile track of GUADEC at the Gran Canaria Desktop Summit. The
		slides for our talk:
	    </p>

	    <p>
		<a href="http://www.gnome.org/~csaavedra/documents/gcds-2009/hildon2.2-gcds-2009.pdf"><img src="http://www.gnome.org/~csaavedra/images/hildon2.2-gcds-2009.png" /></a>
	    </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Mon 2009/Jul/06</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-07.html#D06</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-07.html#D06</guid>
      <pubDate>Mon, 06 Jul 2009 14:58:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		And the party has already started:
	    </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3693724948/" title="Gran Canaria Desktop Summit by csaavedra, on Flickr"><img src="http://farm4.static.flickr.com/3644/3693724948_fffc00947c.jpg" width="500" height="375" alt="Gran Canaria Desktop Summit" /></a>
	      </p>

	      <p>
		Igalia will be sponsoring the GNOME Party tonight. If we
		are lucky enough, we will have a few music instruments
		for a jam session. Check <a
		href="http://blogs.igalia.com/juanjo/2009/07/05/gnome-party-sponsored-by-igalia-gcds/">Juanjo's blog</a>
		for more details.
	      </p>
	  </li>

	  <li>
	    <p>
		If you have <a
		href="http://www.grancanariadesktopsummit.org/">GCDS</a>
		pictures, add them to the
		<a href="http://www.flickr.com/groups/gcds">Gran
		Canaria Desktop Summit flickr group</a>.
	    </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Fri 2009/Jul/03</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-07.html#D03</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-07.html#D03</guid>
      <pubDate>Fri, 03 Jul 2009 10:39:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		As all the other cool kids in town, I'm flying to <a
		href="http://en.wikipedia.org/wiki/Las_Palmas_de_Gran_Canaria">Las
		Palmas de Gran Canaria</a>, to attend the <a
		href="http://www.grancanariadesktopsummit.org/">Gran
		Canaria Desktop Summit</a>. In practical terms, this
		means GUADEC, GUADEC
		Hispana, Akademy, and, eventually, other
		conferences/activities that might be arranged during
		the big event.
	    </p>

	      <p>
		Partly because of laziness, partly because of having really busy
		weeks lately (both work and life-wise), I won't be presenting
		anything during GUADEC Hispana, although I would have liked to.
		However, Berto and I will be giving a
		<a href="http://www.grancanariadesktopsummit.org/node/213">talk</a>
		on the new <a
		href="https://garage.maemo.org/projects/hildon">Hildon
		toolkit</a> for Maemo 5, during the <a
		href="http://www.grancanariadesktopsummit.org/node/271">Mobile
		Day</a>. Besides introducing the new widgets and UI style for
		Fremantle, we will also talk about the difficulties we have
		been facing during this major revamp of the toolkit, which will
		hopefully serve to clarify some of the doubts spread
		around lately.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Wed 2009/Jul/01</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-07.html#D01</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-07.html#D01</guid>
      <pubDate>Wed, 01 Jul 2009 17:07:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		<a href="http://www.joaquimrocha.com/">Joaquim</a>,
		one of our new superheroes at Igalia, has been
		<a
		href="http://www.joaquimrocha.com/2009/07/01/eye-of-gnome-for-maemo/">porting
		the Eye of GNOME to Maemo 5</a> using the Fremantle
		Beta SDK and the widgets in the new Hildon toolkit.
	    </p>

	      <p>
		Joaquim's work is a live example of the look 'n feel
		of Fremantle-style applications.  I'd recommend to anyone
		writing or porting applications for Fremantle to have
		a look at his screencast and, of course, the application.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Wed 2009/May/13</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-05.html#D13</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-05.html#D13</guid>
      <pubDate>Wed, 13 May 2009 01:09:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Now I start to wonder whether we should have a Canarias City
		Run during GUADEC (cf.
		<a href="http://www.gnome.org/~csaavedra/news-2009-05.html#D10">[1]</a>,
		<a href="http://blogs.gnome.org/bolsh/2009/05/11/run-a-marathon-check/">[2]</a>,
		<a href="http://mces.blogspot.com/2009/05/marathon.html">[3]</a>,
		<a href="http://damino.ca/?p=138">[4]</a>).
	    </p>

	      <p>
		 Jokes aside, during conferences and
		travels it's always easy to break the training routine (unless
		you are <em>really</em> into it), so having an excuse to
		actually run, let's say, 10k would probably be a good idea.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Tue 2009/May/12</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-05.html#D12</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-05.html#D12</guid>
      <pubDate>Tue, 12 May 2009 00:39:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		I just noticed that the examples and documentation packages
		for libhildon are not present in the Maemo 5 SDK Beta. If you
		want to have a look at the API using Devhelp or want to
		toy with the examples, I'd recommend you to either 1)
		get the source package and build it (good) or 2) clone
		the <a href="http://git.maemo.org/projects/hildon">git
		repository</a> and build it from there (better).
	    </p>

	      <p>
		At some point in the very near future, I'd like to
		start publishing updated tarballs regularly in the
		garage page, but at the moment a few (probably quite
		trivial) issues prevent us from doing it. If I find a
		bit of time this week, I might fix them. If you want
		to help, just clone the repo, run <tt>make
		distcheck</tt> and see for yourself.  The <a
		href="https://garage.maemo.org/mailman/listinfo/hildon-devel">mailing
		list</a> is waiting for your patches.
	      </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Sun 2009/May/10</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-05.html#D10</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-05.html#D10</guid>
      <pubDate>Sun, 10 May 2009 22:48:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Yesterday was the <a
		href="http://www.helsinkicityrun.fi/eng/index.html">1/2
		Marathon: Helsinki City Run</a>.  I took part in it
		and learned the hard way what it means to run more
		than 20k (is there an easy way?).
	    </p>

	      <p>
		Originally, I had been running since January in the cold Helsinki,
		around <em>T&ouml;&ouml;l&ouml;nlahti</em>, sometimes
		with around -10⁰C, with icy and slippery roads, starting from around 5k to
		15k in my best moment. Motivated by Dirk-Jan and Ann-Christin, I had
		the idea to run the Helsinki City Run but due to external factors I wasn't
		sure if I would even be in Helsinki for this date and didn't sign up.
	      </p>

	      <p>
		A bit demotivated when the deadline passed, and affected by a
		flu during the last two weeks, I had stopped my running routine,
		waiting to feel better. In the meantime, Iv&aacute;n recommended
		me a book by the Japanese novelist
		<a href="http://en.wikipedia.org/wiki/Haruki_Murakami">Haruki Murakami</a>,
		<em>What I talk about when I talk about running</em>. In this book,
		Murakami writes about his experience as a long-distance runner, his
		motivations to run, and how running helped him to become the writer he is.
		Certainly an interesting read for any runner (and probably even for non runners),
		that somehow managed to rise my motivation to run. But still, running the City Run
		wouldn't be possible.
	      </p>

	      <p>
		But thanks to one of these great coincidences, things turned out
		in a favorable direction. On Friday afternoon I got a call from
		Ann-Christin, telling me that she was picking up the runner's pack
		from the Olympic Stadium and had found out that, since Marius wouldn't run,
		it was possible for me to take his place. After thinking for 3 seconds
		about how lazy I had been in the last weeks and doubting, I went crazy and
		told her to sign me up. Went home, had spaghetti for
		dinner, and started drinking water as crazy. I would finally run the HCR.
	      </p>

	      <p>
		Saturday turned up to be a cold, rainy, and windy day. Nervous
		about the race I didn't manage to sleep well enough but as time
		of the race approached, I started to feel full of energy. Drank
		lots of water and ate mostly cereals and bread up to two hours
		before the race, and got to the stadium. I was certainly excited
		about all this!
	      </p>

	      <p>
		The competition had about 11.000 participants. The Olympic stadium,
		although windy and cold, was looking beautiful. Runners of all
		ages, colors, and shapes were warming up all around the place.
		Adrenalin could just go higher as the start approached. And once
		we started running I couldn't feel happier. Of course, I had no
		idea how painful this would turn to be.
	      </p>

	      <p>
		The first 10k were absolutely fine. The circuit went along
		my beloved <em>T&ouml;&ouml;l&ouml;nlahti</em>, and it felt like
		home while I tried to make my way between all the people.
		Between 10k and 12k I was still feeling things to go well, but entering
		the 13k was the beginning of the real race. Starting from there, it only
		got more and more difficult. With each kilometer pain in my legs increased
		and feet friction started to bug me. Hydration and breathing were however
		fine, so I knew that it would only be a matter of pushing enough and I would
		make it. But, of course, this belief decreased as the distance completed increased.
	      </p>

	      <p>
		After 17k, pain was starting to get really annoying. Being the first time
		I ran more than 15k this was completely new and it was hard to know whether
		I would get all the cramps at some point or whether I could even walk
		to the finish line. Of course, I didn't want to retire nor walk the last
		kilometers, so I just kept pushing, and pushing.
	      </p>

	      <p>
		When we finally reached the 20k mark, just around the Olympic Stadium,
		I knew I would make it, even when my legs were almost not responding.
		The last few hundred meters before entering the stadium are basically
		a small uphill. Were these actually more than 100mt? I don't even know,
		but these certainly felt like a few km. People were just walking at
		that point, but I wouldn't give in. I had managed to run all the way
		there, no way I would walk this bloody hill.
	      </p>

	      <p>
		Entering the stadium was probably one of the most exciting moments.
		For whatever reason, entering the running track brought all
		the energy back and I ran through the finish line with a
		smile on my face. An official time of 2:25:00 for the 21,097 m
		that I thought it would be impossible to achieve. I got the medal,
		some bananas, and water. Found a warm spot where to cover me
		with my towel, pullover, and jacket, and met Luc, Dirk-Jan,
		Ann-Christin and the other runners. Champagne to celebrate,
		and then the real pain started.
	      </p>

	      <p>
		Looking back at yesterday's experience and how good I have felt since,
		I have to say that running is now definitively something I'll be
		doing more seriously. I know very well that 2:25:00 is not a time
		to feel proud of, but given the circumstances, I am more than happy with it.
		I'll probably start running shorter distances,
		since I would like to start swimming as well, but running a half
		marathon under 2 hours is going to be the goal for the next season.
		Let's see how it goes.
	      </p>
	      <p><a
	      href="http://www.flickr.com/photos/csaavedra/3520031902/"
	      title="9878 by csaavedra, on Flickr"><img
	      src="http://farm4.static.flickr.com/3625/3520031902_215e868bde.jpg"
	      width="500" height="375" alt="9878" /></a></p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Wed 2009/Apr/29</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-04.html#D29</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-04.html#D29</guid>
      <pubDate>Wed, 29 Apr 2009 10:10:00 +0300</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		I finally took the three seconds I needed to copy my
		blogging script to my home laptop, which means that I
		should be writting a bit more frequently from now on.
	    </p>
	  </li>

	  <li>
	    <p>
		Yesterday, the <a
		href="http://maemo.org/development/sdks/maemo_5_beta_sdk/">Maemo
		5 SDK Beta</a> was <a
		href="http://maemo.org/development/sdks/maemo5_beta_release_notes/">released</a>. From
		the Application Framework team perspective, I can say
		that it's been a <em>lot</em> of hard work to get it
		to the state in which is now, but there's still plenty
		of work to do.
	    </p>

	      <p>
		But there are more good news, yes sir. In a joined
		effort of Nokia and Igalia, we've finally convinced
		the right people to move libhildon, the GTK+ widgets
		library for Maemo, to <a
		href="https://git.maemo.org/projects/hildon/gitweb?p=hildon;a=summary">a
		public repository</a>. Not only
		that, we also have a <a
		href="https://garage.maemo.org/projects/hildon">garage
		project page</a> with a
		mailing list where we expect to discuss with
		application developers from the community about the
		status of the library and get feedback, patches, and
		interesting discussion.
	      </p>

	      <p>
		So, if you are a Maemo developer and want to join the
		fun, be at the bleeding edge before Maemo 5 is
		released, feel free to <a
		href="https://garage.maemo.org/scm/?group_id=939">clone
		the git repository</a>, <a
		href="https://garage.maemo.org/mailman/listinfo/hildon-devel">join
		our mailing list</a>, <a
		href="https://bugs.maemo.org/">report bugs</a>, and in
		the end, help us make libhildon 2.2 the best release
		ever.
	      </p>
	  </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Wed 2009/Mar/18</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-03.html#D18</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-03.html#D18</guid>
      <pubDate>Wed, 18 Mar 2009 12:17:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Last night was <a
		href="http://en.wikipedia.org/wiki/Jethro_Tull_(band)">Jethro
		Tull</a>'s 40th anniversary concert
		in Helsinki. Marius, Eugene, and I attended and were delighted
		with the performance. 40 years is a log time and these guys
		are still rocking!
	      </p>
	      <p><a
	      href="http://www.flickr.com/photos/csaavedra/3363363533/"
	      title="thick as a brick by csaavedra, on Flickr"><img
	      src="http://farm4.static.flickr.com/3654/3363363533_f6602e697b.jpg"
	      width="500" height="375" alt="thick as a brick" /></a>
	      </p>
	  </li>

	  <li>
	      <p>
		A few weeks ago, <a
		href="http://en.wikipedia.org/wiki/Vicente_Amigo">Vicente
		Amigo</a>, a flamenco guitarist from C&oacute;rdoba
		played in Espoo. Maria and I attended and the
		performance was <em>impeccable</em>.  He even had an
		amazing <em>bailaor</em> dancing for some of the
		songs. Awesome.
	      </p>
	    </li>

	  <li>
	    <p>
		On a different note, since my university decided to
		outsource the email service to Windows Live@Edu (a
		service provided by Microsoft) and I am not willing to
		activate it, I am not getting any emails to my account
		in <tt>@alumnos.utalca.cl</tt>. Please remove this
		from your address book.
	    </p>
	    </li>
	  </ul>
]]></description>
    </item>

    <item>
      <title>Tue 2009/Feb/24</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-02.html#D24</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-02.html#D24</guid>
      <pubDate>Tue, 24 Feb 2009 15:18:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		On my trip to Chile, last November, I bought a small
		bunch of books from the Latin American authors I've
		been interested to read for a while but never
		managed. During the idle time in A Coru&ntilde;a
		(which was much more than what I would normally like),
		the vacations in Germany, and now in the Helsinki
		winter, I managed to read them almost all.
	    </p>

	      <p>
		One of the most interesting ones was <em>El Roto</em>,
		by Joaqu&iacute;n Edwards Bello. This novel from the
		beginning of the XX century describes in a very direct
		way the Chilean society and the enormous social
		differences (something that unfortunately is still a
		problem), while criticizing the role the Catholic
		Church had on this. It is not a big surprise that this
		book was censured on its first publications, in times
		when the Church had a huge influence in the Chilean
		society.
	      </p>

	      <p>
		Also read <em>Llamadas Telef&oacute;nicas</em>, by
		Roberto Bola&ntilde;o.  The short stories are quite
		interesting to read, nothing really brilliant, but
		somehow the writing style of Bola&ntilde;o caught me.
		Most of the main characters in these stories share an
		inability to remember somewhat important details on what
		they are telling, so phrases like "she told me her last words,
		or maybe not really her last words but something important, the
		point is that I don't remember anymore"	are quite common. I wonder if
		that's a reflection of Bola&ntilde;o's personality.
	      </p>

	      <p>
		Anyway, I also read a couple of compilations by Cort&aacute;zar
		(<em>Bestiario</em> and <em>Todos los fuegos el fuego</em>),
		and I'm currently reading a compilation of poems by Nicanor Parra
		and Vargas Llosa's <em>La Fiesta del Chivo</em>. It had been a while
		since I last felt so passionate about reading, so that partly explains
		why I've been a bit away from computers in my free time.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Thu 2009/Feb/12</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-02.html#D12</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-02.html#D12</guid>
      <pubDate>Thu, 12 Feb 2009 12:41:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		On Monday, I came back from Brussels after FOSDEM '09. This
		was the first time I attended this event and I am certainly
		impressed by the huge amount of people who gathers during
		these two days. Not only I met many old GNOME friends,
		but I also got to know many fellow hackers that I had
		worked with but never meet before. Pretty cool.
	    </p>

	      <p>
		I attended the talks in the GNOME, Crossdesktop, Mozilla,
		and Embedded developer rooms. It was a good opportunity
		to know a bit more about many different projects that I
		unfortunately haven't managed yet to try on my own but
		interest me in different ways (like nevimer, rygel, and
		all the stuff around geoclue and geolocation). I think now
		I have more reasons to play with them, when I finally get
		a bit of extra energy.
	      </p>

	      <p>
		One special thing of this FOSDEM was that, finally, Lucas,
		Felix, and I were in the same event, meaning that the whole
		current Eye of GNOME team got to finally meet. It was the first
		time that Felix attended an event involving GNOME people, so
		Lucas and I were introducing him to some of the guys.
		Jokes here and there, we could realize how well defined the
		roles in our team are: Felix does all the hardcore work, I do
		the releases, and Lucas gets the all the credits as the
		maintainer (partly a joke, partly true, since lately Felix
		has been really rocking on making eog pretty rock solid. Dude,
		you rock!). We discussed some of the things we would like
		to do in the near future. Somehow I feel an extra motivation
		after this meeting, so I will be trying to summarize
		these points and what we agreed and mail them to the
		eog mailing list. If you are interested, please join (and poke
		me with a stick if I take too long to write this mail down).
	      </p>

	      <p>
		Other cool thing that happened was to meet Jorge Bustos,
		a Chilean friend from my times in the Universidad de
		Talca, who is currently working in Madrid with the
		people from Libresoft. We randomly met in one of the
		corridors and the expression of surprise of both of us
		was just amazing. There are not that many Chileans abroad
		working in FLOSS related projects, and when it's about
		a friend, this is a one in a million coincidence (although
		I have to say that I also met another Chilean, who works
		for Nokia/Trolltech, and also Duncan Mac-Vicar from the
		Kopete/Yast fame was around).
	      </p>

	      <p>
		In general, a nice experience. I only wish the schedule
		wasn't so packed and Belgian beer wasn't that good, but
		that's just complaining for free.
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Sat 2009/Jan/17</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-01.html#D17</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-01.html#D17</guid>
      <pubDate>Sat, 17 Jan 2009 12:48:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Thanks to the kind support of <a
		href="http://www.igalia.com">Igalia</a>, I'm going to
		<a href="http://www.fosdem.org">FOSDEM</a> this
		year. I've never been in Belgium, so this will be an
		interesting trip. Of course, many friends will be
		there, so it's gonna be a good opportunity to catch up
		with all of them.
	    </p>

	      <p>
		<a href="http://www.fosdem.org"><img
		src="http://www.fosdem.org/promo/going-to" alt="I’m
		going to FOSDEM, the Free and Open Source Software
		Developers’ European Meeting" /></a>
	      </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Sat 2009/Jan/10</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-01.html#D10</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-01.html#D10</guid>
      <pubDate>Sat, 10 Jan 2009 10:08:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	    <p>
		Felix did the final work to <a
		href="http://bugzilla.gnome.org/show_bug.cgi?id=559500">remove
		the Eye of GNOME dependency on libgnome</a>. Great
		work, dude!
	    </p>
	  </li>
	</ul>
]]></description>
    </item>

    <item>
      <title>Sun 2009/Jan/04</title>
      <link>http://www.gnome.org/~csaavedra/news-2009-01.html#D04</link>
      <guid>http://www.gnome.org/~csaavedra/news-2009-01.html#D04</guid>
      <pubDate>Sun, 04 Jan 2009 22:04:00 +0200</pubDate>
      <description><![CDATA[
	<ul>
	  <li>
	      <p>
		Vacations ended up being really cool, in spite of
		having lost the initial connections and having had to
		spend the night in a scary terminal of
		Berlin-Tegel. That night ended up being really funny,
		as I met some backpackers in a similar situation and
		realized that getting stuck on a terminal is a
		fundamental part of life. I decided that, later at
		some point, I will take a few months to backpack the
		world that I still don't know.  Then, I'm sure I will
		find my Tegel experience just irrelevant.
	      </p>

	      <p>
		I spent Christmas in Zuschendorf, at Marie's
		parents. This was the most German Christmas I've
		experienced ever, with <a
		href="http://en.wikipedia.org/wiki/Christmas_pyramid">pyramids</a>,
		<a
		href="http://en.wikipedia.org/wiki/R%C3%A4uchermann">R&auml;ucherm&auml;nner</a>,
		<a
		href="http://en.wikipedia.org/wiki/Kl%C3%B6%C3%9Fe">Kl&ouml;sse</a>,
		beer, and so on. I even tried ice skating and proved
		to be completely useless for it. I should definitively
		try again here.
	      </p>
	      <p>
	      <a href="http://www.flickr.com/photos/csaavedra/3141124724/" title="lonely trees by csaavedra, on Flickr"><img src="http://farm4.static.flickr.com/3260/3141124724_4083e098a3.jpg" width="500" height="375" alt="lonely trees" /></a>
	      </p>

	      <p>
		Later, Prague. Francisco, Edgardo and I went for a few
		days to the Czech capital. I enjoyed once again the
		delicious Czech food and beer. We took a few walks
		through the typical places, and made lots of
		pictures. Weather was nice: although it was always
		under 0 degrees, we didn't see a cloud during the
		three days. Not bad.
	      </p>

	      <p>
		<a href="http://www.flickr.com/photos/csaavedra/3166025367/" title="first no cliche guard picture ever in the prague castle by csaavedra, on Flickr"><img src="http://farm2.static.flickr.com/1098/3166025367_61a48fd0d3.jpg" width="500" height="375" alt="first no cliche guard picture ever in the prague castle" /></a>
	      </p>

	      <p>
		For new year, we traveled to Berlin &ndash;the good thing
		of Dresden is that you can reach many interesting
		cities in less than two hours&ndash; and met other Chilean
		DAAD scholars. We made it through the crowd in the
		<em>Strasse des 17. Juni</em> until the
		<em>Brandenburger Tor</em>, and enjoyed the fireworks
		and party afterward. It was really cold (probably
		around -5 or -7 degrees), but <em>Gl&uuml;hwein</em>,
		continuous movement, and dancing stopped us from
		freezing.
	      </p>

	      <p>
		<a
		href="http://www.flickr.com/photos/csaavedra/3168046540/"
		title="tor by csaavedra, on Flickr"><img
		src="http://farm2.static.flickr.com/1073/3168046540_ce6f130dc0.jpg"
		width="500" height="375" alt="tor" /></a>
	      </p>

	      <p>
		Then I spent the days after walking around
		Berlin-Mitte and Berlin-Kreuzberg. There is quite a
		lot to see, and I definitively will need to visit the
		city again, as time and energy weren't enough to go
		all the places I wanted to see. At last, I was so exhausted
		because of this trip, that I ended up sleeping more
		than 12 hours a day during the last three days. Crazy.
	      </p>
	  </li>

	  <li>
	    <p>
		So, I'm back in the <a
		href="http://en.wikipedia.org/wiki/Helsinki">North
		pole</a> after my nearly two months world tour. During
		the last two months I visited Santiago de Chile,
		Talca, Curic&oacute;, Lima, A Coru&ntilde;a, Dresden,
		Zuschendorf, Prague, and Berlin. Fortunately, the last few days
		have been quiet enough for me to recover energies and
		I am already missing work. Let's get it on!
	    </p>
	  </li>
	  </ul>
]]></description>
    </item>

  </channel>
</rss>
