<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Francesco Laffi</title>
    <description>imported from wordpress to jekyll since its just an archive of old stuff, things are likely broken and will be unlikely fixed
</description>
    <link>https://flweb.it/</link>
    <atom:link href="https://flweb.it/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Sun, 24 Jul 2016 11:54:08 +0000</pubDate>
    <lastBuildDate>Sun, 24 Jul 2016 11:54:08 +0000</lastBuildDate>
    <generator>Jekyll v3.1.6</generator>
    
      <item>
        <title>Ghost: just a blogging platform in node.js</title>
        <description>&lt;p&gt;I’m checking out Ghost, a newborn &lt;strong&gt;node.js blogging platform focused on the user experience&lt;/strong&gt;, these are my first impressions, as user and developer.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/app/uploads/2013/10/Ghost-Logo-on-White-1024x328.png&quot; alt=&quot;Ghost-Logo-on-White&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;installation&quot;&gt;Installation&lt;/h2&gt;

&lt;p&gt;The &lt;a href=&quot;http://docs.ghost.org/installation/&quot;&gt;installation instructions&lt;/a&gt; are easy, especially for test environments, since nodejs doesn’t need a webserver like nginx or apache, and Ghost can use &lt;strong&gt;sqlite&lt;/strong&gt; as db, so the simplest complete stack to run Ghost is just nodejs.
&lt;a href=&quot;http://en.wikipedia.org/wiki/Ghost_in_the_Shell_(film)&quot;&gt;&lt;img src=&quot;/app/uploads/2013/10/Ghostintheshellposter.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
OT: I can’t work from in the terminal with something named Ghost and not even mention “&lt;a href=&quot;http://en.wikipedia.org/wiki/Ghost_in_the_Shell_(film)&quot;&gt;Ghost in the Shell&lt;/a&gt;”, one of my favorite sci-fi anime films. If you don’t know it you should definitely watch it!&lt;/p&gt;

&lt;p&gt;I spinned up a Ghost workbench at &lt;a href=&quot;http://ghost.flweb.it/&quot;&gt;ghost.flweb.it&lt;/a&gt; on the same vps that hosts this blog, a couple of other WP sites and some test projects, in a Digital Ocean droplet (if you are looking for an easy vps for small project Digital Ocean is great, you can use &lt;a href=&quot;https://www.digitalocean.com/?refcode=3e8e36beebe5&quot;&gt;this link&lt;/a&gt; with my ref code)&lt;/p&gt;

&lt;p&gt;Installation on a &lt;strong&gt;production&lt;/strong&gt; oriented environment can be more elaborate, i.e. in my vps I already have &lt;strong&gt;nginx&lt;/strong&gt; on port 80, so nginx is set up to proxy the connection to the unix socket Ghost is listening to, nginx can also be used to serve static files directly; to ensure that Ghost stays alive I use &lt;strong&gt;forever&lt;/strong&gt;, configured as an upstart service. I use vagrant+chef to configure this server and its all on github: &lt;a href=&quot;https://github.com/francescolaffi/vagrant-chef-dev-box&quot;&gt;https://github.com/francescolaffi/vagrant-chef-dev-box&lt;/a&gt;. For heavy usage you’ll also need a standalone db, but for me sqlite is enough.&lt;/p&gt;

&lt;h2 id=&quot;features-interfaces-and-experience&quot;&gt;Features, interfaces and experience&lt;/h2&gt;

&lt;p&gt;Ghost is very much a &lt;strong&gt;work-in-progress&lt;/strong&gt;, the feature set is minimal for now, but you can already appreciate the admin interface simplicity. You can get a taste of the current and future features at &lt;a href=&quot;http://ghost.org/features/&quot;&gt;ghost.org/features&lt;/a&gt; and &lt;a href=&quot;https://github.com/TryGhost/Ghost/wiki/Planned-Features&quot;&gt;github.com/TryGhost/Ghost/wiki/Planned-Features&lt;/a&gt;. The aim is a lean non-bloated blogging platform and I appreciate it.&lt;/p&gt;

