<?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>Michele&#039;s Blog &#187; internet</title>
	<atom:link href="http://www.michelem.org/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michelem.org</link>
	<description>io, me e michele</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:57:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Chrome and Android &#8211; A Potent Combination</title>
		<link>http://www.michelem.org/2012/01/26/chrome-and-android-a-potent-combination/</link>
		<comments>http://www.michelem.org/2012/01/26/chrome-and-android-a-potent-combination/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 14:02:43 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=1060</guid>
		<description><![CDATA[If you&#8217;re a Google user when it comes to email, browsing the web, or using your phone, you&#8217;ll know that if there&#8217;s one thing the search-engine giant is good at, it&#8217;s integrating one Google idea into another seamlessly. Chrome and Android and two great examples, and there are a fair few examples of why you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>If you&#8217;re a Google user when it comes to email, browsing the web, or using your phone, you&#8217;ll know that if there&#8217;s one thing the search-engine giant is good at, it&#8217;s integrating one Google idea into another seamlessly. Chrome and Android and two great examples, and there are a fair few examples of why you&#8217;ll find the two Google products easy to use in sync with one another.</p>
<p>1) Google everyday apps.</p>
<p>Gmail, Google Calendar, Google Reader &#8211; all integrated and easy to sync between your two devices using Chrome and Android, whether you&#8217;re setting reminders for a <a href="http://www.partycasino.it/">party casino</a> tournament, or you&#8217;re aiming to finish off an email draft on your phone moments after the draft saves on your computer. It syncs extremely well, and you&#8217;ll never feel as though your choice of phone and browser are clashing.</p>
<p>2) Chrome to Phone.</p>
<p>This one feature/extension justifies using Chrome and Android together more than anything else. One click, and the web-page is waiting for you on an archive-enabled app on your Android device. Brilliant for those on the go, or for people who often find themselves having to switch between phone and computer.</p>
<p>3) Chrome on Android.</p>
<p>It&#8217;s on its way, and when it arrives you&#8217;ll finally realise just how great Chrome can be once it goes portable. Chrome is a powerful, customisable, reliable browser, fun to use and with extensions (and some impressive apps and games &#8211; Bastion is one great example), it becomes a necessity for anyone who&#8217;s tired of Firefox and duly averse to so much as opening Internet Explorer if there&#8217;s an alternative.</p>
<p>These are just a few reasons, but there are many more &#8211; the best way to find your own is to test out the Chrome-Android combo yourself. We&#8217;re fairly confident you might enjoy them both, even if they&#8217;re not linked through email or extensions. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2012/01/26/chrome-and-android-a-potent-combination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento adding downloadable product to cart by coding php</title>
		<link>http://www.michelem.org/2011/02/23/magento-adding-downloadable-product-to-cart-by-coding-php/</link>
		<comments>http://www.michelem.org/2011/02/23/magento-adding-downloadable-product-to-cart-by-coding-php/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 18:14:15 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[addto]]></category>
		<category><![CDATA[carrello]]></category>
		<category><![CDATA[cart]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[downloadable]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[product]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=1018</guid>
		<description><![CDATA[Probably you know it&#8217;s possible to add a product to the cart via querystring, but may be you prefer code a new module for your needs using Magento objects and methods. So adding a simple product is easy: ... $cart = Mage::getSingleton(&#039;checkout/cart&#039;); // start adding the product try { $cart-&#62;addProduct($product, array(&#039;qty&#039; =&#62; 1)); // save [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Probably you know it&#8217;s possible to <a href="http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/catalog/adding_a_product_to_the_cart_via_querystring">add a product to the cart via querystring</a>, but may be you prefer code a new module for your needs using Magento objects and methods.</p>
<p>So adding a simple product is easy:</p>
<pre class="brush: php">

...

$cart = Mage::getSingleton(&#039;checkout/cart&#039;);

// start adding the product

try {

$cart-&gt;addProduct($product, array(&#039;qty&#039; =&gt; 1));

// save the cart

$cart-&gt;save();

$result = null;

} catch (Mage_Core_Exception $e) {

$result = $e-&gt;getMessage();

}
</pre>
<p>But how to add a Downloadable product with its right link? Just try this, it&#8217;s a controller I used to integrate an &#8220;add to cart&#8221; API:</p>
<pre class="brush: php">

public function cartaddAction()
{
$productId  = (int) $this-&gt;getRequest()-&gt;getParam(&#039;id&#039;);
$callback  = (string) $this-&gt;getRequest()-&gt;getParam(&#039;callback&#039;);

$cart = Mage::getSingleton(&#039;checkout/cart&#039;);

// call the Magento catalog/product model
$product = Mage::getModel(&#039;catalog/product&#039;)
// set the current store ID
-&gt;setStoreId(Mage::app()-&gt;getStore()-&gt;getId())
// load the product object
-&gt;load($productId);

$links = Mage::getModel(&#039;downloadable/product_type&#039;)-&gt;getLinks( $product );

foreach ( $links as $link )
if ( preg_match(&quot;/epub/i&quot;, $link-&gt;getTitle()) )
$linkId = $link-&gt;getLinkId();

// Here is the trick to add the right link id

$input = array( &#039;qty&#039; =&gt; 1, &#039;links&#039; =&gt; array( $linkId ) );
$request = new Varien_Object();
$request-&gt;setData($input);

// start adding the product
try {
$cart-&gt;addProduct($product, $request);
// save the cart
$cart-&gt;save();

$result = null;
} catch (Mage_Core_Exception $e) {
$result = $e-&gt;getMessage();
}

// very straightforward, set the cart as updated
Mage::getSingleton(&#039;checkout/session&#039;)-&gt;setCartWasUpdated(true);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2011/02/23/magento-adding-downloadable-product-to-cart-by-coding-php/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Best Google Chrome Extensions SEO, Screenshot, Delicious&#8230;</title>
		<link>http://www.michelem.org/2010/03/08/best-google-chrome-extensions-seo-screenshot-delicious/</link>
		<comments>http://www.michelem.org/2010/03/08/best-google-chrome-extensions-seo-screenshot-delicious/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:49:16 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[desktop]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=972</guid>
		<description><![CDATA[Here is my current Google Chrome extensions I use every days, hope you find something useful. You could find your best extensions in the official Google Chrome Extensions site. SEO Status Pagerank/Alexa Toolbar SEO Status is lightweight. It will check the Google Pagerank (PR) &#38; Alexa rank for every page. Using this will increase your [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Here is my current Google Chrome extensions I use every days, hope you find something useful.</p>
<p>You could find your best extensions in the official <a href="https://chrome.google.com/extensions">Google Chrome Extensions</a> site.</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/03/seostatus.png" rel="lightbox"><img class="alignleft size-full wp-image-973" title="seostatus" src="http://www.michelem.org/wp-content/uploads/2010/03/seostatus.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://chrome.google.com/extensions/detail/bjgpmafbkgcchdjehdpnfgfgbdfahapa?hl=en-us"><strong>SEO Status Pagerank/Alexa Toolbar</strong></a></p>
<p>SEO Status is lightweight. It will check the Google Pagerank (PR) &amp; Alexa rank for every page. Using this will increase your Alexa.</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/03/chomicious.png" rel="lightbox"><img class="alignleft size-full wp-image-974" title="chomicious" src="http://www.michelem.org/wp-content/uploads/2010/03/chomicious.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://chrome.google.com/extensions/detail/animchmhhndbcfahoigdpelodbhnhepg?hl=en-us"><strong>Chromicious (Delicious Bookmarks)</strong></a></p>
<p>Chromicious integrates your Delicious bookmarks with Google Chrome and keeps them in sync for easy access.</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/03/chormeseo.png" rel="lightbox"><img class="alignleft size-full wp-image-975" title="chormeseo" src="http://www.michelem.org/wp-content/uploads/2010/03/chormeseo.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://chrome.google.com/extensions/detail/oangcciaeihlfmhppegpdceadpfaoclj?hl=en-us"><strong>Chrome SEO</strong></a></p>
<p>The Google Chrome SEO Extension. Make your SEO tasks easier with Chrome SEO Tools, includes &#8216;all&#8217; the stats and data you need.</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/03/mailcheck.png" rel="lightbox"><img class="alignleft size-full wp-image-976" title="mailcheck" src="http://www.michelem.org/wp-content/uploads/2010/03/mailcheck.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://chrome.google.com/extensions/detail/gffjhibehnempbkeheiccaincokdjbfe?hl=en-us"><strong>Google Mail Checker Plus</strong></a></p>
<p>Displays the number of unread messages in your Gmail and Google Apps inbox. Preview mail, read, delete, archive and mark as spam!</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/03/download.png" rel="lightbox"><img class="alignleft size-full wp-image-978" title="download" src="http://www.michelem.org/wp-content/uploads/2010/03/download.png" alt="" width="48" height="48" /></a></p>
<p><a href="https://chrome.google.com/extensions/detail/ckibcdccnfeookdmbahgiakhnjcddpki?hl=en-us"><strong>Webpage Screenshot</strong></a></p>
<p>Fast&amp;Simple solution to save JPG screenshots of any webpage. The first extension that captures the whole page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2010/03/08/best-google-chrome-extensions-seo-screenshot-delicious/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Best eCommerce shopping cart solutions</title>
		<link>http://www.michelem.org/2010/02/09/best-ecommerce-shopping-cart-solutions/</link>
		<comments>http://www.michelem.org/2010/02/09/best-ecommerce-shopping-cart-solutions/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 14:05:35 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cart]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[helpdesk]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[shipping]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=950</guid>
		<description><![CDATA[Avendo da poco intrapreso questa angosciante e alquanto caotica ricerca per l&#8217;azienda per la quale lavoro, ho deciso di mettere a disposizione il quadro finale che stiamo usando per decidere quale soluzione alla fine adottare, spero possa servire ad altri. Requisiti: hosted o meno non e’ importantissimo esportazione dei dati via sistemi come feed/rss/xml/API sistema [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Avendo da poco intrapreso questa angosciante e alquanto caotica ricerca per l&#8217;azienda per la quale lavoro, ho deciso di mettere a disposizione il quadro finale che stiamo usando per decidere quale soluzione alla fine adottare, spero possa servire ad altri.</p>
<h2>Requisiti:</h2>
<ul>
<li>hosted o meno non e’ importantissimo</li>
<li>esportazione dei dati via sistemi come feed/rss/xml/API</li>
<li>sistema di helpdesk/CRM il piu’ integrato possibile</li>
<li>semplicita’</li>
<li>flessibilita’</li>
<li>multilingua/multivaluta</li>
<li>moduli gift/redeem</li>
<li>modulo returns</li>
<li>prezzo accessibile</li>
<li>supporto</li>
<li>stampaggio etichette</li>
</ul>
<h2><span id="more-950"></span>Soluzioni possibili</h2>
<h2>Magento:</h2>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/02/magento.png" rel="lightbox"><img class="size-thumbnail wp-image-956 alignnone" title="magento" src="http://www.michelem.org/wp-content/uploads/2010/02/magento-200x200.png" alt="" width="200" height="200" /></a></p>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/02/magento.png" rel="lightbox[950]"></a><a href="http://www.magentocommerce.com/">http://www.magentocommerce.com/</a><br />
Prodotto in PHP licenziato o con soluzioni hosted, complete di codice sorgente da farci quello si vuole.</p>
<p><strong>PRO</strong>:</p>
<ul>
<li>multilingua/multivaluta (si italiano)</li>
<li>disponibilita’ codice sorgente</li>
<li>moduli gift/redeem</li>
<li>modulo returns</li>
<li>feed rss dei prodotti</li>
<li>per medie/grandi aziende</li>
<li>stampaggio etichettte</li>
</ul>
<p><strong>CONTRO</strong>:</p>
<ul>
<li>licenza molto costosa (9k/12k$)</li>
<li>eccessiva richiesta di risorse (hardware)</li>
<li>versione opensource troppo limitata (community edition)</li>
<li>mancanza helpdesk/CRM (acquisto modulo aggiuntivo su 100/200$)</li>
<li>utilizzo complesso</li>
<li>modifiche molto complesse</li>
<li>modifiche a pagamento molto costose</li>
<li>codice poco flessibile e molto complesso</li>
</ul>
<h2>CS-Cart:</h2>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/02/cscart.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-957" title="cscart" src="http://www.michelem.org/wp-content/uploads/2010/02/cscart-200x200.png" alt="" width="200" height="200" /></a></p>
<p><a href="http://www.cs-cart.com/">http://www.cs-cart.com/</a><br />
Prodotto in PHP da sistemare su un nostro server (amazon EC2), completo di codice sorgente da farci quello che vogliamo</p>
<p><strong>PRO</strong>:</p>
<ul>
<li>semplice utilizzo</li>
<li>disponibilita’ codice sorgente</li>
<li>molto flessibile (abbastanza semplice modifica lato template/aggiunta moduli)</li>
<li>multilingua/multivaluta (si italiano)</li>
<li>moduli gift/redeem</li>
<li>modulo returns</li>
<li>acquisto moduli aggiuntivi (tra cui quello per feed/rss) a prezzi contenutissimi (decine di $)</li>
<li>prezzo di licenza basso ordine di 2/300$</li>
<li>risorse richieste limitate (gira bene su un amazon EC2)</li>
<li>stampaggio etichette (? forse modulo)</li>
</ul>
<p><strong>CONTRO</strong>:</p>
<ul>
<li>esportazione parziale dei prodotti per riutilizzo su web (acquisto modulo)</li>
<li>mancanza quasi totale di un CRM/helpdesk, si puo’ pensare di integrarne uno a parte</li>
<li>funzionalita&#8217; base non troppo complesso (target piccole aziende/privati)</li>
</ul>
<h2>Catalyst</h2>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/02/catalyst.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-958" title="catalyst" src="http://www.michelem.org/wp-content/uploads/2010/02/catalyst-200x200.png" alt="" width="200" height="200" /></a></p>
<p><a href="http://businesscatalyst.com/">http://businesscatalyst.com/</a><br />
Online webapp per la gestione completa di un business center (da poco acquisito da Adobe).</p>
<p><strong>PRO</strong>:</p>
<ul>
<li>hosted no manutenzione</li>
<li>CRM completo</li>
<li>ecommerce completo</li>
<li>rss/feed</li>
<li>API get/post</li>
<li>costo ragionevole (900/1900$ licenza piu’ 29/149$ al mese variabile)</li>
<li>multibusiness (con forum, sito web, ecommerce, CRM, ecc..)</li>
<li>modifiche ai layout non troppo complesse</li>
</ul>
<p><strong>CONTRO</strong>:</p>
<ul>
<li>nessun codice sorgente nessun modulo da comprare e’ una webapp quello che c’e’ c’e’</li>
<li>setting iniziale complesso</li>
<li>molte sezioni ma poche caratteristiche (shop base, crm base, ecc…)</li>
<li>documentazione in fase di sviluppo (c’e’ ma qualcosa manca)</li>
<li>MANCANZA DELLA LINGUA ITALIANA (12/18 mesi per nuove implementazioni)</li>
</ul>
<h2>Interspire</h2>
<p><a href="http://www.michelem.org/wp-content/uploads/2010/02/interspire.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-959" title="interspire" src="http://www.michelem.org/wp-content/uploads/2010/02/interspire-200x200.png" alt="" width="200" height="200" /></a></p>
<p><a href="http://www.interspire.com/shoppingcart/">http://www.interspire.com/shoppingcart/</a><br />
Interspire shopping cart e’ un evoluto sistema ecommerce in versione sia licenziata che hostata.</p>
<p><strong>PRO</strong>:</p>
<ul>
<li>semplice utilizzo</li>
<li>disponibilita’ codice sorgente</li>
<li>molto flessibile (abbastanza semplice modifica lato template/aggiunta moduli)</li>
<li>multilingua/multivaluta (MANCA ITALIANO LEGGERE SOTTO)</li>
<li>moduli gift/redeem</li>
<li>moduli returns/replacement con stampaggio etichette</li>
<li>acquisto moduli aggiuntivi</li>
<li>rss/feed prodotti</li>
<li>molto aggiornato</li>
<li>prezzo di licenza FULL medio/basso ordine di 1000/2000$</li>
<li>risorse richieste limitate (gira bene su un amazon EC2)</li>
<li>possibilita’ di richiesta moduli aggiuntivi</li>
<li>molto ben documentato, developer center, forum, ecc…</li>
</ul>
<p><strong>CONTRO</strong>:</p>
<ul>
<li>non ha ancora un vero e proprio helpdesk system, ma forse puo’ bastare il modulo “returns”</li>
<li>lingua italiana mancante ma o si trova online (devo guardare meglio) o si scrive da codice sorgente</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2010/02/09/best-ecommerce-shopping-cart-solutions/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Riviera del Conero Sea Coast &amp; Beaches / Costa &amp; Spiagge</title>
		<link>http://www.michelem.org/2009/07/31/ancona-portonovo-sirolo-numana-sea-coast-beaches/</link>
		<comments>http://www.michelem.org/2009/07/31/ancona-portonovo-sirolo-numana-sea-coast-beaches/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:04:35 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[ancona]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[beach]]></category>
		<category><![CDATA[conero]]></category>
		<category><![CDATA[estate]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mappa]]></category>
		<category><![CDATA[mezzavalle]]></category>
		<category><![CDATA[natura]]></category>
		<category><![CDATA[numana]]></category>
		<category><![CDATA[portonovo]]></category>
		<category><![CDATA[promontorio]]></category>
		<category><![CDATA[riviera]]></category>
		<category><![CDATA[sirolo]]></category>
		<category><![CDATA[spiagge]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=927</guid>
		<description><![CDATA[I would like to share with you a map I have done on Google Maps to keep track of the most amazing beaches near Ancona, Sirolo, Numana. I hope you&#8217;ll find it useful if you are coming here for your holidays. Have fun! Ancona, Portonovo, Sirolo, Numana Sea Coast &#38; Beaches Map (Riviera del Conero) [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I would like to share with you a <a href="/tag/maps">map</a> I have done on Google Maps to keep track of the most amazing beaches near <a href="/category/ancona">Ancona</a>, Sirolo, Numana.<br />
I hope you&#8217;ll find it useful if you are coming here for your holidays. Have fun!</p>
<p><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=114946385408702260870.00046ffe7cdb28aa90a13&amp;ll=43.553773,13.622532&amp;spn=0.087707,0.213375&amp;t=h&amp;z=13">Ancona, Portonovo, Sirolo, Numana Sea Coast &amp; Beaches Map (Riviera del Conero)</a></p>
<p>Ho creato una mappa su Google Maps per condividere le piu&#8217; belle spiagge nei dintorni di Ancona, Sirolo, Numana.<br />
Spero vi possa essere utile se avete deciso di venire a trovarci. Buon divertimento!</p>
<p><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=114946385408702260870.00046ffe7cdb28aa90a13&amp;ll=43.553773,13.622532&amp;spn=0.087707,0.213375&amp;t=h&amp;z=13">Mappa di Ancona, Portonovo, Sirolo, Numana Costa &amp; Spiagge (Riviera del Conero)</a></p>
<div id="attachment_935" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-935" title="Le Due Sorelle (Monte Conero)" src="http://www.michelem.org/wp-content/uploads/2009/07/2551095902_21d5238152-300x225.jpg" alt="Le Due Sorelle (Monte Conero)" width="300" height="225" /><p class="wp-caption-text">Le Due Sorelle (Monte Conero)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/07/31/ancona-portonovo-sirolo-numana-sea-coast-beaches/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Ehiweb migliore ADSL italiana NO Telecom &#8211; qualità  e prezzi contenuti</title>
		<link>http://www.michelem.org/2009/05/27/ehiweb-migliore-adsl-italiana-no-telecom-qualita-e-prezzi-contenuti/</link>
		<comments>http://www.michelem.org/2009/05/27/ehiweb-migliore-adsl-italiana-no-telecom-qualita-e-prezzi-contenuti/#comments</comments>
		<pubDate>Wed, 27 May 2009 08:27:26 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[ancona]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[adsl]]></category>
		<category><![CDATA[ehiweb]]></category>
		<category><![CDATA[faxonline]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[marche]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[telecom]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=919</guid>
		<description><![CDATA[In risposta al post che scrissi tempo fa, quando stavo abbandonando finalmente il canone Telecom per ottenere una nuova ADSL casalinga capace di sopperire agli innumerevoli problemi riscontrati con tutti gli altri operatori, e&#8217; giunto il momento di tirare le somme. Dopo quasi un anno di convivenza con i servizi offerti da Ehiweb, devo dire [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>In risposta al post che scrissi tempo fa, quando stavo <a href="http://www.michelem.org/2008/07/07/goodbye-telecom/">abbandonando finalmente il canone Telecom per ottenere una nuova ADSL</a> casalinga capace di sopperire agli innumerevoli problemi riscontrati con tutti gli altri operatori, e&#8217; giunto il momento di tirare le somme.</p>
<p>Dopo quasi un anno di convivenza con i servizi offerti da <a href="http://befree.ehiweb.it"><strong>Ehiweb</strong></a>, devo dire che non mi sono mai trovato cosi&#8217; bene come ora, non ho mai avuto un minimo down, la linea e&#8217; perfetta sia in traffico dati che in <a href="http://befree.ehiweb.it/telefoniavoip/"><strong>VOIP</strong></a> e i costi praticamente gli stessi di mamma Telecom (se non piu&#8217; bassi) ma con il vantaggio che sulle linee non ci sono intasamenti dovuti al rapporto linea/utente a cui <a href="http://befree.ehiweb.it"><strong>Ehiweb</strong></a> presta particolare attenzione. E&#8217; la <a href="http://befree.ehiweb.it">migliore ADSL</a> in assoluto? Probabilmente e&#8217; la migliore che abbia mai avuto/usato e sicuramente quella con piu&#8217; punti a favore sia come servizi offerti che come professionalita&#8217; e comunicazione cliente/fornitore.</p>
<p>Nello specifico, abitando ad <a href="http://www.michelem.org/category/ancona/"><strong>Ancona</strong></a>, ho saputo che il rapporto linea/utenti e&#8217; stato aumentato negli ultimi mesi e ora in questa zona e dintorni le linee sono praticamente sempre scariche e i valori si avvicinano sempre ai picchi massimi dei 7 Mbps offerti dal servizio, dubito che un&#8217;Alice arrivi a valori del genere, ma magari qualcuno potra&#8217; smentirmi&#8230;.</p>
<p>Inoltre ho trovato che il supporto tecnico, qualora vi servisse, e&#8217; di una qualita&#8217; mai vista prima sia come tempi di risposta che come professionalita&#8217; nel risolvere qualunque disservizio o problema riscontrato.<br />
Il mio consiglio e&#8217; quello di provare, anche grazie al fatto che ormai per legge ogni provider e&#8217; tenuto a trasferire i clienti che lo richiedessero in tempi brevissimi, io a settembre dello scorso anno , quando cambiai da Telecoma a <a href="http://befree.ehiweb.it/adsl/offerta_geo_adsl.php">Ehiweb</a>, non riscontrai piu&#8217; di un minuto di down, ne alcun tecnico per casa, basto&#8217; solo riavviare il router perche&#8217; ottennesse le informazioni del nuovo provider. Provare per credere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/05/27/ehiweb-migliore-adsl-italiana-no-telecom-qualita-e-prezzi-contenuti/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Import/Synchronizing your imap email into Gmail with imapsync</title>
		<link>http://www.michelem.org/2009/03/13/importsynchronizing-your-imap-email-into-gmail-with-imapsync/</link>
		<comments>http://www.michelem.org/2009/03/13/importsynchronizing-your-imap-email-into-gmail-with-imapsync/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 08:54:49 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[import]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=889</guid>
		<description><![CDATA[- Installare &#8220;imapsync&#8221; (su Debian/Ubuntu &#8220;apt-get install imapsync&#8221;) - Procedere alla sincronizzazione con il seguente comando: imapsync --host1 my_mail_server --port1 143 \ --user1 changeme@yourdomain --password1 mypassword \ --host2 imap.gmail.com --port2 993 \ --user2 changeme@gmail.com --password2 mypassword \ --syncinternaldates --ssl2 --noauthmd5 --split1 100 --split2 100 - Se volete sincronizzare solo specifiche direcotry Imap bastera&#8217; aggiungere l&#8217;opzione [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>- Installare &#8220;imapsync&#8221; (su Debian/Ubuntu &#8220;apt-get install imapsync&#8221;)</p>
<p>- Procedere alla sincronizzazione con il seguente comando:</p>
<pre class="brush: bash">
imapsync --host1 my_mail_server --port1 143 \
--user1 changeme@yourdomain --password1 mypassword \
--host2 imap.gmail.com --port2 993 \
--user2 changeme@gmail.com --password2 mypassword \
--syncinternaldates --ssl2 --noauthmd5 --split1 100 --split2 100
</pre>
<p>- Se volete sincronizzare solo specifiche direcotry Imap bastera&#8217; aggiungere l&#8217;opzione <code>"--folder yourfolder"</code></p>
<p>- Se volete prima provare senza che nulla venga toccato aggiungete l&#8217;opzione <code>"--dry"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/03/13/importsynchronizing-your-imap-email-into-gmail-with-imapsync/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>OpenVPN Client &amp; Server Configuration HOWTO</title>
		<link>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/</link>
		<comments>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 11:49:29 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=850</guid>
		<description><![CDATA[Giusto per non scordarmele di nuovo e visto che le usero&#8217; molto spesso d&#8217;ora in avanti, ecco alcuni step per configurare un client e un server Linux ma anche Mac OS X per parlarsi in VPN con OpenVPN. Installazione certificati . ./vars ./clean-all ./build-ca Copiare i file ca.* su entrambi i computer (client/server) Creazione certificati [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Giusto per non scordarmele di nuovo e visto che le usero&#8217; molto spesso d&#8217;ora in avanti, ecco alcuni step per configurare un client e un server <a href="/tag/linux"><strong>Linux</strong></a> ma anche <a href="/tag/macosx"><strong>Mac OS X</strong></a> per parlarsi in <strong>VPN</strong> con <a href="http://openvpn.org">OpenVPN</a>.</p>
<p>Installazione certificati</p>
<blockquote><p><code>. ./vars<br />
./clean-all<br />
./build-ca</code></p></blockquote>
<p>Copiare i file ca.* su entrambi i computer (client/server)</p>
<p>Creazione certificati client/server</p>
<blockquote><p><code>. ./vars<br />
./build-key-server &lt;common-name-server&gt;<br />
./build-dh<br />
./build-key &lt;common-name-client&gt;</code></p></blockquote>
<p>Copiare i file &lt;common-name-client&gt;.* sul computer client</p>
<p>Configurazione Server</p>
<blockquote><p><code>port 1194<br />
proto udp<br />
dev tun<br />
ca ca.crt<br />
cert server.crt<br />
dh dh1024.pem<br />
#Subnet for the VPN, this computer will get the first ip (10.10.100.1)<br />
server 10.10.100.0 255.255.255.0<br />
ifconfig-pool-persist ipp.txt<br />
keepalive 10 120<br />
persist-key<br />
persist-tun<br />
status openvpn-status.log<br />
verb 3</code></p></blockquote>
<p>Configurazione Client</p>
<blockquote><p><code>client<br />
dev tun<br />
proto udp<br />
# This is the remote ip address and port of the VPN Server<br />
remote 1.2.3.4 1194<br />
resolv-retry infinite<br />
nobind<br />
persist-key<br />
persist-tun<br />
ca ca.crt<br />
cert client1.crt<br />
key client1.key<br />
verb 3</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Facebook friends: Real Vs. Virtual</title>
		<link>http://www.michelem.org/2008/09/29/facebook-friends-real-vs-virtual/</link>
		<comments>http://www.michelem.org/2008/09/29/facebook-friends-real-vs-virtual/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 09:57:12 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[about michele]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[life style]]></category>
		<category><![CDATA[amici]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=792</guid>
		<description><![CDATA[Avete mai provato a calcolare quanti amici che avete veramente conosciuto (fisicamente parlando) avete su Facebook contro quelli solo &#8220;virtuali&#8221;? Grazie al nuovo Facebook e&#8217; possibile creare liste di amici, cosi&#8217; mi e&#8217; bastato creare due nuove liste chiamate una &#8220;Real&#8221; e una &#8220;Virtual&#8221;. Nella lista Real ho inserito tutti gli amici con cui ho [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Avete mai provato a calcolare quanti amici che avete veramente conosciuto (fisicamente parlando) avete su <a href="http://www.facebook.com">Facebook</a> contro quelli solo &#8220;virtuali&#8221;?</p>
<p>Grazie al nuovo Facebook e&#8217; possibile <a href="http://www.new.facebook.com/friends/">creare liste di amici</a>, cosi&#8217; mi e&#8217; bastato creare due nuove liste chiamate una &#8220;Real&#8221; e una &#8220;Virtual&#8221;.</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/09/picture-1.png" rel="lightbox"><img class="size-full wp-image-793 alignnone" title="Facebook friends" src="http://www.michelem.org/wp-content/uploads/2008/09/picture-1.png" alt="" width="290" height="239" /></a></p>
<p>Nella lista Real ho inserito tutti gli <a href="http://www.michelem.org/category/friends/">amici</a> con cui ho avuto un minimo contatto &#8220;fisico&#8221; mentre nella Virtual tutti quelli che non ho mai conosciuto di persona ma che magari conosco via rete da anni.</p>
<p>Questi sono i miei risultati:</p>
<p><strong>104 Friends totali</strong></p>
<ul>
<li>Real: 68</li>
<li>Virtual: 36</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/09/29/facebook-friends-real-vs-virtual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed Faces</title>
		<link>http://www.michelem.org/2008/08/06/friendfeed-faces/</link>
		<comments>http://www.michelem.org/2008/08/06/friendfeed-faces/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 19:12:00 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[about michele]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[faces]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=761</guid>
		<description><![CDATA[Ecco le facce di alcuni friendfeeder tra cui anche la mia (e questo il mio Friendfeed) Grazie agli autori che hanno avuto questa simpatica idea]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p><a href="http://www.michelem.org/wp-content/uploads/2008/08/friendfeed_faces.png" rel="lightbox"><img class="alignnone size-full wp-image-762" title="friendfeed_faces" src="http://www.michelem.org/wp-content/uploads/2008/08/friendfeed_faces.png" alt="" width="500" height="342" /></a></p>
<p><a href="http://friendfeed.com/e/96966051-fcd1-2556-3e18-012b4fd94da5/call-to-action-dai-fatti-anche-tu-la-foto-NOW/">Ecco le facce di alcuni friendfeeder</a> tra cui <a href="http://www.flickr.com/photos/michelem/2737328563/">anche la mia</a><a href="http://www.flickr.com/photos/michelem/2737328563/"></a> (e questo il <a href="http://friendfeed.com/michelem">mio Friendfeed</a>)<a href="http://www.flickr.com/photos/michelem/2737328563/"><br />
</a></p>
<p>Grazie agli <a href="http://www.vanz.it/post/44957633/su-invito-di-dietnam-e-mio-oggi-14-friendfeedari">autori</a> che hanno avuto questa <a href="http://www.phonkmeister.com/post/44959934/le-facce-dei-friendfeeders-e-che-facce">simpatica</a> idea</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/08/06/friendfeed-faces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 1494/1713 objects using disk: basic

Served from: www.michelem.org @ 2012-02-10 13:01:21 -->
