<?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 &#187; java</title>
	<atom:link href="http://blog.foppiano.org/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.foppiano.org</link>
	<description>this blog is a feature</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:06:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.foppiano.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>fucking the white bunny rabbit &#187; java</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" />
	<atom:link rel='hub' href='http://blog.foppiano.org/?pushpress=hub'/>
		<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[ambassador]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Linux]]></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 code. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=932&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As most of you already know (if you don&#8217;t, never mind, I will forgive you <img src='http://s0.wp.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>
<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></p>
<br />  <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/gofacebook/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/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&amp;blog=63216&amp;post=932&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="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>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&amp;blog=63216&amp;post=908&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<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>
<br />  <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/gofacebook/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/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&amp;blog=63216&amp;post=908&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="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>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[conferences]]></category>
		<category><![CDATA[groovy]]></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 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=882&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<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://s1.wp.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://s0.wp.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>
<br />  <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/gofacebook/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/882/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/882/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/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&amp;blog=63216&amp;post=882&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="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>IntelliJIdea: we are defined the best IDE&#8230;</title>
		<link>http://blog.foppiano.org/2009/11/10/intellijidea-we-are-defined-the-best-ide/</link>
		<comments>http://blog.foppiano.org/2009/11/10/intellijidea-we-are-defined-the-best-ide/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:31:36 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[intellijIdea]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[leader]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=861</guid>
		<description><![CDATA[&#8230; not for nothing (&#8216;mica pizza e fichi&#8217;)! Thanks to Raffaele who kindly provide me this screenshot.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=861&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230; not for nothing (&#8216;mica pizza e fichi&#8217;)!</p>
<p><img class="aligncenter size-full wp-image-860" title="ide_blame" src="http://bayzone.files.wordpress.com/2009/11/ide_blame.png?w=700" alt="ide_blame"   /></p>
<p>Thanks to <a href="http://it.linkedin.com/pub/raffaele-cigni/4/808/539">Raffaele</a> who kindly provide me this screenshot.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/861/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/861/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/861/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=861&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/11/10/intellijidea-we-are-defined-the-best-ide/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://bayzone.files.wordpress.com/2009/11/ide_blame.png" medium="image">
			<media:title type="html">ide_blame</media:title>
		</media:content>
	</item>
		<item>
		<title>Grails 1.0.4</title>
		<link>http://blog.foppiano.org/2009/02/18/grails-104/</link>
		<comments>http://blog.foppiano.org/2009/02/18/grails-104/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 09:38:07 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[opensource & freesoftware]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[grails]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[rpms]]></category>
		<category><![CDATA[srpms]]></category>

		<guid isPermaLink="false">http://blog.foppiano.org/?p=734</guid>
		<description><![CDATA[I finally packaged grails 1.0.4 on RPM. This minor update fix some bugs and maintain compatibility with previous version. The package has been processed with mock and rpmlint. You may find RPM &#38; SRPM here: RPM: grails, grails-javadoc SRPM: grails Please report any error you may find on it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=734&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I finally packaged grails 1.0.4 on RPM. This minor update fix some bugs and maintain compatibility with previous version. The package has been processed with mock and rpmlint.</p>
<p>You may find RPM &amp; SRPM here:</p>
<ul>
<li>RPM: <a href="http://projects.byte-code.com/pub/bytecode/fedora10/noarch/grails-1.0.4-1.fc10.noarch.rpm">grails</a>, <a href="http://projects.byte-code.com/pub/bytecode/fedora10/noarch/grails-javadoc-1.0.4-1.fc10.noarch.rpm">grails-javadoc</a></li>
<li>SRPM: <a href="http://projects.byte-code.com/pub/bytecode/fedora10/SRPMS/grails-1.0.4-1.fc10.src.rpm">grails</a></li>
</ul>
<p>Please report any error you may find on it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/734/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=734&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2009/02/18/grails-104/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>rewrite</title>
		<link>http://blog.foppiano.org/2007/10/23/rewrite/</link>
		<comments>http://blog.foppiano.org/2007/10/23/rewrite/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 15:33:20 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[webapps]]></category>
		<category><![CDATA[wicket]]></category>

		<guid isPermaLink="false">http://bayzone.wordpress.com/2007/10/23/rewrite/</guid>
		<description><![CDATA[Ok, I choose. I will rewrite my webapp with wicket. Too cool!!!!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=371&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ok, I choose. I will rewrite my webapp with <a href="http://wicket.apache.org/">wicket</a>.</p>
<p>Too cool!!!!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bayzone.wordpress.com/371/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bayzone.wordpress.com/371/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=371&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2007/10/23/rewrite/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>Hibernate my love</title>
		<link>http://blog.foppiano.org/2007/10/13/hibernate-my-love/</link>
		<comments>http://blog.foppiano.org/2007/10/13/hibernate-my-love/#comments</comments>
		<pubDate>Sat, 13 Oct 2007 09:26:32 +0000</pubDate>
		<dc:creator>whitenoise</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://bayzone.wordpress.com/2007/10/13/hibernate-my-love/</guid>
		<description><![CDATA[Ma quanto fiQo è Hibernate!?!?!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=365&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 align="center">Ma quanto fiQo è <a href="http://www.hibernate.org">Hibernate</a>!?!?!</h3>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bayzone.wordpress.com/365/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bayzone.wordpress.com/365/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bayzone.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bayzone.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bayzone.wordpress.com/365/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.foppiano.org&amp;blog=63216&amp;post=365&amp;subd=bayzone&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.foppiano.org/2007/10/13/hibernate-my-love/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>