&lt;p&gt;I really enjoy the clean and slick writing screen with &lt;strong&gt;markdown syntax&lt;/strong&gt; and &lt;strong&gt;live preview&lt;/strong&gt;. It’s easy to see the effort for experience and details, i.e. it has built-in support for saving articles with &lt;strong&gt;cmd-s&lt;/strong&gt;, it’s something a lot of more mature projects don’t support natively.&lt;/p&gt;

&lt;h2 id=&quot;developing-on-ghost&quot;&gt;Developing on Ghost&lt;/h2&gt;

&lt;p&gt;Node.js uses different paradigms compared to other popular web languages like php and ruby, it’s not trivial to structure async code in big project and it risks to be a callback hell. Ghost uses &lt;a href=&quot;http://promises-aplus.github.io/promises-spec/&quot;&gt;promises&lt;/a&gt; with &lt;a href=&quot;https://github.com/cujojs/when&quot;&gt;whenjs&lt;/a&gt; to ‘linearize’ the control flow, it also use popular building blocks like &lt;a href=&quot;http://expressjs.com/&quot;&gt;express&lt;/a&gt; framework, &lt;a href=&quot;http://bookshelfjs.org/&quot;&gt;bookshelf&lt;/a&gt; orm and &lt;a href=&quot;http://handlebarsjs.com/&quot;&gt;handlebars&lt;/a&gt; templating. It’s looking good, some parts still looks messy, but at this stage is understandable.&lt;/p&gt;

&lt;p&gt;For &lt;strong&gt;contributing to the core&lt;/strong&gt; there are already lot of &lt;a href=&quot;https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md&quot;&gt;guidelines and tips&lt;/a&gt;, the &lt;a href=&quot;https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md#contributor-license-agreement&quot;&gt;CLA&lt;/a&gt; is pretty standard and not shady. At this stage the core is evolving quickly, so maybe its not practical for casual contribution; the dev documentation is lacking, there is a &lt;a href=&quot;https://github.com/TryGhost/Ghost/wiki/Roadmap&quot;&gt;roadmap for milestones&lt;/a&gt; and &lt;a href=&quot;https://github.com/TryGhost/Ghost/wiki/Pre-release-Roadmap&quot;&gt;releases&lt;/a&gt;, but is not very clear on the implementations and code architecture choices.
&lt;img src=&quot;/app/uploads/2013/10/handlebars-300x174.png&quot; alt=&quot;handlebars logo&quot; /&gt;
&lt;strong&gt;Theme development&lt;/strong&gt; leverages handlebars template, it looks easy and clean, it’s &lt;a href=&quot;http://docs.ghost.org/themes/&quot;&gt;documented here&lt;/a&gt;. Right now the theme features are limited and themes are just a collection of views and assets.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;plugin API&lt;/strong&gt; is WIP and still not ready, I gave it a shot anyway and I wrote a &lt;a href=&quot;https://github.com/francescolaffi/ghost-prism-plugin/&quot;&gt;ghost plugin for syntax highliting&lt;/a&gt;. I’m looking forward to a more powerful plugin framework.&lt;/p&gt;

&lt;h2 id=&quot;wordpress-vs-ghost&quot;&gt;WordPress vs Ghost&lt;/h2&gt;

&lt;p&gt;Different products for &lt;strong&gt;different targets&lt;/strong&gt;, WordPress is more than ever a complete CMS and a publishing platform, Ghost aim to be a lean platform for blogging.&lt;/p&gt;

&lt;p&gt;For many WP sites Ghost is not a competitor, for simple blogs it sure is tempting. I also see it as a valid &lt;strong&gt;alternative to static sites generators&lt;/strong&gt; as jekyll for some usages: its still a no frills solution that doesn’t require much infrastructure, but it’s much more convenient to use.&lt;/p&gt;

