<?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>Alessandro's Weblog - Perchè l'essenziale è invisibile agli occhi</title>
	<atom:link href="http://alessandrof.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alessandrof.wordpress.com</link>
	<description>php html css ajax joomla oscommerce ubuntu linux</description>
	<lastBuildDate>Thu, 19 Jun 2008 20:09:01 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alessandrof.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Alessandro's Weblog - Perchè l'essenziale è invisibile agli occhi</title>
		<link>http://alessandrof.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alessandrof.wordpress.com/osd.xml" title="Alessandro&#039;s Weblog - Perchè l&#039;essenziale è invisibile agli occhi" />
	<atom:link rel='hub' href='http://alessandrof.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Class Map : esempio introduttivo ( Java )</title>
		<link>http://alessandrof.wordpress.com/2008/06/19/map-esempio-introduttivo/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/19/map-esempio-introduttivo/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 19:18:56 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[fondamenti di informatica]]></category>
		<category><![CDATA[hash map]]></category>
		<category><![CDATA[hashmap]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[treepmap]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=26</guid>
		<description><![CDATA[Link utili : Documentazione Sun : Map Documentazione Sun : HashMap Documentazione Sun : TreeMap Breve introduzione : Una &#8220;mappa&#8221; è una classe che associa ad un oggetto chiave ( key ) un oggetto valore ( value ) . Le mappe non possono contenere chiavi &#8220;duplicate&#8221;, cioè che abbiano lo stesso valore key. Questo significa [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=26&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Link utili :</p>
<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html" target="_blank">Documentazione Sun : Map</a><br />
<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html" target="_blank">Documentazione Sun : HashMap</a><br />
<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/TreeMap.html" target="_blank">Documentazione Sun : TreeMap</a></p>
<p><span style="text-decoration:underline;">Breve introduzione :</span></p>
<p>Una &#8220;mappa&#8221; è una classe che associa ad un oggetto chiave ( key ) un oggetto valore ( value ) . Le mappe non possono contenere chiavi &#8220;duplicate&#8221;, cioè che abbiano lo stesso valore <em>key</em>. Questo significa che andando a inserire una chiave già esistente nella mappa, andremo a sovrascriverne il valore.<br />
HashMap e TreeMap sono due implementazioni della classe Map .<br />
Da notare che l&#8217; HashMap , al contrario della TreeMap, permette l&#8217;inserimento di valori null .</p>
<p><span id="more-26"></span><span style="text-decoration:underline;">Funzioni utili :</span></p>
<p><strong>isEmpty() </strong>: restituisce <em>true</em> se la mappa non contiene key e value.<br />
<strong>containsKey(key)</strong> : restituisce <em>true</em> se la mappa contiene la chiave <em>key</em> passata come argomento.<br />
<strong>containsValue(value) </strong>: restituisce <em>true </em>se la mappa contiene il valore <em>value </em>passato come argomento.<br />
<strong>get(key) </strong>: restituisce il valore associato al parametro <em>key.<br />
</em><strong>put(key,value)</strong><em> </em>: inserisce la chiave e il valore nella mappa passati come argomenti.<br />
<strong>remove(key) </strong>: rimuove la chiave ( e il valore associato ) passata come parametro .</p>
<p>Per le altre funzioni, vedere i link forniti sopra.</p>
<p><strong>Esempio HashMap :</strong></p>
<pre>import java.util.*;

public class HashMappe
{
     public static void main(String[] args)
     {
	// creamo una nuova mappa di String
	HashMap map = new HashMap();
        // nota : possiamo usare HashMap per creare un HashMap che accetti tipo1 per la chiave
        // e tipo2 per il valore.
        // Es : Hasmap map = new HashMap();
	// Avremo così un HashMap che avrà la key e la value di tipo String.

	// inserimento di una chiave / valore : map.put(key,value)
	map.put("Prova", "uno");
	map.put("Prova2", "due");
	map.put("Prova3", "tre");

	//essendo un HashMap possiamo inserire un valore nullo
	map.put(null, null);

	// stampiamo i valori inseriti
	System.out.println(map);

        // inseriamo una chiave gia esistente ,
        // vedremo che verrà sovrascritto il vecchio valore.
        map.put("Prova3","cinque");
        System.out.println(map);

        // funzioni mappe utili 

        // controlliamo se la mappa contiene la chiave Prova2
        if ( map.containsKey("Prova2") )
		System.out.println(map.get("Prova2")); // se la contiene la stampiamo

	if ( map.isEmpty() ) // controllaimo se la mappa è vuota
		System.out.println(" vuota"); // se è vuota la stampiamo

	System.out.println(map.size()); // stampiamo il numero di chiavi della mappa
     }
}</pre>
<p><strong>Esercizio ( questa volta usiamo la TreeMap ):</strong></p>
<pre>/* Scrivere il codice di una classe java che permetta di
 * memorizzare stringhe. La classe dovrà implementare una
 * funzione per memorizzare la generica stringa e una funzione
 * che permetta di verificare l'avvenuto inserimento di una
 * particolare stringa restituendo -1 se la stringa non è mai
 * stata inserita o un numero intero positivo, relativo all'
 * ordine di inserimento, se la stringa è stata effettivamente
 * inserita.
 */

import java.util.*;

public class Esercizio3_160608
{
   public static void main(String[] args)
   {
        // inizializziamo l'oggetto
        esercizio3 esercizio = new esercizio3(); 

	System.out.println(
	"Inserisco:\n" +
	"ciccio\n" +
	"ciccio\n" +
	"ciccio2\n" +
	"ciccio3\n" +
	"ciccio\n");

	// inseriamo i valori
	esercizio.insert("ciccio");
	esercizio.insert("ciccio");
	esercizio.insert("ciccio2");
	esercizio.insert("ciccio3");
	esercizio.insert("ciccio");

	// visualiziamo i valori inseriti
	System.out.println(esercizio.mappa);

	// testiamo la funziona check
	System.out.println(esercizio.check("tyht"));
	System.out.println(esercizio.check("ciccio"));
   }
}

class esercizio3
{
  public TreeMap mappa; // mappa
  public int value; 

  public esercizio3() // costruttore
  {
	mappa = new TreeMap();
	value = 1; // ci servirà per stabilire l'ordine di inserimento
  }

  public void insert(String key)
  {
	// System.out.println(value);
	mappa.put(key,value++);
	// inseriamo la key passata come argomento ed assegnamoci
	// , come valore, l'ordine di inserimento stabilito dalla
	// variabile value. Ad ogni inserimento aumentiamo il valoire
	// di value grazie a value++ . 

  }

  public int check(String stringa)
  {
	if ( this.mappa.containsKey(stringa) ) // se è presente
        {
		return this.mappa.get(stringa); // visualizziamo il valore dell'ordinamento
	}
	else // altrimenti ritorniamo -1 .
		return -1;
  }
}</pre>
<p>Ecco qui i sorgenti degli esempi di sopra.<br />
<a href="http://www.portaleale.it/blog/HashMappe.txt" target="_blank">Esempio 1</a><br />
<a href="http://www.portaleale.it/blog/Esercizio3_160608.txt" target="_blank">Esempio 2</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=26&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/19/map-esempio-introduttivo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>
	</item>
		<item>
		<title>WI-FI : Segnali d&#8217;allarme ( da Report, Rai Tre )</title>
		<link>http://alessandrof.wordpress.com/2008/06/03/wi-fi-segnali-dallarme-da-report-rai-tre/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/03/wi-fi-segnali-dallarme-da-report-rai-tre/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 19:42:44 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[(Dis)Informazione]]></category>
		<category><![CDATA[campo elettromagnetico wifi]]></category>
		<category><![CDATA[danni wi-fi]]></category>
		<category><![CDATA[lan]]></category>
		<category><![CDATA[lan rete elttrica]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[reti senza fili]]></category>
		<category><![CDATA[wi-fi]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=18</guid>
		<description><![CDATA[Domenica 11 Maggio, a Report, su Rai Tre, hanno trasmesso un servizio molto interessante sulle rete WI-FI ( senza fili ) e sui probabili danni che potrebbero causare. Il servizio : Parte 1 Parte 2 Parte 3 Potete trovare l&#8217;intero testo sul sito di Report , precisamente a questo link . &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Chi volesse eliminare [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=18&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Domenica 11 Maggio, a Report, su Rai Tre, hanno trasmesso un servizio molto interessante sulle rete WI-FI ( senza fili ) e sui probabili danni che potrebbero causare.</p>
<p><span id="more-18"></span></p>
<p>Il servizio :</p>
<p><a href="http://it.youtube.com/watch?v=6l_MdYEDdbE" target="_blank">Parte 1</a><br />
<a href="http://it.youtube.com/watch?v=LPrGUV1zDU4" target="_blank">Parte 2</a><br />
<a href="http://it.youtube.com/watch?v=ts6GAtNnWhI" target="_blank">Parte 3</a></p>
<p>Potete trovare l&#8217;intero testo sul sito di<a href="http://www.report.rai.it" target="_blank"> Report</a> , precisamente a questo<a href="http://www.report.rai.it/R2_popup_articolofoglia/0,7246,243%255E1078399,00.html" target="_blank"> link</a> .</p>
<div style="text-align:center;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<p>Chi volesse eliminare dalla propria casa la rete WI-FI può sostituirla con una rete che passa tramite i fili elettrici. Così facendo, se non sbaglio, dovreste eliminare, o quantomeno ridurre notevolmente il campo magnetico e i possibili danni provocati da questo. Queste tecnologia, un po più costosa del WI-FI , esiste ormai da anni, ma non è molto conosciuta. Perfetta per condividere una linea adsl e , grazie ai nuovi dispostivi ad alta velocità, anche per condividere  / trasferire file fra i vari pc connessi alla rete. Le velocità di trasmissione sono pari o superiori a quelle del WI-FI ( dipende dagli standard, dai dispositivi e dalle distanze) .  <span style="text-decoration:underline;">Punto di forza di questa tecnologia sembra essere la stabilità del segnale, punto debole invece del WI-FI .</span><br />
Cercando su google, ho trovato varie discussioni a riguardo. A quanto sembra, una delle migliori aziende in italia è la <a href="http://www.devolo.it/it_IT/index.html" target="_blank">Devolo</a> .<span style="text-decoration:underline;"></span></p>
<p>Consiglio, a chi fosse interessato, di consultare questo <a href="http://www.hwupgrade.it/forum/showthread.php?t=1282605" target="_blank">forum</a> .</p>
<p>Visto l&#8217;incessante aumento dell&#8217;inquinamento elettromagnetico e viste le poche informazioni  che circolano/vogliono fare circolare/si conoscono, in merito ai danni provocati da quest&#8217;ultimo, penso che sia importante eliminare dalle nostre abitazioni quante più fonti di inquinamento elettromagnetico possibili.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=18&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/03/wi-fi-segnali-dallarme-da-report-rai-tre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>
	</item>
		<item>
		<title>Spot Mac divertenti</title>
		<link>http://alessandrof.wordpress.com/2008/06/02/spot-mac-divertenti/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/02/spot-mac-divertenti/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 19:27:53 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=19</guid>
		<description><![CDATA[Cercando su Youtube il bellissimo spot &#8220;Think Different&#8221; della Apple, ho trovato per caso questi altri simpatici e divertenti spot del MAC, dove mettono a &#8220;confronto&#8221; le caratteristiche del MAC con quelle di un PC con windows . Qui sotto l&#8217;elenco dei filmati ( vi ricordo che basta cliccare sul filmato per visualizzare la pagina [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=19&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Cercando su Youtube il bellissimo spot &#8220;Think Different&#8221; della Apple, ho trovato per caso questi altri simpatici e divertenti spot del MAC, dove mettono a &#8220;confronto&#8221; le caratteristiche del MAC con quelle di un PC con windows . Qui sotto l&#8217;elenco dei filmati ( vi ricordo che basta cliccare sul filmato per visualizzare la pagina di youtube relativa ad esso ) .</p>
<p><span id="more-19"></span></p>
<p><a href="http://it.wikipedia.org/wiki/Think_Different" target="_blank">Think Different</a> :</p>
<span style="text-align:center; display: block;"><a href="http://alessandrof.wordpress.com/2008/06/02/spot-mac-divertenti/"><img src="http://img.youtube.com/vi/gLqqJDSWvyU/2.jpg" alt="" /></a></span>
<p>Spot MAC divertenti :</p>
<p><a href="http://it.youtube.com/watch?v=JQ9Dar3T2j8" target="_blank">http://it.youtube.com/watch?v=JQ9Dar3T2j8</a><br />
<a href="http://it.youtube.com/watch?v=ZDWJMnB1GaA" target="_blank">http://it.youtube.com/watch?v=ZDWJMnB1GaA</a><br />
<a href="http://it.youtube.com/watch?v=oznl9c7xdhU" target="_blank">http://it.youtube.com/watch?v=oznl9c7xdhU</a><br />
<a href="http://it.youtube.com/watch?v=BLuhahTYoCg" target="_blank">http://it.youtube.com/watch?v=BLuhahTYoCg</a><br />
<a href="http://it.youtube.com/watch?v=ypq80uNEEpE" target="_blank">http://it.youtube.com/watch?v=ypq80uNEEpE</a><br />
<a href="http://it.youtube.com/watch?v=0W7Et2fRggo" target="_blank">http://it.youtube.com/watch?v=0W7Et2fRggo</a><br />
<a href="http://it.youtube.com/watch?v=4R7gX9e_h9Q" target="_blank">http://it.youtube.com/watch?v=4R7gX9e_h9Q</a><br />
<a href="http://it.youtube.com/watch?v=iB8N2p63TSk" target="_blank">http://it.youtube.com/watch?v=iB8N2p63TSk</a><br />
<a href="http://it.youtube.com/watch?v=OL08cHRFkx0" target="_blank">http://it.youtube.com/watch?v=OL08cHRFkx0</a><br />
<a href="http://it.youtube.com/watch?v=4W2C_lIJ3Uk" target="_blank">http://it.youtube.com/watch?v=4W2C_lIJ3Uk</a><br />
<a href="http://it.youtube.com/watch?v=OBWHkkWT0Fc" target="_blank">http://it.youtube.com/watch?v=OBWHkkWT0Fc</a><br />
<a href="http://it.youtube.com/watch?v=uCjlq5jBxRA" target="_blank">http://it.youtube.com/watch?v=uCjlq5jBxRA</a><br />
<a href="http://it.youtube.com/watch?v=uxK0UNGgLgk" target="_blank">http://it.youtube.com/watch?v=uxK0UNGgLgk</a><br />
<a href="http://it.youtube.com/watch?v=NTBnKW30TS8" target="_blank">http://it.youtube.com/watch?v=NTBnKW30TS8</a><br />
<a href="http://it.youtube.com/watch?v=giVpdMCJHAA" target="_blank">http://it.youtube.com/watch?v=giVpdMCJHAA</a><br />
<a href="http://it.youtube.com/watch?v=vQrwe6Gh_aU" target="_blank">http://it.youtube.com/watch?v=vQrwe6Gh_aU</a><br />
<a href="http://it.youtube.com/watch?v=aQGBD-RBjA4" target="_blank">http://it.youtube.com/watch?v=aQGBD-RBjA4</a><br />
<a href="http://it.youtube.com/watch?v=IgR2ltYtqGQ" target="_blank">http://it.youtube.com/watch?v=IgR2ltYtqGQ</a><br />
<a href="http://it.youtube.com/watch?v=50oezQQd2o8" target="_blank">http://it.youtube.com/watch?v=50oezQQd2o8</a><br />
<a href="http://it.youtube.com/watch?v=OJ9Y238-pG4" target="_blank">http://it.youtube.com/watch?v=OJ9Y238-pG4</a><br />
<a href="http://it.youtube.com/watch?v=hpB1wt7RzBE" target="_blank">http://it.youtube.com/watch?v=hpB1wt7RzBE</a><br />
<a href="http://it.youtube.com/watch?v=34uWiuMJvvI" target="_blank">http://it.youtube.com/watch?v=34uWiuMJvvI</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=19&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/02/spot-mac-divertenti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3 : Download Day 2008</title>
		<link>http://alessandrof.wordpress.com/2008/06/01/firefox-3-download-day-2008/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/01/firefox-3-download-day-2008/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 20:29:20 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[Linux & Ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=17</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=17&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadfirefox.com/it/worldrecord" target="_blank"><img border="0" alt="Download Day 2008" src="http://www.spreadfirefox.com/sites/all/themes/spreadfirefox_RCS/images/download-day/buttons/it/180x150_02.png" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=17&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/01/firefox-3-download-day-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>

		<media:content url="http://www.spreadfirefox.com/sites/all/themes/spreadfirefox_RCS/images/download-day/buttons/it/180x150_02.png" medium="image">
			<media:title type="html">Download Day 2008</media:title>
		</media:content>
	</item>
		<item>
		<title>Open Movie : Big Buck Bunny</title>
		<link>http://alessandrof.wordpress.com/2008/06/01/open-movie-big-buck-bunny/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/01/open-movie-big-buck-bunny/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 16:33:51 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[Linux & Ubuntu]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[computer grafica]]></category>
		<category><![CDATA[grafica 3d]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=13</guid>
		<description><![CDATA[La Blender Foundation ha recentemente rilasciato il suo secondo &#8220;Open Movie&#8221; in grafica 3d : Big Buck Bunny. Il filmato è realizzato interamente con software Open Source su piattaforma Ubuntu ( guardate i titoli di coda ) . Il filmato, visionabile su youtube e vimeo, si può anche scaricare direttamente dal sito del progetto : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=13&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>La<em> Blender Foundation </em>ha recentemente rilasciato il suo secondo &#8220;Open Movie&#8221; in grafica 3d : Big Buck Bunny.<br />
Il filmato è realizzato interamente con software Open Source su piattaforma Ubuntu ( guardate i titoli di coda ) .</p>
<p>Il filmato, visionabile su <a href="http://www.youtube.com/watch?v=YE7VzlLtp-4" target="_blank">youtube</a> e <a href="http://www.vimeo.com/1084537" target="_blank">vimeo</a>, si può anche scaricare direttamente dal sito del progetto : <a href="http://www.bigbuckbunny.org/" target="_blank">http://www.bigbuckbunny.org/</a></p>
<p>E&#8217; possibile anche sostenere il gruppo comprando il doppio dvd &#8220;ufficiale&#8221; che contiene, oltre al filmato in vari formati, anche i commenti dei creatori, dei tutorial e tutto il materiale usato per la realizzazione.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=13&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/01/open-movie-big-buck-bunny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>
	</item>
		<item>
		<title>Commemorazione Giuseppe Leopizzi</title>
		<link>http://alessandrof.wordpress.com/2008/06/01/leopizzi/</link>
		<comments>http://alessandrof.wordpress.com/2008/06/01/leopizzi/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 08:53:17 +0000</pubDate>
		<dc:creator>alessandrof</dc:creator>
				<category><![CDATA[Altro]]></category>
		<category><![CDATA[aes dana]]></category>
		<category><![CDATA[frontiera]]></category>
		<category><![CDATA[leopizzi]]></category>
		<category><![CDATA[musica celtica]]></category>
		<category><![CDATA[musica irlandese]]></category>
		<category><![CDATA[rosellina guzzo]]></category>

		<guid isPermaLink="false">http://alessandrof.wordpress.com/?p=11</guid>
		<description><![CDATA[1 Giugno 2007 / 1 Giugno 2008 : commemorazione della scomparsa del musicista e compositore Giuseppe Leopizzi, avvenuta a pochi mesi dall&#8217;uscita del suo ultimo album Gelkhamar . Frontiera , Aes Dana E&#8217; stato organizzato un evento commemorativo presso l&#8217; auditorium RAI Palermo. Nel corso della sarata, verrà inoltre presentata la riedizione dell&#8217; album The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=11&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1 Giugno 2007 / 1 Giugno 2008 : commemorazione della scomparsa del musicista e compositore Giuseppe Leopizzi, avvenuta a pochi mesi dall&#8217;uscita del suo ultimo album <em>Gelkhamar</em> .</p>
<span style="text-align:center; display: block;"><a href="http://alessandrof.wordpress.com/2008/06/01/leopizzi/"><img src="http://img.youtube.com/vi/sFCYriZ1E-I/2.jpg" alt="" /></a></span>
<p><em>Frontiera , Aes Dana</em></p>
<p><span id="more-11"></span></p>
<h4>E&#8217; stato organizzato un evento commemorativo presso l&#8217; auditorium RAI Palermo.</h4>
<p>Nel corso della sarata, verrà inoltre presentata la riedizione dell&#8217; album <em>The Far Coasts of Sicily</em> ( 1983 ), primo lavoro degli Aes Dana, gruppo fondato dallo stesso Giuseppe.</p>
<p>Qui sotto la locandina :<br />
<a href="http://www.portaleale.it/antipixel/per_ricordare_Giuseppe.jpg"><img src="http://www.portaleale.it/antipixel/per_ricordare_Giuseppe.jpg" alt="giuseppe leopizzi" width="50%" /></a></p>
<p>La figlia, Sofia , subito dopo la scomparsa di suo padre, ha aperto un <a href="http://leopicksguitar.spaces.live.com/" target="_blank">blog</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alessandrof.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alessandrof.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alessandrof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alessandrof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alessandrof.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alessandrof.wordpress.com&amp;blog=3800289&amp;post=11&amp;subd=alessandrof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alessandrof.wordpress.com/2008/06/01/leopizzi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7b96a491abfbb40e152e3d1f34f8969?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alessandrof</media:title>
		</media:content>

		<media:content url="http://www.portaleale.it/antipixel/per_ricordare_Giuseppe.jpg" medium="image">
			<media:title type="html">giuseppe leopizzi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
