<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>fucking the white bunny rabbit</title>
	<atom:link href="http://blog.foppiano.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.foppiano.org</link>
	<description>this blog is a feature</description>
	<lastBuildDate>Thu, 04 Feb 2010 00:16:50 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.foppiano.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7bcf0d2e608c356c4bcbcf938beeed05?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>fucking the white bunny rabbit</title>
		<link>http://blog.foppiano.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.foppiano.org/osd.xml" title="fucking the white bunny rabbit" />
		<item>
		<title>Road to FOSDEM 2010</title>
		<link>http://blog.foppiano.org/2010/02/04/road-to-fosdem-2010/</link>
		<comments>http://blog.foppiano.org/2010/02/04/road-to-fosdem-2010/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 00:16:50 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ambassador]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[opensource & freesoftware]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[fosdem]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=932</guid>
		<description><![CDATA[As most of you already know (if you don&#8217;t, never mind, I will forgive you  ), I&#8217;m going to give a lightning talk in the Free Java Dev room at FOSDEM about Groovy. The title will be &#8220;Groovy: the cool side of java&#8221; and basically it will be an hand-on speech. No slide, just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=932&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>As most of you already know (if you don&#8217;t, never mind, I will forgive you <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ), I&#8217;m going to give <a href="http://www.fosdem.org/2010/schedule/events/java_groovy">a lightning talk</a> in the <strong>Free Java</strong> Dev room at <a href="http://www.fosdem.org">FOSDEM</a> about <a href="http://groovy.codehaus.org/">Groovy</a>. The title will be &#8220;<em>Groovy: the cool side of java</em>&#8221; and basically it will be an hand-on speech. No slide, just code. I will start from a simple Java code and I will rewrite it in Groovy. During the demo/live I will give some basics explanation about how is groovy working and we will see the power and the value that Groovy add at the top of JVM compared with a static language like Java.</p>
<p>Here the code that I wrote:</p>
<pre class="brush: groovy;">
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;

class TestJava{
   public static void main(String[] args) {
      new DoStuffs().doIt();
   }
}

class DoStuffs{

   public void doIt(){

   List al = new ArrayList();

   System.out.println(&quot;* Initial size of&quot;+al.getClass()+&quot; :  &quot; + al.size() + &quot; with elements &quot;+al);

   al.add(&quot;this&quot;);
   al.add(&quot;is&quot;);
   al.add(&quot;just&quot;);
   al.add(&quot;test&quot;);

   System.out.println(&quot;* Final size of&quot;+al.getClass()+&quot; :  &quot; + al.size() + &quot; with elements &quot;+al);
   System.out.println(&quot;* Let's add some stuffs&quot;);

   al.add(2,&quot;a&quot;);
   al.add(3,&quot;cool&quot;);

   System.out.println(&quot;* Done &quot;+al);
   System.out.println(&quot;&quot;);

   System.out.println(&quot;- Before ordering&quot;+al);
   Collections.sort(al);
   System.out.println(&quot;- After ordering &quot;+al);
   System.out.println(&quot;&quot;);

   List al2 = al.subList(2,4);

   System.out.println(&quot;- Sublisting &quot;+al2);
   System.out.println(&quot;&quot;);

   if(al.size() &gt; 0){
      for (int i=0; i&lt; al.size(); i++) {
         al.set(i, al.get(i)+&quot; \\o/ &quot;);
      }

      System.out.println(&quot;Let's show the element in the reverse order: &quot;);
      for (int i=al.size()-1; i&gt;=0; i--){
         System.out.println(&quot;&lt;&quot;+i+&quot;&gt; &quot;+al.get(i));
      }
   }

   if(al != null){
      List sub = new ArrayList();

      for (int i=0; i&lt; al.size(); i++) {
         String el = (String) al.get(i);
         if(el.contains(&quot;t&quot;)) {
            sub.add(al.get(i));
         }
      }
      System.out.println(&quot;- After grep &quot;+ sub);
    }
  }
}
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/932/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=932&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2010/02/04/road-to-fosdem-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>
	</item>
		<item>
		<title>Cerea Fair Report &#8211; Jan 2010</title>
		<link>http://blog.foppiano.org/2010/01/20/cerea-fair-report-jan-2010/</link>
		<comments>http://blog.foppiano.org/2010/01/20/cerea-fair-report-jan-2010/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 15:47:32 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ambassador]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[opensource & freesoftware]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[fair]]></category>
		<category><![CDATA[fedoraproject]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lug]]></category>
		<category><![CDATA[meeting]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=918</guid>
		<description><![CDATA[Cerea is a small town, near Verona, characterized by a really huge exposition area, called AreaExpo, which counts a long series of events and expositions every year.
Before talking about the conference, I would like to talk a bit about the story of this event. Since I had the first contact and we got introduced to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=918&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Cerea is a small town, near Verona, characterized by a really huge exposition area, called <a href="http://www.areaexp.com/">AreaExpo</a>, which counts a long series of events and expositions every year.</p>
<p>Before talking about the conference, I would like to talk a bit about the story of this event. Since I had the first contact and we got introduced to the possibility to have an active participation there, I was convinced on the importance of it. As Italian ambassadors we had to consider it as a key event.</p>
<p><img class="aligncenter" src="http://farm5.static.flickr.com/4034/4290118744_9faa771229_d.jpg" alt="" width="331" height="500" /></p>
<p>Everything was possible thanks to Emanuele, friend and university mate, involved in some NPO of the area: LUGMan, Protezione civile, ARCO, etc. During <a href="http://blog.foppiano.org/2009/06/11/memobyte-2009-mantova/">MemoByte 2009</a>, he introduced us to this fair and propose a huge Fedora participation.<br />
I attended the Summer edition on August with Davide to have a look at the area and a better idea of the place. I was really impressed about it. Basically, the exposition area is divided into two parts: the exposition and the conference room with spots for 250 people.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://farm3.static.flickr.com/2743/4290114920_d57dfc0ceb_d.jpg" alt="" width="331" height="500" /></p>
<p>The initial proposal and idea was to fill the conference room with talks during all the fair; I could say my best wish was to have Chitlesh Goorah speaking about Fedora FEL.</p>
<p>Unfortunately (and sadly) the Italian community didn&#8217;t answer very well (when I proposed it I got as answer only complains about the distance, the place, this and that&#8230;and so on&#8230;), so we (me and Emanuele) decided to do something lighter, less heavy (even for who organized) and with less resources required: a booth in the exposition area.</p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2688/4289372863_9d27034e38_d.jpg" alt="" width="500" height="331" /></p>
<p>The (dream) team was composed by 5 people: Me, Alexjan, Marina, Davide and Lorenzo. The plans was to get there on Friday evening (I arrived on Saturday morning), stay there until Sunday evening. Due the impossibility to came back every night I arranged to sleep in an hostel near Cerea.</p>
<p>The exposition was really good, basically full of electronic, used stuff, radio amateurs, and various mixed booths. Indeed it was full of people; the organizations estimate around <span style="text-decoration:line-through;">10000</span> <strong>~25000</strong> people attended the event. We got also a really nice position, we were placed near the entrance, where all the people passed by after entering in the area.<br />
A lot of people stop by and try the computers, ask questions and talk with us; statistically speaking most of them were above 40 years old, but I saw also some young people (not so many anyway).<br />
The most common question people asked us were: &#8220;why not Ubuntu?&#8221; and &#8220;what are the differences?&#8221;; someone asked also &#8220;What is Linux?&#8221;. Next time I&#8217;ll bring a &#8220;fedora starter kit&#8221; with the most Frequently Asked Questions. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2785/4290117310_3c085f5379_d.jpg" alt="" width="500" height="331" /></p>
<p>I really like the way we handle this event. My organization was a bit confused at the beginning because 1000Km distance are not handy but the team did and excellent job. In fact I cannot to say thanks to Stefano, who didn&#8217;t join us but did a fundamental job by helping me, like my right hand.<br />
On my side, there are a lot of stuff that have to be improved, we manage successfully to get some CDs and DVDs (thanks to fedora) but due to some problems I couldn&#8217;t print the latest 4 foundation banner, we used the old Freedom, Voice and Infinity one.<br />
Next time I want to design and try a new gadget concept. Instead of having CDs and DVDs I want to prepare and give a transparent plastic CD cover without a CD/DVD inside, but just information about:<br />
• what is fedora<br />
• how download and burn it<br />
• how to join</p>
<p>Why this? Because, in Italy at least, most of the people who ask for CD/DVD don&#8217;t really need it, they need only the cover and the information printed on it.</p>
<p>Last but not least, this, for now, will be the last even I&#8217;ll organize in Italy. I&#8217;m now busy on FAmSCo stuffs and I still have to getting in and being more productive. Moreover the distance doesn&#8217;t help me, and I would like to see if the Italian community can walk without me.</p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2768/4290111406_191187b520_d.jpg" alt="" width="500" height="331" /></p>
<p>I also decided to give my Ambassador polo, which is really big for me (I&#8217;ll get a new one two size less) to Alexjan. Like Max give to me for my involvement in Fedora, I&#8217;ll give to him because he is really doing good stuff for Fedora.<br />
I have to congratulate with him and with all of the team, for the passion, the care and the effort they put on this event: I have to give my welcome to Marina, who will join our ambassador community.</p>
<p>In conclusion, this event was double worthy. Looking the relation with the outside world, we spot in a prolific (linux speaking) area and will give us opportunities to have at least two/three events per year. Looking internally we enhance our team, our relations, I believe having a face-to-face speaking was 10000 better than talking only via email and fortified your relation for present and future.</p>
<p>You can find additional photos from the event <a href="http://www.flickr.com/photos/lfoppiano/sets/72157623247389422/">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/918/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/918/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/918/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/918/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/918/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/918/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/918/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/918/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/918/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/918/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=918&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2010/01/20/cerea-fair-report-jan-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4034/4290118744_9faa771229_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2743/4290114920_d57dfc0ceb_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2688/4289372863_9d27034e38_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2785/4290117310_3c085f5379_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2768/4290111406_191187b520_d.jpg" medium="image" />
	</item>
		<item>
		<title>Shake me like a monkey &#8211; Dave Mattews Band</title>
		<link>http://blog.foppiano.org/2010/01/12/shake-me-like-a-monkey-dave-mattews-band/</link>
		<comments>http://blog.foppiano.org/2010/01/12/shake-me-like-a-monkey-dave-mattews-band/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 17:58:28 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[blues]]></category>
		<category><![CDATA[dave mattews band]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[rock]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=910</guid>
		<description><![CDATA[

The thing I like about you
Is the way you
The way that you do
The thing I like about you
God and the devil alone
Could not have made you up
The two must have worked
As one together
So good just wanna eat you up
Nothing like the real thing
Lick your sticky fingers boy
And sing for your dinner sing
Come on pretty baby
Make [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=910&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:center;"><code><span style="text-align:center; display: block;"><a href="http://blog.foppiano.org/2010/01/12/shake-me-like-a-monkey-dave-mattews-band/"><img src="http://img.youtube.com/vi/jRZsDxrRUng/2.jpg" alt="" /></a></span></code></p>
<p style="text-align:center;">
<p style="text-align:center;">The thing I like about you<br />
Is the way you<br />
The way that you do<br />
The thing I like about you</p>
<p style="text-align:center;">God and the devil alone<br />
Could not have made you up<br />
The two must have worked<br />
As one together</p>
<p style="text-align:center;">So good just wanna eat you up<br />
Nothing like the real thing<br />
Lick your sticky fingers boy<br />
And sing for your dinner sing</p>
<p style="text-align:center;">Come on pretty baby<br />
Make me lose my mind<br />
Everybody get together<br />
Gonna make love shine</p>
<p style="text-align:center;">Do you know what it is<br />
To feel the light of love inside you?<br />
And all the darkness falls away<br />
If you feel the way I feel<br />
Then believe we have the answer<br />
I&#8217;ve been searching for tonight<br />
Love me baby love me baby<br />
Shake me like a monkey baby<br />
Forever I&#8217;m yours yours yours<br />
Yeah forever I&#8217;m</p>
<p style="text-align:center;">I, I, I<br />
Can&#8217;t stop thinking about you<br />
Yeah yeah yeah<br />
Why would I want to</p>
<p style="text-align:center;">I like my coffee with toast and jelly<br />
But I&#8217;d rather be licking<br />
From your back to your belly<br />
I, I, I<br />
Think I&#8217;m going to</p>
<p style="text-align:center;">Do you know what it is<br />
To feel the light of love inside you?<br />
And all the darkness falls away<br />
If you feel the way I feel<br />
Then believe we have the answer<br />
I&#8217;ve been searching for tonight<br />
Love me baby love me baby<br />
Shake me like a monkey baby<br />
Forever I&#8217;m yours yours yours<br />
Yeah forever I&#8217;m</p>
<p style="text-align:center;">Cigarettes and coffee<br />
Broken hearts and being lonely<br />
Little girls and ponies<br />
Things that go together</p>
<p style="text-align:center;">Yes and no<br />
You have to choose<br />
Romeo and Juliet<br />
The hang man and his noose<br />
You and me we go good together</p>
<p style="text-align:center;">Kiss kiss make a wish<br />
Hope that it comes true<br />
I ain&#8217;t waiting for the world to change<br />
Gonna change the world for you</p>
<p style="text-align:center;">Come on pretty baby<br />
Make you lose your mind<br />
Everybody get together<br />
Gonna make love shine</p>
<p style="text-align:center;">Do you know what it is<br />
To feel the light of love inside you?<br />
And all the darkness falls away<br />
If you feel the way I feel<br />
Then believe we have the answer<br />
I&#8217;ve been searching for tonight<br />
Love me baby love me baby<br />
Shake me like a monkey baby<br />
Forever I&#8217;m yours yours yours<br />
Yeah forever I&#8217;m</p>
<p style="text-align:center;">Come on everybody<br />
Make me lose my mind<br />
Everybody get together<br />
Gonna make love shine</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/910/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/910/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/910/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/910/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/910/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/910/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/910/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/910/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/910/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/910/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=910&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2010/01/12/shake-me-like-a-monkey-dave-mattews-band/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/jRZsDxrRUng/2.jpg" medium="image" />
	</item>
		<item>
		<title>In groovy we trust!!</title>
		<link>http://blog.foppiano.org/2009/12/25/in-groovy-we-trust/</link>
		<comments>http://blog.foppiano.org/2009/12/25/in-groovy-we-trust/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 14:26:02 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[groovy]]></category>
		<category><![CDATA[opensource & freesoftware]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[byte-code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[epo]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[trust]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=908</guid>
		<description><![CDATA[
As promise to Venkat Subramaniam, here the photo of our groovy manifest outside our office (unfortunately our colleague Davide wasn&#8217;t present that day), here the same photo with some notes.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=908&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p><img class="aligncenter" src="http://farm5.static.flickr.com/4045/4213310908_c4707a4e51_d.jpg" alt="" width="500" height="331" /></p>
<p>As promise to Venkat Subramaniam, here the photo of our <a href="http://groovy.codehaus.org/">groovy</a> manifest outside our office (unfortunately our colleague Davide wasn&#8217;t present that day), here the same photo with some <a href="http://www.flickr.com/photos/lfoppiano/4213310908/">notes</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/908/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=908&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/12/25/in-groovy-we-trust/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4045/4213310908_c4707a4e51_d.jpg" medium="image" />
	</item>
		<item>
		<title>copying, zipping selecting files with Groovy</title>
		<link>http://blog.foppiano.org/2009/12/21/copying-zipping-selecting-files-con-groovy/</link>
		<comments>http://blog.foppiano.org/2009/12/21/copying-zipping-selecting-files-con-groovy/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:41:15 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[know-how]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=890</guid>
		<description><![CDATA[Today I had to select some files from different directories copy in another. Despite it seemed a simple task, it wasn&#8217;t. The files were a lot, so I had to pack it.
Basically the structure of the directories was something like:

/A/US/file1
/A/US/file2
/A/US/file3
/A/UK/file1
/A/UK/file2
/A/UK/file3
...
/B/US/file1
/B/US/file2
/B/US/file3
/B/UK/file1
/B/UK/file2
/B/UK/file3
and I had to select the N% of the files from each of the second level [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=890&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Today I had to select some files from different directories copy in another. Despite it seemed a simple task, it wasn&#8217;t. The files were a lot, so I had to pack it.</p>
<p>Basically the structure of the directories was something like:</p>
<blockquote><p><code><br />
/A/US/file1<br />
/A/</code><code>US</code><code>/file2<br />
/A/</code><code>US</code><code>/file3<br />
/A/UK/file1<br />
/A/UK/file2<br />
/A/UK/file3<br />
...<br />
/B/US/file1<br />
/B/US/file2<br />
/B/US/file3<br />
/B/UK/file1<br />
/B/UK/file2<br />
/B/UK/file3</code></p></blockquote>
<p>and I had to select the N% of the files from each of the second level directories (AA,AB, AC&#8230;and so on).</p>
<p>I wrote this short script that select only N% (parameter inside the script) of the files from the directory, pack it (without any structure information), and copy on the destination directory:</p>
<pre class="brush: groovy;">
import java.util.zip.*

def createZip(destination, fileList) {
    try{
        byte[] buffer = new byte[1024];

        ZipOutputStream out = new ZipOutputStream(new
            FileOutputStream(destination));
        out.setLevel(Deflater.DEFAULT_COMPRESSION);
        fileList.each { selected -&amp;gt;
            FileInputStream in_ = new FileInputStream(selected);
            //the new File(selected).getName() return just the name of the file,
            //in order to remove the directory structure inside.
            out.putNextEntry(new ZipEntry(new File(selected).getName()));

            int len;
            while ((len = in_.read(buffer)) &amp;gt; 0) {
                out.write(buffer, 0, len);
            }
            out.closeEntry();
            in_.close();
        }
        out.close();
    }
    catch (IllegalArgumentException iae)
    {
        iae.printStackTrace();
    }
    catch (FileNotFoundException fnfe)
    {
        fnfe.printStackTrace();
    }
    catch (IOException ioe)
    {
        ioe.printStackTrace();
    }

    null
}

/**
  * Script
 **/
def rootDirectory = /C:\inputDirectory/
def outputDirectory = /C:\outputDirectory/

if ((!new File(rootDirectory).list()) || (! new File(outputDirectory).list())){
    println &quot;Error. Input or Output directory are not valid.&quot;
    throw new RuntimeException() //TODO: understand how to exit without raising an exception
}

def directories = ['A', 'B', 'C', 'D']
def percentageRules = 5    //5 = 5% of the rules for each country

directories.each{ subDirectory -&amp;gt;
    println &quot;listing ${rootDirectory}\\${subDirectory}&quot;
    def directoryList = new File(&quot;${rootDirectory}\\${subDirectory}&quot;).list()
    if( directoryList ){
        directoryList.each{ elem -&amp;gt;
            def fileList = new File(&quot;${rootDirectory}\\${subDirectory}\\${elem}&quot;).list().grep{ !it.contains('out') }
            def numberFiles = (fileList.size() * 5 / 100) as Integer
            if ((numberFiles == 0) &amp;amp;&amp;amp; (fileList.size() &amp;gt; 0)) {
                numberFiles = fileList.size()
            }
            println &quot;Zipping ${numberFiles} (${percentageRules}%) of files from ${rootDirectory}\\${subDirectory}\\${elem} into ${outputDirectory}\\${subDirectory}-${elem}.zip&quot;

            if(numberFiles){
                fileList = fileList.collect{ e -&amp;gt;
                    &quot;${rootDirectory}\\${subDirectory}\\${elem}\\${e}&quot;
                }
                createZip(&quot;${outputDirectory}\\${subDirectory}-${elem}.zip&quot;, fileList[0..&amp;lt;numberFiles])

                /* The old version copied the files instead of zipping it, using AntBuilder,
                   you can use it if you don't need to zip the files. */
                /*
                fileList[0..&amp;lt;numberFiles].each{
                    ( new AntBuilder ( ) ).copy ( file : &quot;${rootDirectory}\\${subDirectory}\\${elem}\\${inputF}&quot; , tofile : &quot;${outputDirectory}\\${inputF}&quot; )
                }
                */
            }
        }
    }
}
</pre>
<p>I wrote it rushing, and I copied somewhere the first method (which was java), so might be errors or better ways. Anyway any suggestion are welcome.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/890/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=890&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/12/21/copying-zipping-selecting-files-con-groovy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>
	</item>
		<item>
		<title>Elected for FAmSCo!</title>
		<link>http://blog.foppiano.org/2009/12/19/elected-for-famsco/</link>
		<comments>http://blog.foppiano.org/2009/12/19/elected-for-famsco/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 16:38:12 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ambassador]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[opensource & freesoftware]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[famsco]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=896</guid>
		<description><![CDATA[Yesterday I got the good news about fedora FAmSCo (Fedora Ambassador Sterling Committee) elections, I was running for: I got elected in the board!
I finally want to do something different for Fedora, writing less code and start getting some responsibility, in order to grow in some aspects I&#8217;ve seen before.
Many many compliments to who have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=896&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Yesterday I got the <a href="https://www.redhat.com/archives/fedora-ambassadors-list/2009-December/msg00234.html">good news</a> about fedora FAmSCo (Fedora Ambassador Sterling Committee) elections, I <a href="http://blog.foppiano.org/2009/11/15/my-nomination-for-famsco/">was running for</a>: I got elected in the board!</p>
<p>I finally want to do something different for Fedora, writing less code and start getting some responsibility, in order to grow in some aspects I&#8217;ve seen before.</p>
<p>Many many compliments to who have been elected and also for who haven&#8217;t, I&#8217;m sure next time will go better <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/896/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=896&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/12/19/elected-for-famsco/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>
	</item>
		<item>
		<title>Groovy &amp; Grails eXchange 2009</title>
		<link>http://blog.foppiano.org/2009/12/17/groovy-grails-exchange-2009/</link>
		<comments>http://blog.foppiano.org/2009/12/17/groovy-grails-exchange-2009/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:10:11 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[meetings]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[enjoy]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[grails]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[trip]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[visit]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=882</guid>
		<description><![CDATA[The Groovy &#38; Grails eXchange, organized by skillsmatter, was the first international conferences about software development I&#8217;ve attended in my career. Before I was more concentrated mostly on Linux and the Fedoraproject (FOSDEM, Linux TAG for instance).
The conference was headed in London from December 9th to 10th. The first day was focuses on Groovy and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=882&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p><a href="http://skillsmatter.com/event/java-jee/groovy-grails-exchange-2009">The Groovy &amp; Grails eXchange</a>, organized by <a href="http://skillsmatter.com">skillsmatter</a>, was the first international conferences about software development I&#8217;ve attended in my career. Before I was more concentrated mostly on Linux and the Fedoraproject (FOSDEM, Linux TAG for instance).</p>
<p>The conference was headed in London from December 9th to 10th. The first day was focuses on Groovy and the second on Grails. I went there with Raffaele and Davide, friends and colleague of mine (we work together in Holland). As the conferences last Wednesday and Thursday, we decided to get Friday off and stay in London during the week end to visit the city (I already been there almost one year ago but London is always lovely).</p>
<p>At the conference there were about 150 people, mostly developers (heavy twitter users), in particular freelancers and really small companies from all over the world.</p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2578/4190898007_4110f311cf_d.jpg" alt="" width="500" height="331" /></p>
<p>I really found all the speech really interesting. Guillaume Laforge spoke about the features of <a href="http://www.slideshare.net/glaforge/groovy-to-infinity-and-beyond-groovygrails-exchange-2009">Groovy 1.7 and above</a> (we even had a brief introduction about what are they considering to include in the 1.8 release) and Graeme Rocher introduced Grails 1.2.0 and the new plug-in development approach.</p>
<p>Based on my work in Holland, I really appreciated the &#8216;Groovy code kata&#8217;  talk from Dierk Koening and the DSL speech from Verkat Subramaniam. I had a really interesting chat with him about DSLs, in particular about what we should consider more important to balance the DSL we designed and are using in our project (I swear, I&#8217;ll post about it). I found Verkat really good to make examples in order to help you to understand better complexed concepts (<em>DSL by examples</em> might be a suggestion for next book <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</p>
<p><img class="aligncenter" src="http://farm5.static.flickr.com/4037/4190895439_2b940ec176_d.jpg" alt="" width="500" height="331" /></p>
<p>You can find some photos about the conference itself <a href="http://www.flickr.com/photos/lfoppiano/tags/ggx/">here</a> and <a href="http://groovy-grails-exchange.ning.com/photo/photo">here</a>.</p>
<p>I&#8217;m really satisfied by this conference, I met a lot of people and exchange contact with them to keep in touch and, at the end I won <em>Grails in Action</em> book. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  I also met also three guys from the NLGUG (Netherland Groovy User Group): Erik, Alex and Sebastien. They were really interested to my work with groovy and they <a href="http://www.meetup.com/nl-gug/messages/boards/thread/8231626">invited me to give a speech,</a> next year, to the Groovy User Group. I already accepted because it&#8217;s cool to meet new people on topics I like and I&#8217;ll get the opportunity to get more integrated into the local groups.</p>
<p>I met also Alberto Brandolini (ZioBrando for most of the people), who is a trainer for skillsmatter and a expert software architect in Italy. Before, he saw only a name and a photo but fortunately I had the opportunity to spoke with him to exchange some ideas and suggestion.</p>
<p>After the conferences we enjoy London for three days. I can say that I love London, and it&#8217;s strange because London is chaotic and I&#8217;m not use to it, but it has a fashion and a people integration level that is difficult(may be impossible) to find in any other cities (maybe in New York, but I&#8217;ve never been there, yet).</p>
<p>Maybe after my project in Holland will be finished, I&#8217;ll move there for a while, who knows. But we&#8217;ll see.</p>
<p>From London I can say that English people are really crazy, or they drink like sponges. I really would like to know how many drink they drink: I saw people with t-shirt in the middle of the night with around 0° or below, is it possible to survive? I would like to know how can they drink English beers: for me are too warm and they have a strange bitter after-taste.</p>
<p>Anyway London is fantastic and beautiful.  Period.</p>
<p>I took some photos, you can find <a href="http://www.flickr.com/photos/lfoppiano/sets/72157622890945195/">here</a>.</p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2804/4190843887_1b854d79ce_d.jpg" alt="" width="500" height="331" /></p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2634/4190841829_bfdcf2b775_d.jpg" alt="" width="500" height="331" /></p>
<p><img class="aligncenter" src="http://farm5.static.flickr.com/4009/4190907665_0cd395ee96_d.jpg" alt="" width="500" height="331" /></p>
<p><img class="aligncenter" src="http://farm5.static.flickr.com/4007/4190914543_c2620f4363_d.jpg" alt="" width="500" height="331" /></p>
<p><img class="aligncenter" src="http://farm3.static.flickr.com/2650/4191681372_774e841049_d.jpg" alt="" width="500" height="331" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/882/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/882/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/882/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/882/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/882/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=882&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/12/17/groovy-grails-exchange-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2578/4190898007_4110f311cf_d.jpg" medium="image" />

		<media:content url="http://farm5.static.flickr.com/4037/4190895439_2b940ec176_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2804/4190843887_1b854d79ce_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2634/4190841829_bfdcf2b775_d.jpg" medium="image" />

		<media:content url="http://farm5.static.flickr.com/4009/4190907665_0cd395ee96_d.jpg" medium="image" />

		<media:content url="http://farm5.static.flickr.com/4007/4190914543_c2620f4363_d.jpg" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2650/4191681372_774e841049_d.jpg" medium="image" />
	</item>
		<item>
		<title>300 Days of swine flu</title>
		<link>http://blog.foppiano.org/2009/11/27/300-days-of-swine-flu/</link>
		<comments>http://blog.foppiano.org/2009/11/27/300-days-of-swine-flu/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 23:00:11 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[real life]]></category>
		<category><![CDATA[300]]></category>
		<category><![CDATA[bullshit]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[flu]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[swine]]></category>
		<category><![CDATA[swine flu]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=866</guid>
		<description><![CDATA[This draw can explain more than 1000 worlds why this flu is a fake..

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=866&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>This draw can explain more than 1000 worlds why this flu is a fake..</p>
<p style="text-align:center;"><img class="aligncenter" src="http://www.funpic.hu/files/pics/00037/00037273.jpg" alt="" width="481" height="979" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/866/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=866&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/11/27/300-days-of-swine-flu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>

		<media:content url="http://www.funpic.hu/files/pics/00037/00037273.jpg" medium="image" />
	</item>
		<item>
		<title>Melegnano&#8230;</title>
		<link>http://blog.foppiano.org/2009/11/25/melegnano/</link>
		<comments>http://blog.foppiano.org/2009/11/25/melegnano/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 21:27:04 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[real life]]></category>
		<category><![CDATA[city]]></category>
		<category><![CDATA[italy]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=873</guid>
		<description><![CDATA[When I was in Italy, I was used to travel by bus to go to work. About a year ago they renew the website and give to customers the possibility to subscribe to a newsletter that announced changes in the path of the bus, due to works on the street and so on.
I still a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=873&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p><span style="color:#000000;"></span>When I was in Italy, I was used to travel by bus to go to work. About a year ago they renew the website and give to customers the possibility to subscribe to a newsletter that announced changes in the path of the bus, due to works on the street and so on.</p>
<p>I still a subscriber of this newsletter (that I guess is useful), more for laziness, but tonight I receive a message about a variation of path in <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=melegnano,+italy&amp;sll=37.0625,-95.677068&amp;sspn=34.945679,72.246094&amp;ie=UTF8&amp;hq=&amp;hnear=Melegnano+Milan,+Lombardy,+Italy&amp;ll=45.352869,9.323101&amp;spn=0.060558,0.141106&amp;t=h&amp;z=13">Melegnano</a>.</p>
<p>First of all two words about it. Melegnano can be considered <strong>the pain in the ass</strong> of every person is travelling to Milan from the South, vice-versa (but also in any direction that include this bloody city). There aren&#8217;t big streets to avoid you to pass inside the city and the roads available are small, that means <strong>queues every day and almost every hours</strong>! Every people would like to blow up Melegnano and build an highway instead (by the way I know some nice people from that city, none of them I would see hurt).</p>
<p>Anyway, today I saw an email from the bus company said the path will change for one day because in Melegnano there will be men at works for the pruning of plants in one street (Viale repubblica),  <strong>from 7:00 to 16:00</strong>. Guess, that street is one of the main street people use to pass throu the city. What does that means? Jungle!</p>
<p>After reading that I starts guessing all my emotions during the travels to and back to work (and I can say that I&#8217;m one of the luckiest guys in my company), with car or bus. Will be able to come back to my previous life? Probably not. That because the quality of life is mostly based on the environment around your job, and I guess, the travel can change a lot how you feel (like or dislike) your job.</p>
<p>Of course there isn&#8217;t a place without defect&#8230;but we&#8217;ll see (after the Dutch winter) <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/873/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=873&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/11/25/melegnano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>
	</item>
		<item>
		<title>My nomination for FAmSCo</title>
		<link>http://blog.foppiano.org/2009/11/15/my-nomination-for-famsco/</link>
		<comments>http://blog.foppiano.org/2009/11/15/my-nomination-for-famsco/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 19:37:27 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ambassador]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[famsco]]></category>
		<category><![CDATA[nomination]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=870</guid>
		<description><![CDATA[Yeah. I finally decided, after long guessing, pondering and evaluating, to add myself to the Fedora Ambassador Sterling Committee election nomination list. I really appreciated that Francesco Ugolini asked me to nominate myself for FAmSCo elections, that means the job I&#8217;m hardly doing for the Italian Community is good.
My long-terms goals are really simple (and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=870&subd=bayzone&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Yeah. I finally decided, after long guessing, pondering and evaluating, to <strong>add myself to the <a href="https://fedoraproject.org/wiki/Ambassadors/SteeringCommittee/Election/2009Nominations#Luca_Foppiano_.28lfoppiano.29">Fedora Ambassador Sterling Committee election nomination list</a></strong>. I really appreciated that Francesco Ugolini asked me to nominate myself for FAmSCo elections, that means the job I&#8217;m hardly doing for the Italian Community is good.</p>
<p>My long-terms goals are really simple (and you can find it in the link above) and world wide:</p>
<ul>
<li> Keep FAmSCo up to date on Local groups activities/problems/improvements;</li>
<li> Improve communication within and outside the FAmSCo and the fedora ambassadors project</li>
<li> Help Ambassadors with events organization, supporting Ambassadors ideas and initiatives.</li>
</ul>
<p>Vote vote vote (for me of course) <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/870/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&blog=63216&post=870&subd=bayzone&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/11/15/my-nomination-for-famsco/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d7dfa79907f7bf28fb2f6680c94e0f6?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">bayzone</media:title>
		</media:content>
	</item>
	</channel>
</rss>