&lt;p&gt;When is a bit more mature I might even use it here on this blog :)&lt;/p&gt;
</description>
        <pubDate>Fri, 18 Oct 2013 12:09:29 +0000</pubDate>
        <link>https://flweb.it/2013/10/ghost-just-a-blogging-platform-in-node-js/</link>
        <guid isPermaLink="true">https://flweb.it/2013/10/ghost-just-a-blogging-platform-in-node-js/</guid>
        
        <category>dev thoughts</category>
        
        <category>ghost</category>
        
        <category>nodejs</category>
        
        
        <category>General</category>
        
      </item>
    
      <item>
        <title>SongTsu: from Whymca to the Maker Faire</title>
        <description>&lt;p&gt;In May 2013 I took part in the &lt;a href=&quot;http://www.whymca.org/hacks/hack-reality-2&quot;&gt;Hack Reality 2 by Whymca&lt;/a&gt;, an hackathon with very interesting APIs and devices, I teamed up with other devs and electronics experts and &lt;a href=&quot;http://blog.songtsu.com/the-project/&quot;&gt;SongTsu&lt;/a&gt; was born.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://blog.songtsu.com/wp-content/uploads/2013/06/c360_2013-05-25-17-35-21-012.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;We used a wearable matrix sensor, openpicus, blackberry and steremood API to create a system to make easier to give shatsu massages and play music selected depending on the massage pace, it was fun and we won the first prize and some sponsor prizes!&lt;/p&gt;

&lt;p&gt;The matrix was attached to the openpicus with the wifi module, then we build two mobile apps that connect to it, one that shows whats being done and gives tips, and one that adds the music experience. You can read all the details on &lt;a href=&quot;http://blog.songtsu.com/&quot;&gt;http://blog.songtsu.com/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://blog.songtsu.com/wp-content/uploads/2013/06/SongTsu_development-1024x576.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;In the last months we improved the idea, the electronics and the apps, and our work will be presented at the &lt;a href=&quot;http://www.makerfairerome.eu/en/&quot;&gt;European Maker Faire&lt;/a&gt; in Rome next weekend!&lt;/p&gt;

&lt;p&gt;So if you are going to the Maker Faire stop by to say hi (to the rest of the team, I’ll be at WordCamp Europe), otherwise check out some code on &lt;a href=&quot;https://github.com/francescolaffi/SongTsu&quot;&gt;https://github.com/francescolaffi/SongTsu&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Tue, 01 Oct 2013 12:19:08 +0000</pubDate>
        <link>https://flweb.it/2013/10/songtsu-from-whymca-to-the-maker-faire/</link>
        <guid isPermaLink="true">https://flweb.it/2013/10/songtsu-from-whymca-to-the-maker-faire/</guid>
        
        
        <category>General</category>
        
      </item>
    
      <item>
        <title>WPday 2013 Bologna: wp-cli</title>
        <description>&lt;p&gt;The first &lt;a href=&quot;http://www.wpday.it/&quot;&gt;WPday&lt;/a&gt; was a success, with a professional public it was possible to have a more technical track and interesting conversations during the breaks, thanks to everyone that took part to it for the great event! I hope you enjoyed it too!&lt;/p&gt;

&lt;p&gt;As &lt;a href=&quot;http://bologna.grusp.org&quot;&gt;pugBO&lt;/a&gt; we were very satisfied with the result and we’ll definitely organize other events beside our usual monthly meetings, follow us on &lt;a href=&quot;https://twitter.com/pugbologna&quot;&gt;@pugBologna&lt;/a&gt; or &lt;a href=&quot;http://fb.me/pugbo&quot;&gt;fb.me/pugbo&lt;/a&gt; to keep updated and join the conversation on &lt;a href=&quot;https://www.facebook.com/groups/pugbo/&quot;&gt;www.facebook.com/groups/pugbo/&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;wp-cli-wordpress-command-line-interface&quot;&gt;wp-cli: WordPress Command Line Interface&lt;/h3&gt;

