<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Leo Iannacone</title>
	
	<link>http://en.leoiannacone.com</link>
	<description>Personal Site</description>
	<lastBuildDate>Sat, 23 Feb 2013 11:54:56 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/leoiannacone/blog/en" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="leoiannacone/blog/en" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Turning off/on display via cli/bash</title>
		<link>http://en.leoiannacone.com/2013/02/turning-offon-display-via-clibash/</link>
		<comments>http://en.leoiannacone.com/2013/02/turning-offon-display-via-clibash/#comments</comments>
		<pubDate>Sat, 23 Feb 2013 11:54:56 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=280</guid>
		<description><![CDATA[This little script will help you to understand how to use xrandr to enable, disable and configure your second Display via bash: #!/bin/bash FIRST="HDMI-0" SECOND="DVI-0" BASECMD="xrandr --auto --output $SECOND" MODE="--mode 1920x1080" DIRECTION="--right-of $FIRST" ROTATE="--rotate left" OFF="--off" function off() { $BASECMD $OFF } function on() { $BASECMD $MODE $DIRECTION $ROTATE } function usage() { echo "usage: $(basename [...]]]></description>
				<content:encoded><![CDATA[<p>This little script will help you to understand how to use <strong>xrandr</strong> to <em>enable</em>, <em>disable</em> and <em>configure</em> your second <strong>Display</strong> via <strong>bash</strong>:</p>
<pre>#!/bin/bash

FIRST="HDMI-0"
SECOND="DVI-0"

BASECMD="xrandr --auto --output $SECOND"

MODE="--mode 1920x1080"
DIRECTION="--right-of $FIRST"
ROTATE="--rotate left"
OFF="--off"

function off() {
  $BASECMD $OFF
}

function on() {
  $BASECMD $MODE $DIRECTION $ROTATE
}

function usage() {
  echo "usage: $(basename $0) on|off"
}

case "$1" in
  on)   on 
  ;;
  off)  off 
  ;;
  *)    usage
  ;;
esac</pre>
<p>Enjoy! <img src='http://en.leoiannacone.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2013/02/turning-offon-display-via-clibash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A smart way to use /tmp</title>
		<link>http://en.leoiannacone.com/2012/09/a-smart-way-to-use-tmp/</link>
		<comments>http://en.leoiannacone.com/2012/09/a-smart-way-to-use-tmp/#comments</comments>
		<pubDate>Tue, 11 Sep 2012 15:13:20 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=210</guid>
		<description><![CDATA[I always loved use tmp directory to manage my &#8220;temporary files&#8221;. First of all, which files can be considered as &#8220;temporary&#8221;, and what does temporary exactly means? Well.. In my opinion, we can address as temporary all those files used only during a single Session. Such as: files downloaded from browser &#8211; typically &#8220;to take a look [...]]]></description>
				<content:encoded><![CDATA[<p>I always loved use tmp directory to manage my &#8220;temporary files&#8221;. First of all, which files can be considered as &#8220;temporary&#8221;, and what does temporary exactly means? Well.. In my opinion, we can address as temporary all those files used only during a single Session. Such as:</p>
<ul>
<li>files downloaded from browser &#8211; typically &#8220;to take a look or a single read&#8221;, they will never be opened again.</li>
<li>&#8220;text_files / notes / drafts / patches / etc..&#8221; &#8211; bound to be sent by email (and never used again).</li>
<li>&#8220;apt-get source&#8221; &#8211; do you use it? <img src='http://en.leoiannacone.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>many more &#8230; (pictures, samples, songs, backgrounds, code_branches, videos&#8230;)</li>
</ul>
<p>If you use the standard <code>$HOME/Downloads</code> (or the Desktop, or Home or whatever_you_use) directory to locate all those files, you already know which kind of mess will be there in few days, unless you do not spend part of your time to delete those files no longer used. Looking for a solution to this I figured out that set <code>/tmp</code> directory (not really, but think about that) as my Download directory can be a good choice&#8230; It will be cleaned to each boot, so I can take no interest about files I download during a Session &#8211; and store only those I consider &#8220;important&#8221;, by moving to my &#8220;Downloads&#8221; (or &#8220;Documents&#8221;) directory. It can work, no? No. In fact that&#8217;s not all. I also love mount <code>/tmp</code> in Ram in order to speed up a bit the system&#8230; And place my downloads in <code>/tmp</code> can be dangerous for the system &#8211;  sometimes downloaded files can be bigger than we expect (try to think to a 20MB pdf). So, one of the best way (in my opinion) to have a clean &#8220;downloads&#8221; directory is create a local <code>~/tmp</code> directory and use it as the default download directory for my Desktop and in the following lines I will show you how set it up.</p>
<p>Let&#8217;s start with <strong>mount /tmp in Ram</strong>, edit your <code>/etc/fstab</code> appending the lines below:</p>
<pre># RAM Disks
tmpfs /tmp tmpfs defaults 0 0</pre>
<p>Next step, <strong>create a ~/tmp directory</strong> (or wherever you prefer) and <strong>set it as Downloads directory</strong>:</p>
<pre>mkdir ~/tmp
xdg-user-dirs-update --set DOWNLOAD ~/tmp</pre>
<p>Now<strong> create a script able to clean the directory</strong> to each login. I choose a file named <strong>~/.initrc</strong> (you can use it to launch other applications, like conky). Use your preferred editor and insert the following lines:</p>
<pre>#!/bin/bash
# Clean tmp dir:
find $HOME/tmp -mindepth 1 -delete &amp;</pre>
<p>Save the file and <strong>link it into your</strong> &#8220;<strong>Startup Applications</strong>&#8221; (search it through Unity), I use the following:<br />
<a href="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/09/My_init.png" rel="lightbox[210]"><img class="aligncenter size-full wp-image-216" title="My_init" src="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/09/My_init.png" alt="" width="453" height="256" /></a><br />
That&#8217;s all. My simple way to have a clean Home directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2012/09/a-smart-way-to-use-tmp/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Forum ubuntu-it gets a new theme and a new engine</title>
		<link>http://en.leoiannacone.com/2012/05/forum-ubuntu-it-gets-a-new-theme-and-a-new-engine/</link>
		<comments>http://en.leoiannacone.com/2012/05/forum-ubuntu-it-gets-a-new-theme-and-a-new-engine/#comments</comments>
		<pubDate>Sat, 19 May 2012 16:42:18 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[My works]]></category>
		<category><![CDATA[artworks]]></category>
		<category><![CDATA[ubuntu-it]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=196</guid>
		<description><![CDATA[Hi all, after many many weeks working on forum.ubuntu-it.org, we finally done! The forum for ubuntu-it.org has been migrated from SMF 1.X (MySQL) to PhpBB3 (PSQL). The entire work has taken more than one month, considering the huge data (almost 5GB database) to migrate. The new theme is inspired to the ubuntu-it website and ubuntu design [...]]]></description>
				<content:encoded><![CDATA[<p>Hi all,</p>
<p>after many many weeks working on <a href="http://forum.ubuntu-it.org">forum.ubuntu-it.org</a>, we finally done!</p>
<p>The forum for ubuntu-it.org has been migrated from SMF 1.X (MySQL) to PhpBB3 (PSQL). The entire work has taken more than one month, considering the huge data (almost 5GB database) to migrate.</p>
<p>The new theme is inspired to the ubuntu-it website and ubuntu design guidelines, hope you like it.</p>
<p><a rel="nobox" href="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Indice-•-Forum-Ubuntu-it-181902.png" rel="lightbox[196]"><img class="alignnone size-medium wp-image-199" title="Indice • Forum Ubuntu-it-181902" src="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Indice-•-Forum-Ubuntu-it-181902-216x500.png" alt="" width="216" height="500" /></a><a  rel="nobox" href="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Consiglio-della-Comunità-•-Forum-Ubuntu-it-182051.png" rel="lightbox[196]"><img class="alignnone  wp-image-198" title="Consiglio della Comunità • Forum Ubuntu-it-182051" src="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Consiglio-della-Comunità-•-Forum-Ubuntu-it-182051-276x500.png" alt="" width="250" height="500" /></a><a rel="nobox" href="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Candidatura-Approvata-•-Forum-Ubuntu-it-182029.png" rel="lightbox[196]"><img class="alignnone size-medium wp-image-197" title="Candidatura [Approvata  • Forum Ubuntu-it-182029" src="http://en.leoiannacone.com/wordpress/wp-content/uploads/2012/05/Candidatura-Approvata-•-Forum-Ubuntu-it-182029-130x500.png" alt="" width="130" height="500" /></a></p>
<p>&nbsp;</p>
<p>Thanks to #canonical-sysadmin to help me in tuning psql, apache, php, etc&#8230; PphBB3 (default) is not so fast with big forums as I expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2012/05/forum-ubuntu-it-gets-a-new-theme-and-a-new-engine/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Planet Ubuntu-it gets new theme</title>
		<link>http://en.leoiannacone.com/2011/06/planet-ubuntu-it-gets-new-theme/</link>
		<comments>http://en.leoiannacone.com/2011/06/planet-ubuntu-it-gets-new-theme/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 13:18:06 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[My works]]></category>
		<category><![CDATA[ubuntu-it]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=182</guid>
		<description><![CDATA[Yesterday I had a couple of hours to work on the planet.ubuntu-it.org theme, falling style in line with the website. Code is available in LP: bzr branch lp:~ubuntu-it-www/planet-ubuntu-it/stili/ http://bazaar.launchpad.net/~ubuntu-it-www/planet-ubuntu-it/planet-bzr/files/head:/themes/light/ Suggestions are welcome]]></description>
				<content:encoded><![CDATA[<p>Yesterday I had a couple of hours to work on the <a href="http://planet.ubuntu-it.org">planet.ubuntu-it.org</a> theme, falling style in line with the website.</p>
<p><a href="http://en.leoiannacone.com/wordpress/wp-content/uploads/2011/06/planet.ubuntu-it.org_2011.png" rel="lightbox[182]"><img class="aligncenter size-medium wp-image-183" title="Planet Ubuntu-it theme (2011)" src="http://en.leoiannacone.com/wordpress/wp-content/uploads/2011/06/planet.ubuntu-it.org_2011-500x281.png" alt="" width="500" height="281" /></a></p>
<p>Code is available in LP:</p>
<pre><del>bzr branch lp:~ubuntu-it-www/planet-ubuntu-it/stili/</del></pre>
<pre><a href="http://bazaar.launchpad.net/~ubuntu-it-www/planet-ubuntu-it/planet-bzr/files/head:/themes/light/">http://bazaar.launchpad.net/~ubuntu-it-www/planet-ubuntu-it/planet-bzr/files/head:/themes/light/</a></pre>
<p>Suggestions are welcome <img src='http://en.leoiannacone.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2011/06/planet-ubuntu-it-gets-new-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HYM – Help you to merge</title>
		<link>http://en.leoiannacone.com/2011/05/hym-help-you-to-merge/</link>
		<comments>http://en.leoiannacone.com/2011/05/hym-help-you-to-merge/#comments</comments>
		<pubDate>Mon, 30 May 2011 11:09:53 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[My works]]></category>
		<category><![CDATA[hym]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=156</guid>
		<description><![CDATA[The idea is ﻿provide new (incoming) developers with a grafic tool that should be helpful during the merge operation. I called it HYM (but suggestions are welcome!) and got a first approach using balsamiq. I would like to proceed following these steps: Show mockup and get feedbacks (in particular I would know if there were actions to [...]]]></description>
				<content:encoded><![CDATA[<p>The idea is ﻿provide new (incoming) developers with a grafic tool that should be helpful during the merge operation.</p>
<p>I called it <strong>HYM</strong> (but suggestions are welcome!) and got a first approach using <a href="http://balsamiq.com">balsamiq</a>. I would like to proceed following these steps:</p>
<ol>
<li>Show <em>mockup</em> and get <em>feedbacks</em> (in particular I would know if there were actions to remove/add/change at gui that developers usally do during merge)</li>
<li>Apply feedbacks and <em>create project</em> in LP (with the maintainers group, all architects are welcome)</li>
<li>Start <em>modelling</em> application using <em>UML</em> (specify, construct and document the artifacts)</li>
<li>Call for <em>feedbacks</em> again about structure and <em>choose</em> which <em>technologies</em> will be used to deploy/develop application.</li>
<li>Start <em>development</em>.</li>
</ol>
<p>I don&#8217;t know if a tool like this one could be helpful to improve the development of Ubuntu. Considering I would like to know your thoughts about, I&#8217;m going to show you the mockup (step <strong>1</strong>). Click on the image below (<a rel="noplugin" href="http://people.ubuntu.com/~l3on/hym/myImage.png" target="_blank" rel="lightbox[156]">direct link</a>) and please leave a feedback/suggestion:</p>
<p><a href="http://people.ubuntu.com/~l3on/hym/myImage.png" rel="lightbox[156]"><img class="aligncenter size-full wp-image-157" title="HYM - A first approach" src="http://www.leoiannacone.com/en/wordpress/wp-content/uploads/2011/05/hym-design.png" alt="" width="501" height="865" /></a></p>
<p><span style="font-size: 10px; font-weight: bold;">Note that image could change in the next days.</span></p>
<p>Ciao!</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2011/05/hym-help-you-to-merge/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu is us all together</title>
		<link>http://en.leoiannacone.com/2011/05/ubuntu-is-us-all-together/</link>
		<comments>http://en.leoiannacone.com/2011/05/ubuntu-is-us-all-together/#comments</comments>
		<pubDate>Thu, 26 May 2011 17:24:51 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[My works]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[webdesing]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=139</guid>
		<description><![CDATA[In the last weeks (as already posted in ﻿﻿﻿Ubuntu-it gets new website﻿﻿ article) we redesigned ubuntu-it website in order to fall template into line with the new brand of Ubuntu. While we were working on homepage, we asked ourself how to realize the concept of community and how mix it to the invitation to join [...]]]></description>
				<content:encoded><![CDATA[<p>In the last weeks (as already posted in ﻿﻿﻿<a href="http://en.leoiannacone.com/2011/05/ubuntu-it-gets-new-website/">Ubuntu-it gets new website﻿﻿</a> article) we redesigned ubuntu-it website in order to fall template into line with the new brand of Ubuntu.</p>
<p>While we were working on homepage, we asked ourself how to realize the concept of community and how mix it to the invitation to join us, all in a single image. The result was a &#8220;ubuntu&#8221; writing, collected with heads of planet.u.c and planet.u-it.org. The following image is in high resolution format (6000&#215;1500) so you could print it (if you want) and show it during a party/meeting/or_similiar to convey the idea that ubuntu is made by me, by you, by your friends and your family, by us all together.</p>
<p><em><strong><a href="http://www.leoiannacone.com/en/wordpress/wp-content/uploads/2011/05/shape-share.png" rel="lightbox[139]"><img class="size-medium wp-image-142 aligncenter" title="Ubuntu is you - Ubuntu is me - Ubuntu is your friends and your family - Ubuntu is us all togheter" src="http://www.leoiannacone.com/en/wordpress/wp-content/uploads/2011/05/shape-share-500x126.png" alt="" width="500" height="126" /></a></strong></em></p>
<p>Ciao!</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2011/05/ubuntu-is-us-all-together/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu-it gets new website</title>
		<link>http://en.leoiannacone.com/2011/05/ubuntu-it-gets-new-website/</link>
		<comments>http://en.leoiannacone.com/2011/05/ubuntu-it-gets-new-website/#comments</comments>
		<pubDate>Thu, 12 May 2011 17:04:47 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ubuntu-it]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=118</guid>
		<description><![CDATA[After six months work (that really means work-after-real-work-to-be-more-precise-free-time) ubuntu-it gets a new look and a new website engine! The theme is based on drupal-light-theme and if you like it we&#8217;ll be happy to clean (refactoring code) and share on LP for your LoCo websites. More info?&#8230; ask us!]]></description>
				<content:encoded><![CDATA[<p>After six months work (that really means work-after-real-work-to-be-more-precise-free-time) <a title="Italian community website" href="http://ubuntu-it.org">ubuntu-it</a> gets a new look and a new website engine!</p>
<p style="text-align: center;"><a href="http://www.leoiannacone.com/en/wordpress/wp-content/uploads/2011/05/Schermata-Homepage-Ubuntu-Italia-Mozilla-Firefox.png" rel="lightbox[118]"><img class="aligncenter size-medium wp-image-122" title="Schermata-Homepage | Ubuntu Italia - Mozilla Firefox" src="http://www.leoiannacone.com/en/wordpress/wp-content/uploads/2011/05/Schermata-Homepage-Ubuntu-Italia-Mozilla-Firefox-500x398.png" alt="" width="500" height="398" /></a></p>
<p>The theme is based on <a href="https://code.launchpad.net/~ubuntu-website-community/ubuntu-website/light-drupal6-theme">drupal-light-theme</a> and if you like it we&#8217;ll be happy to <em>clean</em> (refactoring code) and share on LP for your LoCo websites.</p>
<p>More info?&#8230; ask us! <img src='http://en.leoiannacone.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2011/05/ubuntu-it-gets-new-website/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Perugia – DUCC-IT: Ubuntu-it and Debian-it community conference</title>
		<link>http://en.leoiannacone.com/2010/09/perugia-ducc-it-ubuntu-it-and-debian-it-community-conference/</link>
		<comments>http://en.leoiannacone.com/2010/09/perugia-ducc-it-ubuntu-it-and-debian-it-community-conference/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 12:57:53 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[meeting]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=114</guid>
		<description><![CDATA[Just a few words to greet you from Perugia (Italy). We are here discussing translation, testing, packing, bug trianging and collaboration between Ubuntu and Debian with Stefano Zacchiroli (zack &#8211; DPL), Andrea Gasparini (gaspa &#8211; MOTU), Andrea Colangelo (warp10 &#8211; MOTU), Milo Casagrande (milo), Paolo Sammicheli (xdatap1), Flavia Weisghizzi (deindre), Silvia Bindelli (dolasilla), Luca Bruno [...]]]></description>
				<content:encoded><![CDATA[<p>Just a few words to greet you from Perugia (Italy).</p>
<p>We are here discussing translation, testing, packing, bug trianging and collaboration between Ubuntu and Debian with Stefano Zacchiroli (zack &#8211; DPL), Andrea Gasparini (gaspa &#8211; MOTU), Andrea Colangelo (warp10 &#8211; MOTU), Milo Casagrande (milo), Paolo Sammicheli (xdatap1), Flavia Weisghizzi (deindre), Silvia Bindelli (dolasilla), Luca Bruno (kaeso &#8211; DD), Andrea Mennucci (amennucc1 &#8211; DD) and many more&#8230;</p>
<p>Let&#8217;s HACK!</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2010/09/perugia-ducc-it-ubuntu-it-and-debian-it-community-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04: Coming Soon [VIDEO]</title>
		<link>http://en.leoiannacone.com/2010/04/ubuntu-10-04-coming-soon-video/</link>
		<comments>http://en.leoiannacone.com/2010/04/ubuntu-10-04-coming-soon-video/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:21:23 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[My works]]></category>

		<guid isPermaLink="false">http://en.leoiannacone.com/?p=104</guid>
		<description><![CDATA[With the Paolo Sammicheli help (that cared about the audio and the communication side) we made a &#8220;coming soon&#8221; video for Ubuntu 10.04 in order to improve and help the work of any Ubuntu LoCo Team. I hope you like it . Realized with: Inkscape GIMP Kdenlive]]></description>
				<content:encoded><![CDATA[<p>With the <a href="http://xdatap1.wordpress.com/2010/04/08/ubuntu-10-04-coming-soon-the-video/">Paolo Sammicheli</a> help (that cared about the audio and the communication side) we made a &#8220;<a href="http://www.youtube.com/watch?v=RcjEN-8rLf0">coming soon</a>&#8221; video for Ubuntu 10.04 in order to improve and help the work of any Ubuntu LoCo Team.</p>
<p>I hope you like it <img src='http://en.leoiannacone.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/RcjEN-8rLf0&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/RcjEN-8rLf0&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Realized with:</p>
<ul>
<li><a href="http://www.inkscape.org/">Inkscape</a></li>
<li><a href="http://www.inkscape.org/"></a><a href="http://www.gimp.org/">GIMP</a></li>
<li><a href="http://www.gimp.org/"></a><a href="http://www.kdenlive.org/">Kdenlive</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2010/04/ubuntu-10-04-coming-soon-video/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Idea in brainstorm</title>
		<link>http://en.leoiannacone.com/2009/09/idea-in-brainstorm/</link>
		<comments>http://en.leoiannacone.com/2009/09/idea-in-brainstorm/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 15:00:13 +0000</pubDate>
		<dc:creator>l3on</dc:creator>
				<category><![CDATA[Planet Ubuntu]]></category>

		<guid isPermaLink="false">http://www.leoiannacone.com/en/blog/?p=76</guid>
		<description><![CDATA[After many suggestions coming out from the comments in «<a href="http://www.leoiannacone.com/en/blog/?p=68">It would be nice if in Nautilus</a>» post, I posed a new idea in ubuntu brainstorm.
<br /><br />
You can find it here:<br />
<a href="http://brainstorm.ubuntu.com/idea/21337/">
<img src="http://brainstorm.ubuntu.com/idea/21337/image/1/" />
</a>
<br /><br />
Please vote and comment the idea if you want see it in the next ubuntu releases.]]></description>
				<content:encoded><![CDATA[<p>After many suggestions coming out from the comments in «<a href="http://en.leoiannacone.com/?p=68">It would be nice if in Nautilus</a>» post, I posed a new idea in ubuntu brainstorm.</p>
<p>You can find it here:<br />
<a href="http://brainstorm.ubuntu.com/idea/21337/"><br />
<img src="http://brainstorm.ubuntu.com/idea/21337/image/1/" /><br />
</a></p>
<p>Please vote and comment the idea if you want see it in the next ubuntu releases.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.leoiannacone.com/2009/09/idea-in-brainstorm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
