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

<channel>
	<title>quattro passi nella rete</title>
	<atom:link href="http://antoleo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antoleo.wordpress.com</link>
	<description>sogni e progetti di un web developer</description>
	<lastBuildDate>Thu, 26 Jan 2012 10:04:32 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='antoleo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>quattro passi nella rete</title>
		<link>http://antoleo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://antoleo.wordpress.com/osd.xml" title="quattro passi nella rete" />
	<atom:link rel='hub' href='http://antoleo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Eseguire un UPDATE di una tabella con i campi di una tabella correlata</title>
		<link>http://antoleo.wordpress.com/2012/01/16/eseguire-un-update-di-una-tabella-con-i-campi-di-una-tabella-correlata/</link>
		<comments>http://antoleo.wordpress.com/2012/01/16/eseguire-un-update-di-una-tabella-con-i-campi-di-una-tabella-correlata/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:53:28 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[UPDATE]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=239</guid>
		<description><![CDATA[Anche oggi parliamo di query. Nel caso odierno abbiamo due tabelle correlate attraverso alcune chiavi e vogliamo aggiornare i campi della tabella A con i dati presenti nella tabella B. Dobbiamo distinguere nel caso si utilizzi un database MySQL oppure un database SQL Server. Caso MySQL UPDATE tabellaA INNER JOIN tabellaB ON tabellaA.campo1 = tabellaB.campo1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=239&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Anche oggi parliamo di query.<br />
Nel caso odierno abbiamo due tabelle correlate attraverso alcune chiavi e vogliamo aggiornare i campi della tabella A con i dati presenti nella tabella B.</p>
<p>Dobbiamo distinguere nel caso si utilizzi un database MySQL oppure un database SQL Server.</p>
<p><strong>Caso MySQL</strong></p>
<p>UPDATE<br />
   tabellaA<br />
      INNER JOIN<br />
         tabellaB<br />
   ON<br />
      tabellaA.campo1 = tabellaB.campo1 AND<br />
      tabellaA.campo2 = tabellaB.campo2<br />
SET<br />
   tabellaA.campoA = tabellaB.pinco,<br />
   tabellaA.campoB = tabellaB.pallo<br />
WHERE<br />
   tabellaB.sempronio = 25</p>
<p><strong>Caso SQL Server</strong></p>
<p>UPDATE<br />
   tabellaA<br />
SET<br />
   tabellaA.campoA = tabellaB.pinco,<br />
   tabellaA.campoB = tabellaB.pallo<br />
FROM<br />
   tabellaA<br />
      INNER JOIN<br />
         tabella B<br />
ON<br />
   tabellaA.campo1 = tabellaB.campo1 AND<br />
   tabellaA.campo2 = tabellaB.campo2<br />
WHERE<br />
   tabellaB.sempronio = 25</p>
<p>Ovviamente le condizioni WHERE utilizzate in questi esempi sono modificabili secondo le esigenze contingenti.</p>
<br />Filed under: <a href='http://antoleo.wordpress.com/category/sql/'>SQL</a> Tagged: <a href='http://antoleo.wordpress.com/tag/query/'>query</a>, <a href='http://antoleo.wordpress.com/tag/sql/'>SQL</a>, <a href='http://antoleo.wordpress.com/tag/update/'>UPDATE</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=239&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2012/01/16/eseguire-un-update-di-una-tabella-con-i-campi-di-una-tabella-correlata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Differente utilizzo della struttura CASE in una query di un DB MYSQL</title>
		<link>http://antoleo.wordpress.com/2012/01/14/differente-utilizzo-dela-struttura-case-in-una-query-di-un-db-mysql/</link>
		<comments>http://antoleo.wordpress.com/2012/01/14/differente-utilizzo-dela-struttura-case-in-una-query-di-un-db-mysql/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 09:19:59 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[CASE]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=234</guid>
		<description><![CDATA[Spesso capita di dover creare delle query SQL uscendo dai classici schemi standard che troviamo nei manuali, nelle guide o nei tutorial. Mi è capitato recentemente di dover testare le condizioni presenti in alcuni campi di una tabella di un DB MySql e tramite una SELECT dover mostrare tali risultati. Come prima possibilità ho pensato [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=234&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Spesso capita di dover creare delle query SQL uscendo dai classici schemi standard che troviamo nei manuali, nelle guide o nei tutorial.</p>
<p>Mi è capitato recentemente di dover testare le condizioni presenti in alcuni campi di una tabella di un DB MySql e tramite una SELECT dover mostrare tali risultati.</p>
<p>Come prima possibilità ho pensato subito di utilizzare la struttura CASE che spesso ci fornisce la possibilità di introdurre test condizionali all&#8217;interno della query.</p>
<p>La classica struttura CASE ad esempio è la seguente</p>
<p>CASE<br />
	variabile<br />
	WHEN 5 THEN &#8216;pippo&#8217;<br />
	WHEN 6 THEN &#8216;pluto&#8217;<br />
	ELSE &#8216;paperino&#8217;<br />
END AS risultato</p>
<p>dove in questo caso confrontiamo variabile con il valore 5, il valore 6 o altro restituendo la corrispettiva stringa come risultato.</p>
<p>Nel mio caso dovendo confrontare alcuni campi presenti nella tabella tra loro ho optato per una struttura CASE leggermente differente ma con la massima efficacia</p>
<p>SELECT DISTINCT<br />
    ID,<br />
    campo1,<br />
    campo2,<br />
    campo3,<br />
    CASE	true<br />
        WHEN ( (campo1 = campo2) AND (campo2 = campo3) THEN &#8216;condizione1&#8242;<br />
        WHEN ( (campo1  campo2)	AND (campo2 = campo3) THEN &#8216;condizione2&#8242;<br />
	WHEN ( (campo1 = campo2) AND (campo2  campo3) THEN &#8216;condizione3&#8242;<br />
	ELSE &#8216;condizione4&#8242;<br />
    END as risultato<br />
FROM<br />
    nometabella</p>
<p>Sostituendo nella struttura CASE al posto della variabile la condizione booleana true il gioco è stato semplicissimo!</p>
<br />Filed under: <a href='http://antoleo.wordpress.com/category/sql/'>SQL</a> Tagged: <a href='http://antoleo.wordpress.com/tag/case/'>CASE</a>, <a href='http://antoleo.wordpress.com/tag/mysql/'>mysql</a>, <a href='http://antoleo.wordpress.com/tag/query/'>query</a>, <a href='http://antoleo.wordpress.com/tag/sql/'>SQL</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=234&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2012/01/14/differente-utilizzo-dela-struttura-case-in-una-query-di-un-db-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>La teoria della coda lunga secondo Chiara Lo Cascio</title>
		<link>http://antoleo.wordpress.com/2010/06/25/la-teoria-della-coda-lunga-secondo-chiara-lo-cascio/</link>
		<comments>http://antoleo.wordpress.com/2010/06/25/la-teoria-della-coda-lunga-secondo-chiara-lo-cascio/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 08:26:59 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=198</guid>
		<description><![CDATA[Vorrei semplicemente segnalarvi questo post sulla teoria della coda lunga. Con gli esempi esposti risulta chiaro come nel web ogni azienda possa avere il proprio spazio su prodotti di nicchia se vi &#232; una corretta strategia di fondo. Filed under: Marketing<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=198&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vorrei semplicemente segnalarvi questo post <a href="http://www.dillinger.it/la-teoria-della-coda-lunga-49398.html">sulla teoria della coda lunga</a>.<br />
Con gli esempi esposti risulta chiaro come nel web ogni azienda possa avere il proprio spazio su prodotti di nicchia se vi &egrave; una corretta strategia di fondo.</p>
<br />Filed under: <a href='http://antoleo.wordpress.com/category/marketing/'>Marketing</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=198&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2010/06/25/la-teoria-della-coda-lunga-secondo-chiara-lo-cascio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>puro marketing virale?</title>
		<link>http://antoleo.wordpress.com/2010/03/24/puro-marketing-virale/</link>
		<comments>http://antoleo.wordpress.com/2010/03/24/puro-marketing-virale/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 21:11:22 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=194</guid>
		<description><![CDATA[Attraverso il gruppo di Facebook &#8220;L&#8217;Italia che Innova&#8221; mi sono imbattuto in quest&#8217;analisi interessante sul blog di Giorgia Petrini autrice del libro omonimo L&#8217;Italia che innova 10 giovani leader 10 segreti del loro successo Filed under: Marketing<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=194&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Attraverso il gruppo di Facebook &#8220;<a href="http://www.facebook.com/pages/LItalia-che-INNOVA/158138754933?ref=mf">L&#8217;Italia che Innova</a>&#8221; mi sono imbattuto in quest&#8217;analisi interessante sul blog di <a href="http://giorgiapetrini.blogspot.com/2010/03/cosa-suona-davvero-nel-futuro-della.html">Giorgia Petrini</a> autrice del libro omonimo <strong>L&#8217;Italia che innova 10 giovani leader 10 segreti del loro successo</strong></p>
<br />Filed under: <a href='http://antoleo.wordpress.com/category/marketing/'>Marketing</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=194&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2010/03/24/puro-marketing-virale/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Obiettivi  e Webanalytics</title>
		<link>http://antoleo.wordpress.com/2010/03/22/obiettivi-e-webanalytics/</link>
		<comments>http://antoleo.wordpress.com/2010/03/22/obiettivi-e-webanalytics/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 22:50:17 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Posizionamento motori di ricerca]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[webanalytics]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=191</guid>
		<description><![CDATA[L&#8217;obiettivo primario dell&#8217;uso della webanalytics è quello di verificare e monitorare l&#8217;efficacia degli sforzi che stiamo facendo attraverso le attività di posizionamento nei motori di ricerca, di web marketing,ecc. Ovviamente tutto questo per capire se abbiamo realmente dei ritorni sui nostri investimenti di tempo e denaro. Ci sono vari modi per verificare questo. Uno dei [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=191&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>L&#8217;obiettivo primario dell&#8217;uso della webanalytics è quello di verificare e monitorare l&#8217;efficacia degli sforzi che stiamo facendo attraverso le attività di posizionamento nei motori di ricerca, di web marketing,ecc.<br />
Ovviamente tutto questo per capire se abbiamo realmente dei ritorni sui nostri investimenti di tempo e denaro.</p>
<p>Ci sono vari modi per verificare questo.<br />
Uno dei più semplici consiste nel definire gli obiettivi nel nostro software di web analytics.</p>
<p>Per obiettivo possiamo definire <strong>un&#8217;azione che l&#8217;utente che visita il nostro sito compie raggiungendo una determinata pagina</strong>: ad esempio la pagina dei contatti , la pagina di download di una demo, la pagina di un form da compilare, ecc<br />
Nel primo caso ogni volta che un utente raggiunge la pagina dei contatti incrementiamo gli obiettivi raggiunti nelle statistiche della webanalytics.</p>
<p>Ogni nostra strategia cercherà di migliorare il numero di obiettivi raggiunti. La webanalytics ci aiuterà a capire quali sono i comportamenti dei nostri visitatori e definire un&#8217;adeguata reazione  nell&#8217;ottica di un miglioramento continuo.</p>
<p>Le varie piattaforme di web analytics  offrono la possibilità di eseguire questo monitoraggio in modo differente. </p>
<p>Con Google Analytics è molto semplice: basta utilizzare i segmenti avanzati, selezionare la voce &#8220;visite con conversioni&#8221; e non resta che analizzare le pagine, le keyword, le sorgenti che generano un numero maggiore di conversioni.</p>
<br />Filed under: <a href='http://antoleo.wordpress.com/category/marketing/'>Marketing</a>, <a href='http://antoleo.wordpress.com/category/posizionamento-motori-di-ricerca/'>Posizionamento motori di ricerca</a>, <a href='http://antoleo.wordpress.com/category/seo/'>SEO</a> Tagged: <a href='http://antoleo.wordpress.com/tag/google-analytics/'>Google analytics</a>, <a href='http://antoleo.wordpress.com/tag/webanalytics/'>webanalytics</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=191&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2010/03/22/obiettivi-e-webanalytics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Miniguida per individuare le keywords del tuo business</title>
		<link>http://antoleo.wordpress.com/2010/01/08/miniguida-per-le-keywords-del-tuo-business/</link>
		<comments>http://antoleo.wordpress.com/2010/01/08/miniguida-per-le-keywords-del-tuo-business/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 10:33:28 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Posizionamento motori di ricerca]]></category>
		<category><![CDATA[keywords]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=187</guid>
		<description><![CDATA[Molto spesso mi chiedono amici e clienti come scegliere le giuste chiavi per creare traffico sul proprio sito web. La risposta non è semplice ma con un po&#8217; di fantasia, la conoscenza dei giusti tools disponibili in rete possiamo facilmente individuare quelle keywords che fanno al caso nostro. Ho creato una piccola miniguida che dovrebbe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=187&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Molto spesso mi chiedono amici e clienti come scegliere le giuste chiavi per creare traffico sul proprio sito web.<br />
La risposta non è semplice ma con un po&#8217; di fantasia, la conoscenza dei giusti tools disponibili in rete possiamo facilmente individuare quelle keywords che fanno al caso nostro.<br />
Ho creato una piccola <strong>miniguida </strong>che dovrebbe aiutarci in questa ricerca. A causa della lunghezza ho diviso il filmato in più parti.<br />&nbsp;<br />
<span style="text-align:center; display: block;"><a href="http://antoleo.wordpress.com/2010/01/08/miniguida-per-le-keywords-del-tuo-business/"><img src="http://img.youtube.com/vi/oq9TXN-gAr0/2.jpg" alt="" /></a></span></p>
<br />Pubblicato in: Posizionamento motori di ricerca Tagged: keywords <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=187&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2010/01/08/miniguida-per-le-keywords-del-tuo-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Grants per le onlus</title>
		<link>http://antoleo.wordpress.com/2009/12/18/google-grants-per-le-onlus/</link>
		<comments>http://antoleo.wordpress.com/2009/12/18/google-grants-per-le-onlus/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 13:34:57 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Google Grants]]></category>
		<category><![CDATA[google onlus]]></category>
		<category><![CDATA[google per no profit]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=185</guid>
		<description><![CDATA[Si è svolta la scorsa settimana a Roma una riuscita conferenza organizzata da Google per le onlus per la tutela dei minori. Nell&#8217;occasione Google ha promosso ed illustrato una serie di servizi gratuiti dedicati alle organizzazioni no profit. Tra questi servizi, Google Grants, che tradotto in parole molto povere è Google Adwords con un bonus [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=185&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Si è svolta la scorsa settimana a Roma una riuscita conferenza organizzata da Google per le onlus per la tutela dei minori.</p>
<p>Nell&#8217;occasione Google ha promosso ed illustrato una serie di servizi gratuiti dedicati alle organizzazioni no profit.</p>
<p>Tra questi servizi, Google Grants, che tradotto in parole molto povere è Google Adwords con un bonus di 10000 dollari mensili gratuiti per ogni onlus in click sponsorizzati, ha focalizzato l&#8217;attenzione dei partecipanti.</p>
<p>Considerando che potenzialmente questa offerta è rivolta a circa 4000 onlus in Italia, possiamo facilmente intuire le cifre di cui stiamo parlando e di cui bigG è l&#8217;elargitore.</p>
<p>Una ghiotta occasione quindi per tutte le organizzazioni per raggiungere attraverso Google una buona visibilità.</p>
<p>Tutte le informazioni sono raggiungibili all&#8217;indirizzo <a href="http://www.google.it/grants">www.google.it/grants</a>.</p>
<br />Pubblicato in: Marketing Tagged: Google Grants, google onlus, google per no profit <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=185&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2009/12/18/google-grants-per-le-onlus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Concorrenza = correre insieme?</title>
		<link>http://antoleo.wordpress.com/2009/12/16/concorrenza-correre-insieme/</link>
		<comments>http://antoleo.wordpress.com/2009/12/16/concorrenza-correre-insieme/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 18:17:37 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Video aziendali]]></category>
		<category><![CDATA[videoclip]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=180</guid>
		<description><![CDATA[In effetti in latino concorrenza significa correre insieme ma non penso che sia proprio uno dei desideri della Digitech quello di correre con i propri competitors soprattutto, ironia della sorte, all&#8217;interno del proprio sito aziendale. Esplico meglio. In questo giorni sto valutando di regalare un apparecchiatura elettronica per effetti voce. Dopo una breve ricerca in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=180&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In effetti in latino concorrenza significa correre insieme ma non penso che sia proprio uno dei desideri della Digitech quello di correre con i propri competitors soprattutto, ironia della sorte, all&#8217;interno del proprio sito aziendale.<br />
Esplico meglio.<br />
In questo giorni sto valutando di regalare un apparecchiatura elettronica per effetti voce.<br />
Dopo una breve ricerca in internet ho iniziato a valutare attraverso i siti web delle case produttrici le singole apparecchiature.<br />
Sono approdato in questo sito<a href="http://www.digitech.com/products/Vocalist/VocalistResources.php"> http://www.digitech.com/products/Vocalist/VocalistResources.php </a>dove posso attraverso il filmato apprezzare le caratteristiche dell&#8217;oggetto.<br />
Alla fine del filmato Youtube mi mostra una serie di altri filmati relativi a prodotti Digitech&#8230; però tra i vari filmati presenti ce n&#8217;è uno della concorrente TC Electronic.<br />
Se lanciamo il filmato otterremo l&#8217;effetto di visionare il filmato del prodotto TC Electronic all&#8217;interno del sito Digitech.<br />
Un grande risultato!!!</p>
<br />Pubblicato in: Video aziendali Tagged: Video aziendali, videoclip, youtube <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=180&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2009/12/16/concorrenza-correre-insieme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Gestione documentale e conservazione sostitutiva</title>
		<link>http://antoleo.wordpress.com/2009/11/27/gestione-documentale-e-conservazione-sostitutiva/</link>
		<comments>http://antoleo.wordpress.com/2009/11/27/gestione-documentale-e-conservazione-sostitutiva/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 21:27:31 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Fuori argomento]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=173</guid>
		<description><![CDATA[In passato in questo blog avevo espresso il desiderio di vedere in futuro sempre più persone lavorare senza dover necessariamente spostarsi giornalmente da casa in ufficio e ritorno. I mezzi informatici per fare questo passo sono esistenti da tempo e l&#8217;azienda virtuale è solamente vincolata da convinzioni e abitudini radicate in noi. Qualche anno fa [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=173&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In passato in questo blog avevo espresso il desiderio di vedere in futuro sempre più persone lavorare senza dover necessariamente spostarsi giornalmente da casa in ufficio e ritorno.<br />
I mezzi informatici per fare questo passo sono esistenti da tempo e l&#8217;azienda virtuale è solamente vincolata da convinzioni e abitudini radicate in noi.<br />
Qualche anno fa mi sono anche occupato dello sviluppo di applicazioni intranet di gestione documentale, applicazioni di cui ancora vado fiero e che hanno velocizzato e semplificato enormemente il flusso del ciclo di approvazione e di diffusione delle informazioni e documenti.<br />
Quindi è con enorme piacere che ho accettato una piccola collaborazione con Archivium società che sviluppa applicazioni e servizi tutte orientate a ridurre la carta dalla nostra vita e dai nostri uffici.<br />
Le applicazioni in questione permettono agevolmente di eliminare dossier e archivi dai nostri uffici con notevoli riduzioni di costo della carta, dell&#8217; affitto dei locali, delle pulizie e della gestione dell&#8217;archiviazione.<br />
Ma Archivium oltre a soluzioni per la gestione documentale propone il servizio della <a href="http://www.archivium-srl.it/conservazione-sostitutiva.html">conservazione sostitutiva</a> a norma ovvero la possibilità di equiparare i documenti digitali ai documenti cartacei garantendoli ai fini fiscali e di legge.</p>
<br />Pubblicato in: Fuori argomento  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=173&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2009/11/27/gestione-documentale-e-conservazione-sostitutiva/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
		<item>
		<title>Il filtro antiporno internet Davide 2.0</title>
		<link>http://antoleo.wordpress.com/2009/11/04/il-filtro-antiporno-internet-davide-2-0/</link>
		<comments>http://antoleo.wordpress.com/2009/11/04/il-filtro-antiporno-internet-davide-2-0/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 18:26:29 +0000</pubDate>
		<dc:creator>Leonardo Antonicelli</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[business con Youtube]]></category>
		<category><![CDATA[filtro antiporno]]></category>
		<category><![CDATA[marketing mix]]></category>
		<category><![CDATA[viral marketing]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://antoleo.wordpress.com/?p=166</guid>
		<description><![CDATA[Da molti anni collaboro con l&#8217; Associazione Davide Onlus www.davide.it. Conosco personalmente Don Ilario ed i suoi ragazzi e tutti gli sforzi che fanno per sostenere il progetto Davide. Per chi non conoscesse ancora cosa è il filtro Davide 2.0 vi propongo questo filmato tratto da Tg2 Dossier di qualche mese fa.&#160; Ritengo questo progetto [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=166&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Da molti anni collaboro con l&#8217; Associazione <strong>Davide Onlus</strong> <a href="http://www.davide.it/approfondimenti/filtro-antiporno.php" title="filtro antiporno Davide 2.0">www.davide.it</a>. Conosco personalmente Don Ilario ed i suoi ragazzi e tutti gli sforzi che fanno per sostenere il progetto Davide.<br />
Per chi non conoscesse ancora cosa è il filtro Davide 2.0 vi propongo questo filmato tratto da <strong>Tg2 Dossier</strong> di qualche mese fa.<br />&nbsp;<br />
<span style="text-align:center; display: block;"><a href="http://antoleo.wordpress.com/2009/11/04/il-filtro-antiporno-internet-davide-2-0/"><img src="http://img.youtube.com/vi/tT2IZUrYFzw/2.jpg" alt="" /></a></span><br />
Ritengo questo progetto molto importante e da padre purtroppo verifico giornalmente che si debba sempre più proteggere i nostri bambini dalle scempiaggini e dai pericoli che affliggono la rete.<br />
Dico purtroppo perchè sono innamorato del mio lavoro e ritengo la rete un enorme potente mezzo per l&#8217;umanità, ma come in tutte le cose c&#8217;è sempre il rovescio della medaglia.<br />
Quindi aiuto nel mio piccolo marginalmente il progetto Davide ed attualmente insieme ai ragazzi stiamo studiando come incrementare e migliorare il traffico proveniente dai motori di ricerca. <br />
L&#8217;uso dei filmati postati su YouTube è un ottimo mezzo per promuovere il proprio business ed è uno degli argomenti che maggiormente mi stanno appassionando in questo ultimo periodo.<br />
In un&#8217;appropriata dose di marketing mix e viral marketing, Youtube viene sempre più efficacemente utilizzato dalle aziende per autopromuoversi con bassi investimenti.<br />
In questo caso siamo molto fortunati perchè grazie a Mamma Rai abbiamo a disposizione un filmato con i controfiocchi, ma nella maggior parte dei casi bastano veramente pochi investimenti per creare e montare filmati di discreta fattura e poter aprire sul mondo la  propria impresa.</p>
<br />Pubblicato in: Marketing Tagged: business con Youtube, filtro antiporno, marketing mix, viral marketing, youtube <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antoleo.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antoleo.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antoleo.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antoleo.wordpress.com&amp;blog=3335917&amp;post=166&amp;subd=antoleo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antoleo.wordpress.com/2009/11/04/il-filtro-antiporno-internet-davide-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2d5b3457dd253902e13e1cc41e4c5dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antoleo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