&lt;p&gt;Wp-cli is a command line tool to manage WordPress and ease development tasks, an essential part of your toolkit if your work involves WordPress. Get it at &lt;a href=&quot;http://wp-cli.org/&quot;&gt;wp-cli.org&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;During the presentation I showed a live demo of some functionalities, so I added some slides with the examples we saw (white-on-dark slides).&lt;/p&gt;

&lt;p&gt;https://speakerdeck.com/francescolaffi/wpday-bologna-2013-wp-cli&lt;/p&gt;

&lt;p&gt;If you have any question or feedback don’t hesitate to contact me!&lt;/p&gt;
</description>
        <pubDate>Sat, 14 Sep 2013 11:34:48 +0000</pubDate>
        <link>https://flweb.it/2013/09/wpday-2013-bologna-wp-cli/</link>
        <guid isPermaLink="true">https://flweb.it/2013/09/wpday-2013-bologna-wp-cli/</guid>
        
        
        <category>Coding</category>
        
      </item>
    
      <item>
        <title>WPday Bologna 2013 and WordCamp Europe</title>
        <description>&lt;h2 id=&quot;wpday-bologna&quot;&gt;WPday Bologna&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;/app/uploads/2013/08/banner-wpday.png&quot; alt=&quot;banner-wpday&quot; /&gt; &lt;a href=&quot;http://www.wpday.it/&quot;&gt;WPday&lt;/a&gt; is an event for WordPress developer and designers that will take in Bologna on 13 Sept 2013. Is organized by &lt;a href=&quot;http://www.grusp.it/&quot;&gt;GrUSP&lt;/a&gt;, the national PHP user group, and &lt;a href=&quot;http://bologna.grusp.org/&quot;&gt;pugBO&lt;/a&gt;, the local one, which I am part of.&lt;/p&gt;

&lt;p&gt;I’ll be talking about &lt;a href=&quot;http://wp-cli.org/&quot;&gt;wp-cli&lt;/a&gt;, a great command line tool for WordPress professionals and power users. Don’t miss it!&lt;/p&gt;

&lt;h2 id=&quot;wordcamp-europe&quot;&gt;WordCamp Europe&lt;/h2&gt;

&lt;p&gt;I’ll also be at &lt;a href=&quot;http://2013.europe.wordcamp.org/&quot;&gt;WordCamp Europe&lt;/a&gt; in Netherlands in October as a volunteer, this doesn’t need an introduction, you just have to know it’s the biggest and most awesome WordPress event in Europe. Hope to see you there!&lt;/p&gt;
</description>
        <pubDate>Tue, 27 Aug 2013 11:37:43 +0000</pubDate>
        <link>https://flweb.it/2013/08/wpday-bologna-2013-and-wordcamp-europe/</link>
        <guid isPermaLink="true">https://flweb.it/2013/08/wpday-bologna-2013-and-wordcamp-europe/</guid>
        
        
        <category>General</category>
        
      </item>
    
      <item>
        <title>BP-Moderation 0.1.7 compatible with BP 1.7 &amp; BP 1.8</title>
        <description>&lt;p&gt;BP-Moderation 0.1.7 is out, and it’s compatible with the two most recent BuddyPress minor versions.&lt;/p&gt;

&lt;p&gt;The moderation admin interface has been moved in its own top level admin menu item, to address the removal of the BuddyPress menu item that was used as parent for BP-Mod item. No new features, just a maintenance release.&lt;/p&gt;

&lt;p&gt;For issues and feature suggestion open a ticket at &lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation/issues&quot;&gt;https://github.com/francescolaffi/BP-Moderation/issues&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next in the roadmap:
* test current version against wp 3.6
* work on the refactoring&lt;/p&gt;

