GUADEC/Back

I’m back to London after the really amazing days in Vilanova. This year’s GUADEC has been really amazing: lots of interesting talks and great people to meet; there definitely was a great energy in the air. Kudos to everyone involved in the creation and management of this great event: you really rock the world of GNOME.

I’ve put online the slides from my talk, if anyone wants to check them out: just PNGs, so you loose all the Clutter sexyness. I’ve also put on flickr the photos I took with my really crappy mobile phone.

4 Replies to “GUADEC/Back”

  1. This small patch to opt improves the export filenames a lot (seems you also did it)

    – g_snprintf(name, 32, “slide-%i.png”, i);
    + g_snprintf(name, 32, “slide-%02i.png”, i);

    I’ve converted a presentation to PDF from the PNG export using the following command (ImageMagick):

    convert $(ls -v EXPORTDIR/slide-*.png) OUTPUTFILE.pdf

    The resulting files shows fine in the Evince presentation mode.

Comments are closed.