<?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/"
	>

<channel>
	<title>ToastedTech</title>
	<atom:link href="http://www.toastedtech.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toastedtech.com</link>
	<description>News dal mondo della tecnologia</description>
	<lastBuildDate>Fri, 23 Dec 2011 14:07:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Drupal e Ubercart: creare un prodotto-kit personalizzato via codice PHP</title>
		<link>http://www.toastedtech.com/2011/12/23/drupal-e-ubercart-creare-un-prodotto-kit-personalizzato-via-codice-php/</link>
		<comments>http://www.toastedtech.com/2011/12/23/drupal-e-ubercart-creare-un-prodotto-kit-personalizzato-via-codice-php/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 14:06:28 +0000</pubDate>
		<dc:creator>montoya</dc:creator>
				<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[ubercart]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4093</guid>
		<description><![CDATA[Per lavoro mi sono imbattuto in questa situazione: gestire un prodotto-kit in un carrello e-commerce gestito esternamente da ubercart. In pratica ho il mio negozio con tutti i prodotti standard. Il mio intento è quello di creare un nuovo prodotto-kit come composizione di altri prodotti già presenti nel negozio&#8230; ma questo via codice e non [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Per lavoro mi sono imbattuto in questa situazione: gestire un prodotto-kit in un carrello e-commerce gestito esternamente da ubercart.</p>
<p><img class="aligncenter" title="Ubercart" src="http://upload.wikimedia.org/wikipedia/commons/8/80/Ubercart_logo.png" alt="" width="281" height="288" />In pratica ho il mio negozio con tutti i prodotti standard. Il mio intento è quello di creare un nuovo prodotto-kit come composizione di altri prodotti già presenti nel negozio&#8230; ma questo via codice e non lato form admin.</p>
<p><span id="more-4093"></span></p>
<p>Per riuscire in questo intento ho dovuto mettere mano al codice PHP e gestire una serie di cose.</p>
<p>Il codice seguente eseguirà alcune operazioni: creazione di un nodo drupal di tipo prodotto kit, impostazione di alcuni parametri ed aggiornamento vari dello stesso ed infine l&#8217;aggiunta al carrello dell&#8217;utente attuale.</p>
<p>Eccolo riportato di seguito:</p>
<pre class="brush:php">// Create an object to fill the overall needed information, like type and more...
$node = (object) array();

global $user;
$account = user_load(array('uid' =&gt; $user-&gt;uid));

// WARNING: this not work properly... I've seen that uid is always set to "0"... why?
$node-&gt;uid = $account-&gt;uid;

// Specify that the new node is a product-kit node
$node-&gt;type = "product_kit";

$node-&gt;status = 1;
$node-&gt;promote = 0;
$node-&gt;sticky = 0;
$node-&gt;revision = 0;
$node-&gt;language = "";
$node-&gt;title = "Title of product-kit";
$node-&gt;body = "Body as Lorem Ipsum and so on...";
$node-&gt;teaser = "";

$file_drupal_path = "physical path of image";

$file = new stdClass();
$file-&gt;filename = basename($file_drupal_path);
$file-&gt;filepath = $file_drupal_path;
$file-&gt;filemime = mime_content_type($file_drupal_path);
$file-&gt;filesize = filesize($file_drupal_path);
$file-&gt;uid = $user-&gt;uid;
$file-&gt;timestamp = time();
drupal_write_record('files', $file);

$node-&gt;field_image_cache[0] = field_file_load($file-&gt;fid);

// In my case, 38 is a taxonomy categories
$node-&gt;taxonomy = array(38);

// 459 and 460, for example, are the two products that make up the entire product-kit
$node-&gt;products = array(459, 460);

// Ok, this is not too beautiful to see... but the lines represent the external products and the relative quantities (1 and 3)
$node-&gt;items[459]["qty"] = 1;
$node-&gt;items[460]["qty"] = 3;

node_submit($node);
node_save($node);

// Update the product-kit information
uc_product_kit_update($node);

// This statement adds the new product-kit to the current user cart automatically
uc_cart_add_item($node-&gt;nid);</pre>
<div class="shr-publisher-4093"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/12/23/drupal-e-ubercart-creare-un-prodotto-kit-personalizzato-via-codice-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I nomi reali in Pro Evolution Soccer 2012: stadi, giocatori, nazionali e PES shop</title>
		<link>http://www.toastedtech.com/2011/11/06/i-nomi-reali-in-pro-evolution-soccer-2012-stadi-giocatori-nazionali-e-pes-shop/</link>
		<comments>http://www.toastedtech.com/2011/11/06/i-nomi-reali-in-pro-evolution-soccer-2012-stadi-giocatori-nazionali-e-pes-shop/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 18:36:31 +0000</pubDate>
		<dc:creator>lopinsjk</dc:creator>
				<category><![CDATA[Giochi]]></category>
		<category><![CDATA[pes 2012]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4085</guid>
		<description><![CDATA[L’edizione 2012 del calcio targato Konami promette di recuperare il GAP che la serie ha subito dalla controparte Electronic Arts negli ultimi anni. Come ogni anno siamo qui per aiutarvi. Questo post sarà in continuo aggiornamento. Nazionali EUROPA (Stesse di PES 2011) AFRICA (Stesse di PES 2011) AMERICA Canada  Costa Rica  Honduras  Mexico  Panama (al [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>L’edizione 2012 del calcio targato Konami promette di recuperare il GAP che la serie ha subito dalla controparte Electronic Arts negli ultimi anni. Come ogni anno siamo qui per aiutarvi. <strong>Questo post sarà in continuo aggiornamento</strong>.</p>
<p><a href="http://www.toastedtech.com/2011/11/06/i-nomi-reali-in-pro-evolution-soccer-2012-stadi-giocatori-nazionali-e-pes-shop/1-550/" rel="attachment wp-att-4087"><img class="aligncenter size-medium wp-image-4087" title="Pes 2012" src="http://www.toastedtech.com/wp-content/uploads/2011/11/1-550-480x268.jpg" alt="" width="480" height="268" /><span id="more-4085"></span></a></p>
<h2>Nazionali</h2>
<h3>EUROPA</h3>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">(Stesse di <a href="http://www.toastedtech.com/2010/10/13/i-nomi-reali-in-pro-evolution-soccer-2011-stadi-giocatori-nazionali-e-pes-shop/">PES 2011</a>)</span></span></span></p>
<h3>AFRICA</h3>
<h3><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">(Stesse di <a href="http://www.toastedtech.com/2010/10/13/i-nomi-reali-in-pro-evolution-soccer-2011-stadi-giocatori-nazionali-e-pes-shop/">PES 2011</a>)</span></span></span></h3>
<h3>AMERICA</h3>
<ul>
<li><span class="Apple-style-span" style="line-height: normal;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Canada</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;">Costa Rica</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Honduras</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Mexico </span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;">Panama (al posto di Trinidad e Tobago)</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> USA</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Argentina</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Bolivia</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Brazil </span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;">Chile</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Colombia </span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;">Ecuador </span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;">Paraguay</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Peru</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Uruguay</span></span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small;"> Venezuela</span></span></li>
</ul>
<h3>ASIA</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Australia</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Bahrain</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> China</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Iran</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Japan</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Jordan (al posto di Oman) </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Kuwait </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">North Korea</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Qatar</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Saudi Arabia</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> South Korea </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Syria </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Thailand</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> UAE</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Uzbekistan </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">New Zealand</span></li>
</ul>
<h2>Club</h2>
<h3>Liga BBVA (Lega con licenza + Tutte le squadre con licenza)</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Athletic Club</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Club Atlético de Madrid</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Barcelona</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> RCD Espanyol </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Getafe CF </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">G</span><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">ranada CF </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Levante UD</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> RCD Mallorca</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Málaga CF</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> CA Osasuna</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Real Racing Club</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Rayo Vallecano</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Real Betis Balompié</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Real Madrid CF </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Real Sociedad de Fútbol</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Real Zaragoza</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Sevilla FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Real Sporting de Gijón</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Valencia CF </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Villarreal CF</span></li>
</ul>
<h3>Lega Inglese (Solo Manchester United e Tottenham con licenze, le altre squadre avranno nomi fake)</h3>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Arsenal </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Aston Villa</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Blackburn Rovers</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Bolton Wanderers</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Chelsea</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Everton </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Fulham </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Liverpool </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Manchester City</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Manchester United (con licenza)</strong></span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Newcastle </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Norwich City</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Queens Park Rangers</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Stoke City</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Sunderland </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Swansea City </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Tottenham Hotspur (con licenza)</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">West Bromwich Albion</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Wigan Athletic</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Wolverhampton Wanderers</span></span></span></span></li>
</ul>
<h3>Ligue 1 (Lega con licenza + Tutte le squadre con licenza)</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">AC Ajaccio</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> AJ Auxerre</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Girondins de Bordeaux </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Stade Brestois 29 </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">SM Caen</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Dijon </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Évian Thonon Gaillard FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> LOSC Lille Métropole</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Lorient </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Olympique Lyonnais </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Olympique de Marseille</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Montpellier Hérault SC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">AS Nancy-Lorraine </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">OGC Nice </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Paris Saint-Germain FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Stade Rennais FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Sochaux-Montbéliard</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> AS Saint-Étienne</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Toulouse FC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Valenciennes FC</span></li>
</ul>
<h3>Lega Italiana (Tutte le squadre con licenza)</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Atalanta BC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Bologna FC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Cagliari Calcio</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Calcio Catania </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">AC Cesena </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">AC Chievo Verona</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> ACF Fiorentina</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Genoa CFC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Internazionale Milano </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Juventus </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">S.S. Lazio </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">US Lecce </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">A.C. Milan </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">SSC Napoli</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Novara Calcio</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> USC Palermo</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> Parma FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> AS Roma </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">AC Siena </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Udinese Calcio</span></li>
</ul>
<h3>Eredivisie (Lega con licenza + Tutte le squadre con licenza)</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">ADO Den Haag</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> AZ Alkmaar</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> AFC Ajax</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> De Graafschap </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">SBV Excelsior</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Groningen</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> FC Twente </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">FC Utrecht Feyenoord</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> SC Heerenveen </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Heracles Almelo </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">NAC Breda </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">NEC Nijmegen </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">PSV Eindhoven </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">RKC Waalwijk </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;">Roda JC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; font-size: small; line-height: normal;"> VVV-Venlo Vitesse</span></li>
</ul>
<h3>Lega Portoghese (solo Benfica, Porto e Sporting avranno la licenza, le altre saranno presenti con nomi fake)</h3>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Académica </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Beira-Mar </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Benfica (con licenza)</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Braga </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">CD Feirense</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Gil Vicente</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> UD Leiria</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Marítimo </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Nacional</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Paços Ferreira</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>FC Porto (con licenza)</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">Rio Ave</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Sporting de Portugal (con licenza)</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> </span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;">SC Olhanense</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Vitória Guimarães</span></span></span></span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Vitória Setúbal</span></span></span></span></li>
</ul>
<p>&nbsp;</p>
<h3>Altri Team Europei (29 squadre)</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">KRC Genk</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Standard Liège </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Dinamo Zagreb</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> AC Sparta Praga </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">FC Copenhague</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> HJK Helsinki</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Bayer 04 Leverkusen</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> F.C. Bayern München </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">AEK Atenas</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Olympiacos FC</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Panathinaikos FC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">PAOK F.C.</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Rosenborg BK</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Wis?a Kraków </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">FC O?elul Gala?i</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> CSKA Moscú </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">FC Rubín Kazán </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Zenit San Petersburgo </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Celtic FC </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Rangers FC AIK </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">FC Basel </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">FC Zürich</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Be?ikta? </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Fenerbahçe</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Galatasaray </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Trabzonspor </span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Shajtar Donetsk</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> Dynamo de Kyiv</span></li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>Squadre Latino-Americane</h3>
<ul>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;">Boca Juniors</span></li>
<li><span class="Apple-style-span" style="color: #262626; font-family: TrebuchetMS, sans-serif; line-height: 18px; font-size: small;"> River Plate</span></li>
</ul>
<h3>Copa Libertadores</h3>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Argentina: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Argentinos Juniors &#8211;  Estudiantes &#8211;  Vélez Sarsfield &#8211;  Godoy Cruz &#8211;  Independiente</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Bolivia</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> : Jorge Wilstermann &#8211;  Oriente Petrolero &#8211;  Bolívar</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Brazil</strong><strong>: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Internacional &#8211;  Santos  &#8211; Fluminense  &#8211; Cruzeiro &#8211;  Corinthians &#8211;  Grêmio</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Chile</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> : Universidad Católica  &#8211; Colo-Colo  &#8211; Unión Española</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Colombia: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Junior &#8211;  Once Caldas &#8211;  Deportes Tolima</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Ecuador</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> : Liga de Quito &#8211;  Emelec  &#8211; Deportivo Quito</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Mexico</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> : América &#8211;  San Luis  &#8211; Jaguares</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Paraguay: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Libertad  &#8211; Guaraní  &#8211; Cerro Porteño</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Peru</strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> : Universidad San Martín  &#8211; León de Huánuco  &#8211; Alianza Lima</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Uruguay: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Peñarol &#8211;  Nacional &#8211;  Liverpool</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"><strong>Venezuela: </strong></span></span></span><span style="color: #262626;"><span style="font-family: TrebuchetMS, sans-serif;"><span style="font-size: small;"> Deportivo Táchira &#8211;  Caracas &#8211;  Deportivo Petare</span></span></span></p>
<h2>Squadre classiche</h2>
<h3>Classic ENGLAND</h3>
<ul>
<li>Siyanen – David SEAMAN</li>
<li>Adion – Tony ADAMS</li>
<li>Sumerslade – Gareth SOUTHGATE</li>
<li>Kilcan – Martin KEOWN</li>
<li>Saintpealer – Stuart PEARCE</li>
<li>Imghe – Paul INCE</li>
<li>Plyguts – David PLATT</li>
<li>Malmoran – Steve McMANAMAN</li>
<li>Galbone – Paul GASCOIGNE</li>
<li>Il Rance – Ian WRIGHT</li>
<li>Shirare – Alan SHEARER</li>
<li>Shelearn – Peter SHILTON</li>
<li>Molna – Bobby MOORE</li>
<li>Gal Nevor – Gary NEVILLE</li>
<li>Salton – Kenny SAMSON</li>
<li>Storms – Paul SCHOLES</li>
<li>Roden – Bryan ROBSON</li>
<li>Horner – Glenn HODDLE</li>
<li>Chiringbone – Bobby CHARLTON</li>
<li>Shilecon – Teddy SHERINGHAM</li>
<li>Burdner – John BARNES</li>
<li>Warol – Chris WADDLE</li>
<li>Linden – Gary LINEKER</li>
</ul>
<h3>Classic FRANCE</h3>
<ul>
<li>Bathez – Fabien BARTHEZ</li>
<li>Dairsell – Marcel DESAILLY</li>
<li>Bruin – Laurent BLANC</li>
<li>Telin – Lilian THURAM</li>
<li>Lirazal – Bixente LIZARAZU</li>
<li>Deroem – Didier DESCHAMPS</li>
<li>Mayonele – Claude MAKÉLÉLÉ</li>
<li>Pooroe – Emmanuel PETIT</li>
<li>Zirom – Zinedine ZIDANE</li>
<li>Djiutaleff – Youri DJORKAEFF</li>
<li>Derrai – Christophe DUGARRY</li>
<li>Coule – Grégory COUPET</li>
<li>Tremarz – Marius TRÉSOR</li>
<li>Leghasci – Frank LEBOEUF</li>
<li>Saromol – Willy SAGNOL</li>
<li>Argu – Manuel AMOROS</li>
<li>Calmela – Vincent CANDELA</li>
<li>Katanyfu – Christian KAREMBEU</li>
<li>Proquinei – Michel PLATINI</li>
<li>Waiyrin – Sylvain WILTORD</li>
<li>Calcoma – Eric CANTONA</li>
<li>Guyrontin – Stéphane GUIVARC’H</li>
<li>Putam – Jean-Pierre PAPIN</li>
</ul>
<h3>Classic GERMANY</h3>
<ul>
<li>Huber – Oliver KAHN</li>
<li>Kolmann – Jürgen KOHLER</li>
<li>Maletz – Lothar MATTHÄUS</li>
<li>Burckland – Guido BUCHWALD</li>
<li>Zoner – Matthias SAMMER</li>
<li>Jernisch – Jens JEREMIES</li>
<li>Sloeger – Bernd SCHNEIDER</li>
<li>Bnarck – Andreas BREHME</li>
<li>Dartley – Sebastian DEISLER</li>
<li>Meyno – Andreas MÖLLER</li>
<li>Bilkos – Oliver BIERHOFF</li>
<li>Itzmoler – Bodo ILLGNER</li>
<li>Behrengauna – Franz BECKENBAUER</li>
<li>Hemton – Thomas HELMER</li>
<li>Linuthe – Thomas LINKE</li>
<li>Ziede – Christian ZIEGE</li>
<li>Reunsara – Stefan REUTER</li>
<li>Hoeitor – Thomas HÄSSLER</li>
<li>Rewtelize – Karl-Heinz RUMMENIGGE</li>
<li>Lisagawski – Pierre LITTBARSKI</li>
<li>Vauner – Rudi VÖLLER</li>
<li>Mjarnie – Gerd MÜLLER</li>
<li>Clantzgan – Jürgen KLINSMANN</li>
</ul>
<h3>Classic ITALY</h3>
<ul>
<li>Zoru – Dino ZOFF</li>
<li>Baroini – Franco BARESI</li>
<li>Corsacoupe – Alessandro COSTACURTA</li>
<li>Vayengoddo – Pietro VIERCHOWOD</li>
<li>Majuzheni – Paolo MALDINI</li>
<li>Dinmo Bratto – Dino BAGGIO</li>
<li>Almelini – Demetrio ALBERTINI</li>
<li>Besnola – Nicola BERTI</li>
<li>Doramore – Roberto DONADONI</li>
<li>Lon Barron – Roberto BAGGIO</li>
<li>Verroni – Gianluca VIALLI</li>
<li>Zervbo – Walter ZENGA</li>
<li>Palunca – Gianluca PAGLIUCA</li>
<li>Fenorra – Ciro FERRARA</li>
<li>Benboli – Giuseppe BERGOMI</li>
<li>De Libro – Angelo DI LIVIO</li>
<li>Taugani – Marco TARDELLI</li>
<li>Maroghi – Roberto MANCINI</li>
<li>Sorua – Gianfranco ZOLA</li>
<li>Loggu – Paolo ROSSI</li>
<li>Vileni – Christian VIERI</li>
<li>Caccili – Pierluigi CASIRAGHI</li>
<li>Ricchini – Luigi RIVA</li>
</ul>
<h3>Classic NETHERLANDS</h3>
<ul>
<li>Farzel Haar – VAN DER SAR</li>
<li>Tyutau – Jaap STAM</li>
<li>Fil Da Buuni – Frank DE BOER</li>
<li>Raiginar – Michael REIZIGER</li>
<li>Hofu – Phillip COCU</li>
<li>Weltar – Aron WINTER</li>
<li>Darit – Edgar DAVIDS</li>
<li>Bemkap – Dennis BERGKAMP</li>
<li>Ron Da Buuni – Ronald DE BOER</li>
<li>Orhaimnalz – Marc OVERMARS</li>
<li>Creibaad – Patrick KLUIVERT</li>
<li>Von Heikemen – Hans VAN BREUKELEN</li>
<li>Romaal Kultan – Ronald KOEMAN</li>
<li>Kjuna – Ruud KROL</li>
<li>Waltoor – Jan WOUTERS</li>
<li>Jaltang – Wim JANSEN</li>
<li>Jorme – Wim JONK</li>
<li>Raukoores – Frank RIJKAARD</li>
<li>Niilsentz – Johan NEESKENS</li>
<li>Gulaas – Ruud GULLIT</li>
<li>Cwarim – Johan CRUYFF</li>
<li>Von Bolsen – Marco VAN BASTEN</li>
<li>Van Ooidork – Pierre VAN HOOIJDONK</li>
</ul>
<h3>Classic ARGENTINA</h3>
<ul>
<li>Pulzato – Nery PUMPIDO</li>
<li>Runzal – Oscar RUGGERI</li>
<li>Semini – Roberto SENSINI</li>
<li>Chiero – José CHAMOT</li>
<li>Siljome – Diego SIMEONE</li>
<li>Rogueiro – Fernando REDONDO</li>
<li>Camirra – Claudio CANIGGIA</li>
<li>Guly Lomer – GUSTAVO LÓPEZ</li>
<li>Malgani – Diego MARADONA</li>
<li>Querant – Mario KEMPES</li>
<li>Baquistata – Gabriel BATISTUTA</li>
<li>Ferem – Ubaldo FILLOL</li>
<li>Palteza – Daniel PASSARELLA</li>
<li>Amoni – Roberto AYALA</li>
<li>Soim – Juan Pablo SORÍN</li>
<li>Curalle – José Luis CUCIUFFO</li>
<li>Barenqua – Sergio BATISTA</li>
<li>Calassi – Américo GALLEGO</li>
<li>Anlleroz – Osvaldo ARDILES</li>
<li>Bujutava – Jorge BURRUCHAGA</li>
<li>Bazqueni – Jorge VALDANO</li>
<li>Dioraz – Ramón DÍAZ</li>
<li>Bolibo – Abel BALBO</li>
</ul>
<h3>Classic BRAZIL</h3>
<ul>
<li>Taralm – Cláudio TAFFAREL</li>
<li>Aldahilla – ALDAIR Nascimento dos Santos</li>
<li>Ricalro – RICARDO ROCHA</li>
<li>Jirjonho – JORGINHO</li>
<li>Leymauro – LEONARDO</li>
<li>Malo Sila – MAURO SILVA</li>
<li>Dorte – DUNGA</li>
<li>Rasan – RAÍ</li>
<li>Zilcao – ZINHO</li>
<li>Benar – BEBETO</li>
<li>Rozerio – ROMÁRIO</li>
<li>Lemon – LEAO</li>
<li>Zalbo – ZAGO</li>
<li>Cashoo – CAFÚ</li>
<li>Brevel – BRANCO</li>
<li>Colseiso – Flavio CONCEIÇAO</li>
<li>Salmaio – CÉSAR SAMPAIO</li>
<li>Zilre – ZICO</li>
<li>Elimelto – EDMUNDO</li>
<li>Palm – PELÉ</li>
<li>Ganarrin – GARRINCHA</li>
<li>Camre – CARECA</li>
<li>Miracir – Luís Antônio Corréa da Costa “MÜLLER”</li>
</ul>
<div class="shr-publisher-4085"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/11/06/i-nomi-reali-in-pro-evolution-soccer-2012-stadi-giocatori-nazionali-e-pes-shop/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>File per quaderno partita doppia</title>
		<link>http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/</link>
		<comments>http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 10:45:48 +0000</pubDate>
		<dc:creator>montoya</dc:creator>
				<category><![CDATA[Grafica]]></category>
		<category><![CDATA[economia]]></category>
		<category><![CDATA[grafica vettoriale]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[partita doppia]]></category>
		<category><![CDATA[ragioneria]]></category>
		<category><![CDATA[svg]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4075</guid>
		<description><![CDATA[Ciao a tutti. Innanzitutto mi scuso per tutto questo periodo di inattività ma spero di rifarmi leggermente perché io tengo molto a questo blog. Mi rifaccio vivo quest&#8217;oggi con un post particolare&#8230; quasi inutile a dire il vero Mia sorella studia economia e ieri per caso ho notato il mitico quadernone da partita doppia&#8230; bei [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Ciao a tutti. Innanzitutto mi scuso per tutto questo periodo di inattività ma spero di rifarmi leggermente perché io tengo molto a questo blog.</p>
<p>Mi rifaccio vivo quest&#8217;oggi con un post particolare&#8230; quasi inutile a dire il vero <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/lezioni-di-economia-aziendale-e-ragioneria_1/" rel="attachment wp-att-4076"><img class="aligncenter size-full wp-image-4076" title="lezioni-di-economia-aziendale-e-ragioneria_1" src="http://www.toastedtech.com/wp-content/uploads/2011/11/lezioni-di-economia-aziendale-e-ragioneria_1.jpg" alt="" width="320" height="285" /></a></p>
<p>Mia sorella studia <a href="http://www.ec.unipg.it/ez_new/">economia</a> e ieri per caso ho notato il mitico quadernone da <a href="http://it.wikipedia.org/wiki/Partita_doppia">partita doppia</a>&#8230; bei ricordi perché pure io feci <a href="http://www.itcgassisi.it/">ragioneria</a> alle superiori!</p>
<p>Mi sono però detto&#8230; invece che comprare un quaderno del genere, perché non farne uno artigianalmente?</p>
<p><span id="more-4075"></span></p>
<p>Allora ho iniziato subito a cercare su internet qualcosa del genere, ma non ho trovato niente di niente.</p>
<p>A questo punto, ho preso in quaderno e con <a href="http://inkscape.org/?lang=it">Inkscape</a> sotto mano ho iniziato a disegnare, arrivando ad un qualcosa di più o meno carino <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>Questi sono i file per stampare un quaderno con la partita doppia:</p>
<ul>
<li>sorgente svg (da rinominare in .svg per motivi arcani di wordpress): <a href="http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/partita-doppia-svg/" rel="attachment wp-att-4078">scarica</a></li>
<li>output pdf: <a href="http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/partita-doppia/" rel="attachment wp-att-4077">scarica</a></li>
</ul>
<p>I file sopracitati sono rilasciati secondo la <a href="http://creativecommons.org/licenses/by-sa/2.5/">cc-by-sa 2.5</a></p>
<div class="shr-publisher-4075"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/11/05/file-per-quaderno-partita-doppia/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Trova musicisti nella tua città con Miuzika.com</title>
		<link>http://www.toastedtech.com/2011/10/19/trova-musicisti-nella-tua-citta-con-miuzika-com/</link>
		<comments>http://www.toastedtech.com/2011/10/19/trova-musicisti-nella-tua-citta-con-miuzika-com/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 14:35:15 +0000</pubDate>
		<dc:creator>danypi</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[città]]></category>
		<category><![CDATA[musicisti]]></category>
		<category><![CDATA[trovare musicisti]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4039</guid>
		<description><![CDATA[Ci sono molte persone a cui piace suonare e che vorrebbero condividere questa passione con qualcun&#8217;altro magari formando un gruppo.  Molto spesso però quando si intende formare un gruppo la parte più difficile non è suonare ma trovare le persone giuste con cui farlo. E chi di voi ha avuto almeno un gruppo sa di [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Ci sono molte persone a cui piace suonare e che vorrebbero condividere questa passione con qualcun&#8217;altro magari formando un gruppo.  Molto spesso però quando si intende formare un gruppo la parte più difficile non è suonare ma trovare le persone giuste con cui farlo. E chi di voi ha avuto almeno un gruppo sa di cosa parlo.</p>
<p style="text-align: center;">
<a href="http://www.miuzika.com/" title="www.miuzika.com"><br />
<img class="aligncenter size-full wp-image-4045" title="miuzika2" src="http://www.toastedtech.com/wp-content/uploads/2011/10/miuzika2.png" alt="" width="484" height="140" /><br />
</a>
</p>
<p>Da pochi giorni è on-line <a title="www.miuzika.com" href="http://www.miuzika.com">www.miuzika.com</a> che cerca di risolvere questo problema.<br />
In modo semplice e veloce è possibile entrare in contatto con centinaia di persone che hanno voglia di suonare e trovare in pochi click quelle più adatte per formare il proprio gruppo.</p>
<p>Il funzionamento è molto semplice e intuitivo.</p>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">ci si registra</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">si compila il proprio profilo, inserendo gli strumenti, i generi e la città dove si suona.</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">si cercano persone. </span></li>
</ul>
<p>Il punto di forza è proprio la ricerca . Infatti, basta semplicemente specificare la città dove si sta cercando qualcuno. Se i risultati sono troppi con pochi click è possibile filtrare gli utenti trovati e saranno mostrati solo quelli con le caratteristiche specificate.</p>
<p>Al momento il sito è ancora in fase Beta e a breve saranno aperte nuove sezioni, come quella in cui sarà possibile registrare il proprio gruppo.</p>
<p>&nbsp;</p>
<div class="shr-publisher-4039"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/10/19/trova-musicisti-nella-tua-citta-con-miuzika-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good bye Deus ex Machina</title>
		<link>http://www.toastedtech.com/2011/10/06/good-bye-deus-ex-machina/</link>
		<comments>http://www.toastedtech.com/2011/10/06/good-bye-deus-ex-machina/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 08:09:36 +0000</pubDate>
		<dc:creator>lopinsjk</dc:creator>
				<category><![CDATA[Varie]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[steve jobs]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4031</guid>
		<description><![CDATA[5 Ottobre 2011: muore Steve Jobs. Oggi un informatico si sente più solo. &#160;]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>5 Ottobre 2011: muore Steve Jobs. Oggi un informatico si sente più solo.</p>
<p><a href="http://www.toastedtech.com/2011/10/06/good-bye-deus-ex-machina/www-apple-com-2011-10-6-10-6-2-2/" rel="attachment wp-att-4034"><img class="aligncenter size-medium wp-image-4034" title="www.apple.com 2011-10-6 10-6-2" src="http://www.toastedtech.com/wp-content/uploads/2011/10/www.apple_.com-2011-10-6-10-6-21-480x243.png" alt="" width="480" height="243" /></a></p>
<p>&nbsp;</p>
<div class="shr-publisher-4031"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/10/06/good-bye-deus-ex-machina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox  e Thunderbird 6</title>
		<link>http://www.toastedtech.com/2011/08/20/firefox-e-thunerbird-6/</link>
		<comments>http://www.toastedtech.com/2011/08/20/firefox-e-thunerbird-6/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 10:52:42 +0000</pubDate>
		<dc:creator>sistemista</dc:creator>
				<category><![CDATA[Senza Categoria]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4022</guid>
		<description><![CDATA[Oramai la Mozilla Foundation ci ha preso gusto a rilasciare major release, in pochissimo tempo. Basti pensare che sono passati pochi mesi (forse 2 ) e già è uscito Firefox 6. Per chi vuole installarlo su Ubuntu può farlo in modo rapido da ppa. Se avete Ubuntu 11.04 basta aprire un terminale: sudo add-apt-repository ppa:ubuntu-mozilla-security/ppa [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Oramai la Mozilla Foundation ci ha preso gusto a rilasciare major release, in pochissimo tempo.<br />
Basti pensare che sono passati pochi mesi (forse 2 ) e già è uscito Firefox 6.</p>
<p><a href="http://www.toastedtech.com/2011/08/20/firefox-e-thunerbird-6/firefox6/" rel="attachment wp-att-4023"><img class="aligncenter size-full wp-image-4023" title="firefox6" src="http://www.toastedtech.com/wp-content/uploads/2011/08/firefox6.jpeg" alt="" width="228" height="221" /></a><br />
Per chi vuole installarlo su Ubuntu può farlo in modo rapido da <a href="https://launchpad.net/ubuntu/+ppas">ppa</a>.<br />
<span id="more-4022"></span><br />
Se avete Ubuntu 11.04 basta aprire un terminale:<br />
<code>sudo add-apt-repository ppa:ubuntu-mozilla-security/ppa</code><br />
<code>sudo apt-get update &amp;&amp; sudo apt-get dist-upgrade</code></p>
<p>&nbsp;</p>
<p>Per ubuntu 10.04 e 10.10:<br />
<code>sudo add-apt-repository ppa:mozillateam/firefox-stable</code><br />
<code>sudo apt-get update &amp;&amp; sudo apt-get upgrade</code></p>
<p>Per Thunderbird c&#8217;è da aggiungere questo repo:<br />
<code>sudo add-apt-repository ppa:mozillateam/thunderbird-stable</code></p>
<p>e installarlo con apt:</p>
<p><code>apt-get install thunderbird</code></p>
<p>&nbsp;</p>
<p>Nella prossima release di Ubuntu, thunderbird sarà il default mail client.<br />
Ciao</p>
<div class="shr-publisher-4022"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/08/20/firefox-e-thunerbird-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPA tester: verifica la tua rete wifi!</title>
		<link>http://www.toastedtech.com/2011/08/20/wpa-tester-verifica-la-tua-rete-wifi/</link>
		<comments>http://www.toastedtech.com/2011/08/20/wpa-tester-verifica-la-tua-rete-wifi/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 10:37:54 +0000</pubDate>
		<dc:creator>sistemista</dc:creator>
				<category><![CDATA[Senza Categoria]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=4016</guid>
		<description><![CDATA[Sei un cliente Alice, Fastweb o Infostrada? Se si e se sei in possesso del loro router, leggi bene quello che stò per dirti. I famosi ISP citati sopra, utilizzano un metodo standard di generazione psk, cioè la password wpa2 che ti danno insieme al loro router è facilmente rintracciabile. Se non hai cambiato la [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Sei un cliente Alice, Fastweb o Infostrada?</p>
<p>Se si e se sei in possesso del loro router, leggi bene quello che stò per dirti.</p>
<p>I famosi ISP citati sopra, utilizzano un metodo standard di generazione psk, cioè la password wpa2 che ti danno insieme al loro router è facilmente rintracciabile.</p>
<p>Se non hai cambiato la password wpa2 della tua rete wifi , allora potresti essere vulnerabile.</p>
<p><a href="http://www.toastedtech.com/2011/08/20/wpa-tester-verifica-la-tua-rete-wifi/wpatester-2/" rel="attachment wp-att-4018"><img class="aligncenter size-full wp-image-4018" title="wpatester" src="http://www.toastedtech.com/wp-content/uploads/2011/08/wpatester1.jpeg" alt="" width="204" height="204" /></a></p>
<p>Infatti esiste per Android, ma anche per altre piattaforme un app che ti permette di accedere a reti wifi dei provider in modo semplice e veloce.<br />
<span id="more-4016"></span></p>
<p>Perciò collegati a internet e scarica nel tuo smartphone Andorid, l&#8217;app WPA Tester.</p>
<p>Una volta installata avviala ed esegui una scansione delle reti wifi.</p>
<p>Se è presente anche la tua e sulla sinistra del SSID (nome della rete) vi è una striscia verde sono dolori, perchè con molta probabilitàl&#8217;app riuscirà a collegarsi al tuo router.</p>
<p>Prova a collegarti e se ci riesci corri a cambiare la password wpa2 del tuo router <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Questo articolo serve solo per farti capire, se la tua rete è al sicuro oppure no.</p>
<p>Infatti basta cercare su google per capire come l&#8217;app riesce a collegarsi alla rete wifi.</p>
<p>L&#8217;app non è pensata per accedere a reti wifi altrui, ma a solo scopo didattico.</p>
<p>Il presente articolo vuole darti una mano e ricordati che accedere a reti wifi altrui è reato.</p>
<p><a href="http://www.youtube.com/watch?v=MDVyp-Ihe60">Wpa Tester</a></p>
<div class="shr-publisher-4016"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/08/20/wpa-tester-verifica-la-tua-rete-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote web-desktop per Android</title>
		<link>http://www.toastedtech.com/2011/08/20/remote-web-desktop-per-android/</link>
		<comments>http://www.toastedtech.com/2011/08/20/remote-web-desktop-per-android/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 10:02:47 +0000</pubDate>
		<dc:creator>sistemista</dc:creator>
				<category><![CDATA[Senza Categoria]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=3612</guid>
		<description><![CDATA[Oramai mi stò specializzando con Android e perciò oggi vi propongo un&#8217;altra applicazione curiosa. L&#8217;applicazione che vi propongo oggi si chiama Remote Web Desktop, e vi permette di gestire il vostro android tramite browser web. Lo potete installare dal Market Android e troverete due versioni: la Free e quella a pagamento. Per me basta e [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Oramai mi stò specializzando con Android <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  e perciò oggi vi propongo un&#8217;altra applicazione curiosa.<br />
L&#8217;applicazione che vi propongo oggi si chiama Remote Web Desktop, e vi permette di gestire il vostro android tramite browser web.<br />
Lo potete installare dal Market Android e troverete due versioni: la Free e quella a pagamento.<br />
<a href="http://www.toastedtech.com/2011/08/20/remote-web-desktop-per-android/remotewebdesktop/" rel="attachment wp-att-4011"><img class="aligncenter size-full wp-image-4011" title="remotewebdesktop" src="http://www.toastedtech.com/wp-content/uploads/2011/08/remotewebdesktop.jpeg" alt="" width="204" height="204" /></a> Per me basta e avanza la free!<br />
<span id="more-3612"></span><br />
Comunque una volta scaricata e installata l&#8217;applicazione, collegatevi ad una rete wifi, e avviate RWD.<br />
Ora dovete specificare alcune cose:</p>
<ul>
<li>La porta sul quale il servizio di RWD è in ascolto ( di default è la 8999)</li>
<li>Una password di sicurezza</li>
<li>Selezionare Start Server</li>
</ul>
<p>A questo punto un messaggio vi dirà che avete avviato il server sull&#8217; IP del telefono ( ad esempio 192.168.1.121, dipende dalla vostra rete) e che la porta è quella che avete specificato prima.</p>
<p>Adesso aprite il browser e andate nell url http://ind_ip_android:8999 e dopo aver inserito le credenziali avrete il telefono a vostra disposizione.</p>
<p>Una bella caratteristica è quella della wireless keyboard.</p>
<p>Infatti potete selezionare questa opzione dal telefono, su impostazioni-&gt;Lingua e Tastiera e selezionando WiFi Keyboard, potrete scrivere con la tastiera del vostro pc direttamente sul telefono.</p>
<p>Comodo no?<br />
<a href="http://www.youtube.com/watch?v=mK4dqSEvsmM">Remote Web Desktop</a></p>
<div class="shr-publisher-3612"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/08/20/remote-web-desktop-per-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APKTor, rendere Android simile a Debian</title>
		<link>http://www.toastedtech.com/2011/08/20/apktor-rendere-android-simile-a-debian/</link>
		<comments>http://www.toastedtech.com/2011/08/20/apktor-rendere-android-simile-a-debian/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 09:46:48 +0000</pubDate>
		<dc:creator>sistemista</dc:creator>
				<category><![CDATA[Senza Categoria]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=3938</guid>
		<description><![CDATA[In realtà non è proprio cosi, ma grazie ad APKTor possiamo aggiornare il nostro smartphone Android, come faremmo con una qualsiasi Debian. Infatti, APKTor, dispone di un repository come apt o aptitude, che possiamo sfruttare per aggiornare le nostre applicazioni. In realtà APKTor è anche famoso, perchè permette di avere delle applicazioni &#8220;premium&#8221; che di [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>In realtà non è proprio cosi, ma grazie ad APKTor possiamo aggiornare il nostro smartphone Android, come faremmo con una qualsiasi Debian.<br />
Infatti, APKTor, dispone di un repository come apt o aptitude, che possiamo sfruttare per aggiornare le nostre applicazioni.<br />
In realtà APKTor è anche famoso, perchè permette di avere delle applicazioni &#8220;premium&#8221; che di norma sarebbero a pagamento, gratis.</p>
<p><a href="http://www.toastedtech.com/2011/08/20/apktor-rendere-android-simile-a-debian/apktor-publicmarket-android-189570-185x185-1270069741-18177/" rel="attachment wp-att-4002"><img class="aligncenter size-full wp-image-4002" title="apktor-publicmarket--android-189570.185x185.1270069741.18177" src="http://www.toastedtech.com/wp-content/uploads/2011/08/apktor-publicmarket-android-189570.185x185.1270069741.18177.png" alt="" width="185" height="185" /></a></p>
<p>Come Funziona APKTor?<br />
<span id="more-3938"></span><br />
Funziona cosi:<br />
Si installa APKTor, che potete trovare facilmente basta scriverlo su google <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , tramite qrcode oppure con Astro.<br />
Una volta installato avviate l&#8217;applicazione e andate sul menu.<br />
Qui troverete Repository, selezionate menu e tappate su Add Repository.<br />
Una volta inserite i repo, potete aggiornare la lista, tramite update repository.<br />
Una volta fatto ciò avrete molte applicazioni scaricabili, io mi sono scaricato Learning Python di Lutz <img src='http://www.toastedtech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Provatelo e fateci sapere se vi è piaciuto.</p>
<p><a href="http://www.youtube.com/watch?v=D4kKZpfIOco">ApkTor</a></p>
<div class="shr-publisher-3938"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/08/20/apktor-rendere-android-simile-a-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SugarSync: sincronizzazione, backup e 5GB gratis</title>
		<link>http://www.toastedtech.com/2011/08/03/sugarsync-sincronizzazione-backup-e-5gb-gratis/</link>
		<comments>http://www.toastedtech.com/2011/08/03/sugarsync-sincronizzazione-backup-e-5gb-gratis/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 06:51:54 +0000</pubDate>
		<dc:creator>lopinsjk</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[backup gratis]]></category>
		<category><![CDATA[backup online]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[controllo versione]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[sincronizzazione online]]></category>
		<category><![CDATA[storage gratis]]></category>
		<category><![CDATA[sugarsync]]></category>

		<guid isPermaLink="false">http://www.toastedtech.com/?p=3706</guid>
		<description><![CDATA[Il futuro è cloud, stampatevelo in testa. Tutto quello che ci servirà quotidianamente sarà accessibile ovunque e in ogni momento. Diversi mesi fa ho scritto di Dropbox, un servizio di backup e storage on-line che uso quotidianamente. Chi lo utilizza conosce bene i suoi vantaggi: il sistema si occupa dei tuoi file, li archivia, li protegge, [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Il futuro è cloud, stampatevelo in testa. Tutto quello che ci servirà quotidianamente sarà accessibile ovunque e in ogni momento. Diversi mesi fa ho scritto di <strong><a href="http://www.toastedtech.com/2009/03/19/dropbox-servizio-professionale-di-backup-sincronizzazione-e-scambio-online-dei-nostri-file/">Dropbox</a></strong>, un servizio di backup e storage on-line che uso quotidianamente.</p>
<p style="text-align: center;"><a href="http://www.toastedtech.com/wp-content/uploads/2011/08/SugarSync200x2001.jpg"><img class="aligncenter size-full wp-image-3960" title="SugarSync" src="http://www.toastedtech.com/wp-content/uploads/2011/08/SugarSync200x2001.jpg" alt="" width="200" height="200" /></a></p>
<p>Chi lo utilizza conosce bene i suoi vantaggi: il sistema si occupa dei tuoi file, li archivia, li protegge, li sincronizza, li rende disponibili su tutti i tuoi device permettendoti di condividerli con amici e collaboratori. <strong>Dropbox</strong> è sicuramente il servizio più famoso e conosciuto ma recentemente ho scoperto una validissima alternativa: <strong>SugarSync</strong>.</p>
<p><span id="more-3706"></span></p>
<p>Non voglio stabilire chi tra i due servizi sia il migliore (a questo ci penserete voi) ma una differenza salta immediatamente agli occhi: <strong>Dropbox ti regala 2Gb di spazio più l&#8217;aumento gratuito di 250Mb per ogni persona</strong> che si iscrive utilizzando il tuo link (fino al raggiugimento di 8 Gb di tetto massimo); <strong>SugarSync ti regala 5Gb di spazio più l&#8217;aumento di 500Mb per ogni persona iscritta tramite SugarSync referral, </strong><strong>per sempre</strong> (non c&#8217;è un tetto massimo). Se volete maggiori dettagli sulla bontà del servizio vi invito ad analizzare <a href="https://www.sugarsync.com/sync_comparison.html">questa tabella</a> che mette a confronto i più famosi servizi di cloud.</p>
<p style="text-align: center;"><a href="http://www.toastedtech.com/wp-content/uploads/2011/08/blackberry_sugarsync-bb21.jpg"><img class="aligncenter size-full wp-image-3958" title="sugarsync blackberry" src="http://www.toastedtech.com/wp-content/uploads/2011/08/blackberry_sugarsync-bb21.jpg" alt="" width="292" height="455" /></a></p>
<p>La comparazione mostra che l&#8217;unico servizio in grado di competere con <strong>SugarSync</strong> è proprio <strong>Dropbox</strong>. Queste sono le principali caratteristiche che lo differenziano dalla concorrenza:</p>
<ul>
<li>backup di qualsiasi directory;</li>
<li>caricamento di file attraverso la mail;</li>
<li>modifica di file via web;</li>
<li>invio di file di qualsiasi dimensione;</li>
<li>musica in streaming da web o smartphone;</li>
<li>supporto a molti dispositivi mobili tra i quali BlackBerry, Windows Mobile e Symbian.</li>
</ul>
<p>L&#8217;unica grave pecca di SugarSync è che non dispone di un programma per <strong>linux</strong>, cosa che invece Dropbox mette a disposizione.</p>
<h2>SugarSync Referral</h2>
<p>Poco sopra vi ho parlato del <strong>SugarSync Referral</strong>, un sistema che premia chi condivide SugarSync <strong>regalando</strong> <strong>500Mb di spazio gratuito sia a chi condivide che a chi si iscrive</strong>.</p>
<p style="text-align: center;"><a href="http://www.toastedtech.com/wp-content/uploads/2011/08/Schermata-08-2455776-alle-22.41.36.png"><img class="aligncenter size-medium wp-image-3964" title="referral" src="http://www.toastedtech.com/wp-content/uploads/2011/08/Schermata-08-2455776-alle-22.41.36-480x244.png" alt="" width="480" height="244" /></a></p>
<p>Per questo la cosa migliore da fare per guadagnare subito 500Mb di spazio in più sul proprio account è di iscriversi attraverso un Referral link. Per iniziare quindi potete usare il mio:</p>
<blockquote><p><a href="https://www.sugarsync.com/referral?rf=frhevkvb30ytr&amp;utm_source=txemail&amp;utm_medium=email&amp;utm_campaign=referral">Link Referral di SugarSync per 500MB di spazio gratuito in più, per un totale di 5,5Gb!</a></p></blockquote>
<p>Seguendo le istruzioni e compilando il form di iscrizione l&#8217;account verrà attivato immediatamente. Inserendo nome utente e password avremo accesso a questa pagina:</p>
<p style="text-align: center;"><a href="http://www.toastedtech.com/wp-content/uploads/2011/08/Schermata-08-2455776-alle-21.06.11.png"><img class="aligncenter size-medium wp-image-3941" title="Start" src="http://www.toastedtech.com/wp-content/uploads/2011/08/Schermata-08-2455776-alle-21.06.11-480x260.png" alt="" width="480" height="260" /></a></p>
<p><strong>Ogni volta che completeremo ciscuno dei 6 punti elencati avremo 125Mb di premio.</strong> Per guadagnarli è sufficiente scaricare l&#8217;applicazione per il nostro PC/Mac e per il nostro dispositivo Mobile, condividere una cartella, condividere un file attraverso un link pubblico, caricare un file tramite mail e condividere il proprio Referral link su <strong>Facebook</strong>, <strong>Twitter</strong> o <strong>G+</strong> (quello che ho appena fatto, come mostrato in fugura).</p>
<h2>Sync/Backup</h2>
<p>Un vantaggio molto importante di <strong>SugarSync</strong> rispetto a <strong>Dropbox</strong> è quello di poter effettuare il backup di qualsiasi directory e non solo della cartella creata dal programma stesso. Infatti SugarSync crea una cartella (che prende il nome di <strong>Magic Briefcase</strong>) il cui funzionamento è analogo alla &#8220;My Dropbox&#8221; di Dropbox: i file aggiunti al suo interno sono accessibili da web e dai dispositivi connessi all&#8217;account. Tuttavia SugarSync permette anche la sincronizzazione di altre cartelle (<strong>Synced Folders</strong>) o la creazione di un archivio web (<strong>Web Archive</strong>). Le <strong>Synced Folders</strong> sono cartelle accessibili da tutti i computer collegati all&#8217;account, dal web e da <strong>SugarSync File Manager,</strong> ma non vengono sincronizzate su tutti i computer (i file non vengono copiati).  I <strong>Web Archive</strong> invece sono file presenti solo online e accessibili tramite web e SugarSync File Manager ma non sincronizzati localmente tra i computer.</p>
<h2>Caricamento dei file</h2>
<p>Per caricare file nel nostro account abbiamo diverse alternative:</p>
<ul>
<li>attraverso <strong>SugarSync File Manager</strong>;</li>
<li>tramite <strong>e-mail</strong>;</li>
<li>tramite <strong>web</strong>;</li>
<li>utilizzando l&#8217;<strong>applicazione</strong> sviluppata appositamente per il nostro dispositivo <strong>mobile</strong>.</li>
</ul>
<p>L&#8217;ultimo punto in particolare rende possibile il caricamento di foto e video ripresi direttamente dal nostro smartphone.</p>
<h2>Musica in streaming</h2>
<p>La cosa &#8220;accattivante&#8221; del servizio è la possibilità di <strong>ascoltare in streaming gli mp3 presenti nelle cartelle del nostro account</strong>.</p>
<p style="text-align: center;"><a href="http://www.toastedtech.com/wp-content/uploads/2011/08/sugarsync_free_app_for_iphone_ipad_and_ipod_touch_1.jpg"><img class="aligncenter size-medium wp-image-3954" title="sugarsync iphone" src="http://www.toastedtech.com/wp-content/uploads/2011/08/sugarsync_free_app_for_iphone_ipad_and_ipod_touch_1-480x359.jpg" alt="" width="480" height="359" /></a></p>
<p>Per farlo possiamo sfruttare l&#8217;interfaccia web oppure l&#8217;applicazione del nostro smartphone senza la necessità di copiare i file mp3 dal nostro account sul nostro telefono. Un&#8217;altra funzione messa a disposizione da SugarSync permette di <a href="https://sugarsync.custhelp.com/app/answers/detail/a_id/36/~/syncing-your-itunes-library-to-the-cloud"><strong>accedere in streaming alle nostre librerie di iTunes</strong></a>.</p>
<h2>Versioni dei file</h2>
<p>Una feature molto importante è la gestione delle versioni precedenti dei file. Qui <strong>Dropbox</strong> si comporta meglio di <strong>SugarSync</strong> infatti il primo fornisce un numero illimitato di versioni fino ad una certa data indietro nel tempo mentre il secondo gestisce solamente due versioni precedenti.</p>
<p>Onestamente non credevo di trovare una valida alternativa a Dropbox ma credo che SugarSync abbia colto nel segno. Le differenze sono poche ma sostanziali: i 5Gb gratuiti espandibili, la maggiore personalizzazione dei backup e la musica in streaming sono senz&#8217;altro un ottimo punto di partenza per mettere in difficoltà un servizio affermato come Dropbox.</p>
<p><a class="twitter-follow-button" href="http://twitter.com/lopinsjk" data-lang="it">Follow @lopinsjk</a><br />
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
<div class="shr-publisher-3706"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.toastedtech.com/2011/08/03/sugarsync-sincronizzazione-backup-e-5gb-gratis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.699 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-01-27 23:08:08 -->