&lt;p&gt;https://www.youtube.com/watch?v=AXwGVXD7qEQ&lt;/p&gt;
</description>
        <pubDate>Tue, 23 Jul 2013 15:48:05 +0000</pubDate>
        <link>https://flweb.it/2013/07/bp-moderation-0-1-7-compatible-with-bp-1-7-bp-1-8/</link>
        <guid isPermaLink="true">https://flweb.it/2013/07/bp-moderation-0-1-7-compatible-with-bp-1-7-bp-1-8/</guid>
        
        
        <category>BP Moderation</category>
        
      </item>
    
      <item>
        <title>BP-Moderation is broken. Help fix it!</title>
        <description>&lt;p&gt;I’ve been out of BuddyPress game for a while, mainly because I’m not using it on websites I curate or work on, and I was committed to other projects.&lt;/p&gt;

&lt;p&gt;While BP-Media is maintained by other developers, I’m the only one working on this plugin and I have received emails about it not working on the latest versions of WP and BP.&lt;/p&gt;

&lt;p&gt;I started to look into it and the &lt;strong&gt;dev version should now be working&lt;/strong&gt; on single-site installs, Today I’ll test on multisite and fix it.  I can’t devote lot of time to it right now so any help, tester or developer, is appreciated.&lt;/p&gt;

&lt;p&gt;The development version is &lt;strong&gt;now on GitHub&lt;/strong&gt; at &lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation&quot;&gt;https://github.com/francescolaffi/BP-Moderation&lt;/a&gt;, if you are not confortable with git you can get the zipped dev version at &lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation/archive/master.zip&quot;&gt;https://github.com/francescolaffi/BP-Moderation/archive/master.zip&lt;/a&gt;.
Stable versions will be tagged in WP official svn repo.&lt;/p&gt;

&lt;p&gt;How can you help to get it fixed?&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;If you use this plugin on your site** test the dev version (&lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation/archive/master.zip&quot;&gt;zip&lt;/a&gt;)** from GitHub and post the issues to &lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation/issues&quot;&gt;https://github.com/francescolaffi/BP-Moderation/issues&lt;/a&gt; (never test it on your production website)&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;If you are a developer you can help to fix and improve it! Fork the GitHub repo and make a &lt;strong&gt;pull request&lt;/strong&gt; or reach out at &lt;a href=&quot;skype:francesco.laffi?chat&quot;&gt;francesco.laffi on skype&lt;/a&gt; to discuss it.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I found out that BP-Moderation codebase is messed up, with logic and template mixed together and some singleton black magic to load the main classes, can’t understand how it seemed a good idea when I wrote it years ago, at least is not really extensive so its workable.
I started a new &lt;strong&gt;&lt;a href=&quot;https://github.com/francescolaffi/BP-Moderation/tree/0.2&quot;&gt;branch 0.2&lt;/a&gt; for the refactoring&lt;/strong&gt;, it will target PHP 5.3+, WP 3.6 and BP 1.8, maybe WP 3.5 and BP 1.7; the 0.1 branch will be compatible with BP 1.7/1.8, but won’t get new feature or compatibility with later BP versions.&lt;/p&gt;
</description>
        <pubDate>Tue, 18 Jun 2013 11:32:35 +0000</pubDate>
        <link>https://flweb.it/2013/06/bp-moderation-is-broken-help-fix-it/</link>
        <guid isPermaLink="true">https://flweb.it/2013/06/bp-moderation-is-broken-help-fix-it/</guid>
        
        
        <category>BP Moderation</category>
        
      </item>
    
      <item>
        <title>Day 1-2: Postojna</title>
        <description>&lt;h2 id=&quot;bologna---postojna&quot;&gt;Bologna -&amp;gt; Postojna&lt;/h2&gt;

&lt;p&gt;We departed from Bologna in the morning of 20 July, taking 300km of motorway to Trieste. From there we planned to avoid the Slovenian motorway because we only had to do short parts of it and the tolls are weekly or monthly, so we tried to follow the county roads, but signs were not helpful at all. After some trial and error I managed to find a southeast passage to Postojna using mostly the sun, valleys and high voltage transmission lines (they are not on the maps, but they are usually between areas with high population/industrial density).&lt;/p&gt;

&lt;h2 id=&quot;postojna&quot;&gt;Postojna&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;/app/uploads/2012/08/IMG_5885-200x300.jpg&quot; alt=&quot;&quot; /&gt;Postojna is a nice town, it’s not very big and there is not a lot to do other than visiting the caves and the castle. It seem to be the only city in Slovenia with open and unlimited wifi over most of the city, and I’ve definitely appreciated that. The landscape is karst and green hills.&lt;/p&gt;

&lt;h2 id=&quot;postojna-caves-and-predjamacastle&quot;&gt;Postojna Caves and Predjama Castle&lt;/h2&gt;

&lt;p&gt;There are 21 km of caves on three levels, on the lower one the Pivka river is still doing its geological erosion work. The guided visit is 1 km long and is 2 km into the caves, you are taken there and back by a little open train. Unluckily photos are prohibited during the visit, so I only have the few I took from the train and at the end, so you’ll not see here the best parts.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/app/uploads/2012/08/IMG_5895-200x300.jpg&quot; alt=&quot;&quot; /&gt;All caves are rich of stalactites and stalagmites, in different colors depending on the impurities, but what stunned me most was that some of them are impressively huge, like a an imax theatre or maybe a small soccer stadium. I thought there were more holes in that mountain than in swiss cheese.&lt;/p&gt;

&lt;p&gt;Predjama castle is a medieval fortification built in several stages partly inside in a huge cave. A legend tells that Erazem used this position to withstood a siege for a year, even getting fresh supplies using a secret tunnel that start from the cave.&lt;/p&gt;

&lt;p&gt;Check also my girlfriend &lt;a href=&quot;http://girasoliallamattina.com/2012/07/21/fra-grotte-e-castelli-in-slovenia/&quot;&gt;post on Postojna Caves and Predjama Castle&lt;/a&gt; (italian).&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/app/uploads/2012/08/IMG_5871.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5874.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5876.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5878.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5881.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5882.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5883.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5885.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5889.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5891.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5892.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5894.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5895.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5902.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/app/uploads/2012/08/IMG_5919.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;On the map:&lt;/p&gt;

&lt;p&gt;View &lt;a href=&quot;https://maps.google.com/maps/ms?msa=0&amp;amp;msid=214824627353879868581.0004c6706bfea18715580&amp;amp;ie=UTF8&amp;amp;t=p&amp;amp;ll=45.224612,12.799072&amp;amp;spn=1.74105,3.202515&amp;amp;z=8&amp;amp;source=embed&quot;&gt;Croatia Motorbike Trip - Summer 2012&lt;/a&gt; in a larger map&lt;/p&gt;
</description>
        <pubDate>Sun, 05 Aug 2012 21:54:45 +0000</pubDate>
        <link>https://flweb.it/2012/08/day-1-2-postojna/</link>
        <guid isPermaLink="true">https://flweb.it/2012/08/day-1-2-postojna/</guid>
        
        <category>Croatia 2012</category>
        
        
        <category>Travel</category>
        
      </item>
    
      <item>
        <title>Croatia on the road</title>
        <description>&lt;p&gt;I’m travelling Croatia by motorbike (BMW F650GS) with my girlfriend, she took with us her netbook to post on &lt;a href=&quot;http://girasoliallamattina.com&quot;&gt;her blog&lt;/a&gt; about the travel so why not post some info and photo here too? My site have been semi-dead for some time anyway, some fresh content will be nice.&lt;/p&gt;

&lt;p&gt;We already did half of the trip but I’ll start from the beginning and make sevaral posts, so they won’t be real time and I’ll still be writing them after the trip is finished.&lt;/p&gt;

&lt;p&gt;You can read my girlfriend &lt;a href=&quot;http://girasoliallamattina.com/category/viaggi/croazia-2012/&quot;&gt;posts on this trip in Croatia on her blog&lt;/a&gt;, in Italian.&lt;/p&gt;

&lt;h2 id=&quot;the-route&quot;&gt;The Route&lt;/h2&gt;

&lt;p&gt;This is the route we planned (clockwise) and it is a good approximation of what we ended up doing, I’ll probably do another precise map with suggested spots while I do posts for trip legs.&lt;/p&gt;

&lt;p&gt;View &lt;a href=&quot;https://maps.google.com/maps/ms?hl=en&amp;amp;ie=UTF8&amp;amp;oe=UTF8&amp;amp;msa=0&amp;amp;msid=214824627353879868581.0004c44c59de487c4e07c&amp;amp;t=p&amp;amp;ll=44.229457,15.523682&amp;amp;spn=3.936097,6.416016&amp;amp;z=7&amp;amp;source=embed&quot;&gt;trip croazia 2012&lt;/a&gt; in a larger map&lt;/p&gt;

&lt;h2 id=&quot;planning-and-departure&quot;&gt;Planning and Departure&lt;/h2&gt;

&lt;p&gt;This is our second long trip on two wheels (last summer we did 2800km on the alps) so we were confident about the bike, distances and luggage. We booked rooms/apartments beforehand on airbnb, booking and hostel sites, we also booked an hotel with a groupon, leaving only some holes to the end of the trip.&lt;/p&gt;

&lt;p&gt;We started our journey on July 20, we planned a 20 days route. Travelling in two on only one bike we had to fit lot of things and we needed to use lateral luggage, rear luggage+bag and tank bag; bike is heavier and larger so it loses some agility, it’s still an enjoyable ride, but it can be wearing on long distances.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/app/uploads/2012/08/IMG_0672.jpg&quot;&gt;&lt;img src=&quot;/app/uploads/2012/08/IMG_0672-300x225.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;/app/uploads/2012/08/IMG_0675-001.jpg&quot;&gt;&lt;img src=&quot;/app/uploads/2012/08/IMG_0675-001-300x225.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Thu, 02 Aug 2012 08:22:13 +0000</pubDate>
        <link>https://flweb.it/2012/08/croatia-on-the-road/</link>
        <guid isPermaLink="true">https://flweb.it/2012/08/croatia-on-the-road/</guid>
        
        <category>Croatia 2012</category>
        
        <category>Motorbike</category>
        
        
        <category>Travel</category>
        
      </item>
    
      <item>
        <title>WordCamp Milano 2011: day 2</title>
        <description>&lt;p&gt;[like the previous slides these are in italian too]&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://www.slideshare.net/francesco.laffi/wordpress-community-italian&quot;&gt;WordPress Community [italian] - WordCamp Milano 2011&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;View more &lt;a href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/francesco.laffi&quot;&gt;Francesco Laffi&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Tue, 31 May 2011 12:32:16 +0000</pubDate>
        <link>https://flweb.it/2011/05/wordcamp-milano-2011-day-2/</link>
        <guid isPermaLink="true">https://flweb.it/2011/05/wordcamp-milano-2011-day-2/</guid>
        
        
        <category>Coding</category>
        
      </item>
    
      <item>
        <title>WordCamp Milano 2011: day 1</title>
        <description>&lt;p&gt;[Hi there int’l friends, slides are only in italian as I presented them in Milan, but most links point to good english resources]&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://www.slideshare.net/francesco.laffi/extending-buddypress-wordcamp-milano-2011-italian-8127292&quot;&gt;Extending BuddyPress – WordCamp Milano 2011 [italian]&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;View more &lt;a href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/francesco.laffi&quot;&gt;Francesco Laffi&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.ustream.tv/&quot;&gt;Video streaming by Ustream&lt;/a&gt;&lt;/p&gt;

</description>
        <pubDate>Fri, 27 May 2011 17:19:44 +0000</pubDate>
        <link>https://flweb.it/2011/05/wordcamp-milano-2011-day-1/</link>
        <guid isPermaLink="true">https://flweb.it/2011/05/wordcamp-milano-2011-day-1/</guid>
        
        
        <category>Coding</category>
        
      </item>
    
  </channel>
</rss>
