<?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>peopleForFun ~ don't surf the net, make the waves</title>
	<atom:link href="http://www.peopleforfun.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.peopleforfun.com</link>
	<description>don't surf the net make the waves</description>
	<lastBuildDate>Mon, 09 Jan 2012 12:54:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>DidaSfera, il futuro</title>
		<link>http://www.peopleforfun.com/?p=1449</link>
		<comments>http://www.peopleforfun.com/?p=1449#comments</comments>
		<pubDate>Mon, 09 Jan 2012 12:54:52 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Miscellanea]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1449</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a  href="http://didasfera.it"><img class="alignnone size-full wp-image-1450" title="didasfera" src="http://www.peopleforfun.com/upload/2012/01/didasfera.jpg" alt="" width="480" height="364" /></a></p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1449&Title=DidaSfera, il futuro" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1449&title=DidaSfera, il futuro" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1449&title=DidaSfera, il futuro" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=DidaSfera, il futuro&u=http://www.peopleforfun.com/?p=1449" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1449&title=DidaSfera, il futuro" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=DidaSfera, il futuro&u=http://www.peopleforfun.com/?p=1449" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1449&title=DidaSfera, il futuro" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1449" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1449&amp;t=DidaSfera, il futuro" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1449&amp;title=DidaSfera, il futuro" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1449&amp;t=DidaSfera, il futuro" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1449</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>opendir sort by folders</title>
		<link>http://www.peopleforfun.com/?p=1433</link>
		<comments>http://www.peopleforfun.com/?p=1433#comments</comments>
		<pubDate>Mon, 24 Oct 2011 08:55:39 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1433</guid>
		<description><![CDATA[Semplice script per visualizzare prima le cartelle e poi i file

&#160;

&#60;?php
$fileArray = array();
$folderArray = array();
$checkFile = array('.','..','Thumbs.db','DS_STORE');

$dir = opendir('./');

while (false !== ($file = readdir($dir))) {
if(!in_array($file,$checkFile)) {
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if ($ext != '') { $fileArray[] = $file; } else {$folderArray[] = $file; }
}
}

closedir($dir);

sort ($fileArray);
sort ($folderArray);

while (list ($key, $val) = each ($folderArray)) {
echo '&#60;a href="'.$val.'/"&#62;/'.$val.'/&#60;/a&#62;&#60;br /&#62;';
}



&#160;

while (list [...]]]></description>
			<content:encoded><![CDATA[<p>Semplice script per visualizzare prima le cartelle e poi i file</p>
<p>&nbsp;</p>
<p><code>&lt;?php<br />
$fileArray = array();<br />
$folderArray = array();<br />
$checkFile = array('.','..','Thumbs.db','DS_STORE');</code></p>
<p><code>$dir = opendir('./');</code></p>
<p><code>while (false !== ($file = readdir($dir))) {<br />
if(!in_array($file,$checkFile)) {<br />
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));<br />
if ($ext != '') { $fileArray[] = $file; } else {$folderArray[] = $file; }<br />
}<br />
}</p>
<p>closedir($dir);</p>
<p>sort ($fileArray);<br />
sort ($folderArray);</p>
<p>while (list ($key, $val) = each ($folderArray)) {<br />
echo '&lt;a href="'.$val.'/"&gt;/'.$val.'/&lt;/a&gt;&lt;br /&gt;';<br />
}</p>
<p></code></p>
<p>&nbsp;</p>
<p><code>while (list ($key, $val) = each ($fileArray)) {<br />
echo '&lt;a href="'.$val.'/"&gt;/'.$val.'/&lt;/a&gt;&lt;br /&gt;';<br />
}<br />
</code></p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1433&Title=opendir sort by folders" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1433&title=opendir sort by folders" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1433&title=opendir sort by folders" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=opendir sort by folders&u=http://www.peopleforfun.com/?p=1433" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1433&title=opendir sort by folders" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=opendir sort by folders&u=http://www.peopleforfun.com/?p=1433" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1433&title=opendir sort by folders" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1433" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1433&amp;t=opendir sort by folders" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1433&amp;title=opendir sort by folders" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1433&amp;t=opendir sort by folders" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1433</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple jQuery flip gallery</title>
		<link>http://www.peopleforfun.com/?p=1427</link>
		<comments>http://www.peopleforfun.com/?p=1427#comments</comments>
		<pubDate>Tue, 20 Sep 2011 18:11:38 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1427</guid>
		<description><![CDATA[

qualcosina di semplice simil... flash :)

qui

[download id="31"]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.peopleforfun.com/upload/2011/09/06.jpg" class="thickbox no_icon" rel="gallery-1427" title="06"><img class="alignnone size-full wp-image-1428" title="06" src="http://www.peopleforfun.com/upload/2011/09/06.jpg" alt="" width="500" height="350" /></a></p>
<p>qualcosina di semplice simil&#8230; flash :)</p>
<p><a  href="http://peopleforfun.com/flip" target="_blank">qui</a></p>
Note: There is a file embedded within this post, please visit this post to download the file.
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1427&Title=Simple jQuery flip gallery" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1427&title=Simple jQuery flip gallery" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1427&title=Simple jQuery flip gallery" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Simple jQuery flip gallery&u=http://www.peopleforfun.com/?p=1427" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1427&title=Simple jQuery flip gallery" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Simple jQuery flip gallery&u=http://www.peopleforfun.com/?p=1427" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1427&title=Simple jQuery flip gallery" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1427" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1427&amp;t=Simple jQuery flip gallery" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1427&amp;title=Simple jQuery flip gallery" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1427&amp;t=Simple jQuery flip gallery" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1427</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error 310 (net::ERR_TOO_MANY_REDIRECTS)</title>
		<link>http://www.peopleforfun.com/?p=1425</link>
		<comments>http://www.peopleforfun.com/?p=1425#comments</comments>
		<pubDate>Tue, 12 Jul 2011 13:00:19 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1425</guid>
		<description><![CDATA[Dopo aver aggiornato MySql all'ultima versione, 5.x, mi è saltato un wordpress multisite, loop sul login, per prima cosa ho controllato il database e stranamente era corrotta la tabella, wp_blogs, anche dopo un repair la tabella è rimasta corrotta, poco male visto che avevo fatto un backup, riprovo e l'errore è sempre lì, solo quando [...]]]></description>
			<content:encoded><![CDATA[<p>Dopo aver aggiornato MySql all&#8217;ultima versione, 5.x, mi è saltato un wordpress multisite, loop sul login, per prima cosa ho controllato il database e stranamente era corrotta la tabella, wp_blogs, anche dopo un repair la tabella è rimasta corrotta, poco male visto che avevo fatto un backup, riprovo e l&#8217;errore è sempre lì, solo quando cerco di gestire i domini di 3 livello e cerco di aggiornare il network, ok, cancello il file wp-config e reinstallo il tutto sul database esistente, dalla pagina wp-admin/network.php copio i dati e riabilito il multisite&#8230; errore&#8230; mi chiede sempre il login, controllo il file .htaccess e sembra a posto, ricontrollo wp-config.php ed elimino il www in define( &#8216;DOMAIN_CURRENT_SITE&#8217;, &#8216;mydomain.it&#8217; ); e&#8230; tutto torna alla normalità.</p>
<p>Nelle option ho lasciato il www e non sembra creare problemi, la cosa strana è che lo stesso wordpress suggerisce di usare il www.</p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1425&Title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1425&title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1425&title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Error 310 (net::ERR_TOO_MANY_REDIRECTS)&u=http://www.peopleforfun.com/?p=1425" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1425&title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Error 310 (net::ERR_TOO_MANY_REDIRECTS)&u=http://www.peopleforfun.com/?p=1425" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1425&title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1425" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1425&amp;t=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1425&amp;title=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1425&amp;t=Error 310 (net::ERR_TOO_MANY_REDIRECTS)" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1425</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Social Bookmark</title>
		<link>http://www.peopleforfun.com/?p=1414</link>
		<comments>http://www.peopleforfun.com/?p=1414#comments</comments>
		<pubDate>Sun, 19 Jun 2011 10:13:47 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1414</guid>
		<description><![CDATA[Semplice plugin per aggiungere una lista dei più noti social network, l'esempio lo vedete sotto, il plugin è basato su una vecchia versione, WP SOCIAL BOOKMARK MENU di Giovambattista Fazioli e Josh Jones. Installare e scegliere i Social da visualizzare.

[download id="30"]

[donate]]]></description>
			<content:encoded><![CDATA[<p>Semplice plugin per aggiungere una lista dei più noti social network, l&#8217;esempio lo vedete sotto, il plugin è basato su una vecchia versione, <a  href="http://wordpress.org/support/topic/plugin-wp-social-bookmark-menu-deprecated" target="_blank">WP SOCIAL BOOKMARK MENU</a> di <a  href="http://www.undolog.com/" target="_blank">Giovambattista Fazioli</a> e Josh Jones. Installare e scegliere i Social da visualizzare.</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<form target='blank' class='donate' method='post' action='https://www.paypal.com/cgi-bin/webscr'>      <input type='hidden' value='' name='amount'/>      <input type='hidden' value='_xclick' name='cmd'/>      <input type='hidden' value='support@peopleforfun.com' name='business'/>      <input type='hidden' value='Thanks for donating, we really appreciate it, the people' name='item_name'/>      <input type='hidden' value='1' name='no_shipping'/>      <input type='hidden' value='http://www.peopleforfun.com' name='return'/>      <input type='hidden' value='http://www.peopleforfun.com' name='cancel_return'/>      <input type='hidden' value='USD' name='currency_code'/>      <input type='hidden' value='0' name='tax'/>      <input type='image' alt='PayPal' name='submit' style='border: 0pt none ;' src='http://www.peopleforfun.com/paypal_donate.gif'/></form>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1414&Title=WP Social Bookmark" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1414&title=WP Social Bookmark" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1414&title=WP Social Bookmark" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=WP Social Bookmark&u=http://www.peopleforfun.com/?p=1414" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1414&title=WP Social Bookmark" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=WP Social Bookmark&u=http://www.peopleforfun.com/?p=1414" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1414&title=WP Social Bookmark" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1414" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1414&amp;t=WP Social Bookmark" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1414&amp;title=WP Social Bookmark" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1414&amp;t=WP Social Bookmark" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1414</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Referendum del 12-13 giugno</title>
		<link>http://www.peopleforfun.com/?p=1411</link>
		<comments>http://www.peopleforfun.com/?p=1411#comments</comments>
		<pubDate>Wed, 08 Jun 2011 06:16:49 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[Miscellanea]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1411</guid>
		<description><![CDATA[Ho ricevuto e pubblico la seguente email:
I 4 referendum del 12 e 13 giugno riguarderanno quattro quesiti, che elenco sinteticamente.

Primo quesito 
 
Colore scheda: rosso
Titolo: Modalità di affidamento e gestione dei servizi pubblici locali di rilevanza economica. Abrogazione
Descrizione: Il quesito prevede l’abrogazione di norme che attualmente consentono di affidare la gestione dei servizi pubblici locali a operatori [...]]]></description>
			<content:encoded><![CDATA[<p>Ho ricevuto e pubblico la seguente email:</p>
<div><span style="font-family: Arial;"><span style="color: #000000; font-size: x-small;">I 4 referendum del 12 e 13 giugno riguarderanno quattro quesiti, che elenco sinteticamente.</span></span></div>
<p><span style="font-family: Arial;"></p>
<div><span style="color: #000000; font-size: x-small;"><strong>Primo quesito</strong> </span></div>
<div><strong> </strong></div>
<div><span style="font-size: x-small;"><span style="color: #000000;"><strong>Colore scheda</strong>: rosso</span></span></div>
<div><span style="color: #000000; font-size: x-small;"><strong>Titolo</strong>: Modalità di affidamento e gestione dei servizi pubblici locali di rilevanza economica. Abrogazione</span></div>
<div><span style="color: #000000; font-size: x-small;"><strong>Descrizione</strong>: Il quesito prevede l’abrogazione di norme che attualmente consentono di affidare la gestione dei servizi pubblici locali a operatori economici privati.</span></div>
<div><span style="font-size: x-small;"><span style="color: #000000;">NB: Il quesito riguarda tutti i servizi pubblici locali (trasporti, rifiuti urbani, acqua, ecc.), non solo l&#8217;acqua.<br />
</span><br />
<span style="color: #000000;"><strong>Secondo quesito</strong> </span></span></div>
<div><span style="font-size: x-small;"><span style="color: #000000;"><strong>Colore scheda</strong>: giallo</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #000000;"><strong>Titolo</strong>: Determinazione della tariffa del servizio idrico integrato in base all&#8217;adeguata remunerazione del capitale investito. Abrogazione parziale di norma.</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #000000;"><strong>Descrizione</strong>: Il quesito propone l’abrogazione delle norme che stabiliscono la determinazione della tariffa per l’erogazione dell’acqua, il cui importo prevede attualmente anche la remunerazione del capitale investito dal gestore.</span></span></div>
<p><span style="font-size: x-small;"></p>
<div>
<span style="color: #000000;"><strong>Terzo quesito </strong></span></div>
<div><strong> </strong></div>
<p></span><span style="font-size: x-small;"><span style="color: #000000;"></p>
<div><strong>Colore scheda</strong>: grigio</div>
<div><strong>Titolo</strong>: Abrogazione delle nuove norme che consentono la produzione nel territorio nazionale di energia elettrica nucleare.</div>
<div><strong>Descrizione</strong>: Il quesito propone l’abrogazione delle nuove norme che consentono la produzione nel territorio nazionale di energia elettrica nucleare.</div>
<p></span></p>
<div>
<span style="color: #000000;"><strong>Quarto quesito</strong> </span></div>
<div><strong> </strong><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><strong>Colore scheda</strong>: verde</span></div>
<div><span style="color: #000000;"><strong>Titolo</strong>: Abrogazione di norme della legge 7 aprile 2010, n. 51, in materia di legittimo impedimento del Presidente del Consiglio dei Ministri e dei Ministri a comparire in udienza penale, quale risultante a seguito della sentenza n. 23 del 2011 della Corte Costituzionale</span></div>
<div><span style="color: #000000;"><strong>Descrizione</strong>: Il quesito propone l’abrogazione di norme in materia di legittimo impedimento del Presidente del Consiglio dei Ministri e dei Ministri a comparire in udienza penale, quale risultante a seguito della sentenza n. 23 del 2011 della Corte Costituzionale.</span></div>
<p></span></p>
<div><span style="font-size: x-small;"><span style="color: #000000;"><br />
</span><br />
<span style="color: #000000;">Affinché la consultazione sia validità,  bisognerà raggiungere il quorum (il 50% più 1 degli aventi diritto al voto) che per questi referendum è di</span></span><span style="color: #000000; font-size: x-small;"> 25.297.435.</p>
<p></span><span style="color: #000000;"><span style="font-size: x-small;">I seggi resteranno aperti dalle 8 alle 22 di domenica 12 giugno</span><span style="font-size: x-small;">, e dalle 7 alle 15 di lunedì 13 giugno</span><span style="font-size: x-small;">.</span></span></div>
<div><span style="color: #000000; font-size: x-small;">Il nostro invito è di andare a votare e a votare Sì, alla cancellazione di alcune leggi dannose per tutti noi.</span></div>
<div><span style="color: #000000; font-size: x-small;">In particolare, la vittoria del Sì sui quesiti contro la privatizzazione dei servizi pubblici locali costituirebbe un&#8217;importante segnale in controtendenza con le politiche liberiste che da un ventennio governi di centrodestra e di centrosinistra ci impongono. Segnale che potrebbe avere ricadute positive pure sul futuro della scuola pubblica.</span></div>
<div><span style="color: #000000; font-size: x-small;">Allego un volantino della Confederazione Cobas sull&#8217;argomento e invito ad andare a votare la mattina di domenica 12 per far registrare un&#8217;affluenza alle urne significativa, provocando la  convinzione che il quorum è effettivamente a portata di mano, che potrebbe produrre un&#8217;effetto trascinamento negli indecisi.</span></div>
<p></span></p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1411&Title=Referendum del 12-13 giugno" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1411&title=Referendum del 12-13 giugno" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1411&title=Referendum del 12-13 giugno" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Referendum del 12-13 giugno&u=http://www.peopleforfun.com/?p=1411" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1411&title=Referendum del 12-13 giugno" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Referendum del 12-13 giugno&u=http://www.peopleforfun.com/?p=1411" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1411&title=Referendum del 12-13 giugno" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1411" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1411&amp;t=Referendum del 12-13 giugno" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1411&amp;title=Referendum del 12-13 giugno" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1411&amp;t=Referendum del 12-13 giugno" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1411</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Io sono di sinistra!</title>
		<link>http://www.peopleforfun.com/?p=1408</link>
		<comments>http://www.peopleforfun.com/?p=1408#comments</comments>
		<pubDate>Fri, 27 May 2011 14:51:25 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[4 fun]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1408</guid>
		<description><![CDATA[

"Uomo di sinistra" Collezione Berlusconi]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1409" title="magritte" src="http://www.peopleforfun.com/upload/2011/05/magritte.jpg" alt="" width="374" height="450" /></p>
<p>&#8220;Uomo di sinistra&#8221; Collezione Berlusconi</p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1408&Title=Io sono di sinistra!" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1408&title=Io sono di sinistra!" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1408&title=Io sono di sinistra!" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Io sono di sinistra!&u=http://www.peopleforfun.com/?p=1408" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1408&title=Io sono di sinistra!" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Io sono di sinistra!&u=http://www.peopleforfun.com/?p=1408" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1408&title=Io sono di sinistra!" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1408" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1408&amp;t=Io sono di sinistra!" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1408&amp;title=Io sono di sinistra!" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1408&amp;t=Io sono di sinistra!" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1408</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ma la Moratti mi piace?</title>
		<link>http://www.peopleforfun.com/?p=1404</link>
		<comments>http://www.peopleforfun.com/?p=1404#comments</comments>
		<pubDate>Fri, 27 May 2011 10:10:06 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[4 fun]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1404</guid>
		<description><![CDATA[bellissimo questo post:

http://www.byoblu.com/post/2011/05/25/COME-TI-GONFIO-LA-PAGINA-PUBBLICA-DELLA-MORATTI-Senza-passare-dal-MI-PIACE.aspx]]></description>
			<content:encoded><![CDATA[<p>bellissimo questo post:</p>
<p><a  href="http://www.byoblu.com/post/2011/05/25/COME-TI-GONFIO-LA-PAGINA-PUBBLICA-DELLA-MORATTI-Senza-passare-dal-MI-PIACE.aspx">http://www.byoblu.com/post/2011/05/25/COME-TI-GONFIO-LA-PAGINA-PUBBLICA-DELLA-MORATTI-Senza-passare-dal-MI-PIACE.aspx</a></p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1404&Title=Ma la Moratti mi piace?" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1404&title=Ma la Moratti mi piace?" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1404&title=Ma la Moratti mi piace?" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Ma la Moratti mi piace?&u=http://www.peopleforfun.com/?p=1404" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1404&title=Ma la Moratti mi piace?" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Ma la Moratti mi piace?&u=http://www.peopleforfun.com/?p=1404" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1404&title=Ma la Moratti mi piace?" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1404" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1404&amp;t=Ma la Moratti mi piace?" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1404&amp;title=Ma la Moratti mi piace?" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1404&amp;t=Ma la Moratti mi piace?" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1404</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No brain</title>
		<link>http://www.peopleforfun.com/?p=1395</link>
		<comments>http://www.peopleforfun.com/?p=1395#comments</comments>
		<pubDate>Thu, 26 May 2011 16:40:41 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[4 fun]]></category>
		<category><![CDATA[berlusca]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1395</guid>
		<description><![CDATA[
Anche se avessi il cervello, cosa che giustamente il sig. Berlusconi afferma che non ho, non lo voterei lo stesso.
Ma a voler essere obiettivi una cosa buona (tra le tante, eh) l'ha fatta.
Sto smettendo di fumare.
Non ho più i soldi per comprare le sigarette.
Il prossimo passo immagino sia smettere di mangiare.

La sinistra riuscirà a vincere [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1397" title="no brain" src="http://www.peopleforfun.com/upload/2011/05/no-brain.jpg" alt="" width="320" height="320" /><br />
Anche se avessi il cervello, cosa che giustamente il sig. Berlusconi afferma che non ho, non lo voterei lo stesso.<br />
Ma a voler essere obiettivi una cosa buona (tra le tante, eh) l&#8217;ha fatta.<br />
Sto smettendo di fumare.<br />
Non ho più i soldi per comprare le sigarette.<br />
Il prossimo passo immagino sia smettere di mangiare.</p>
<p><em>La sinistra riuscirà a vincere ai ballottaggi solo se &#8220;gli italiani andranno a votare lasciando a casa il cervello&#8221;. Così il presidente del Consiglio a Porta a Porta &#8211; 26 maggio 2011</em></p>
<p><a  href="http://tv.repubblica.it/dossier/amministrative-2011/berlusconi-senza-cervello-chi-vota-a-sinistra/69258?video=&#038;pagefrom=1" target="_blank">qui</a></p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1395&Title=No brain" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1395&title=No brain" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1395&title=No brain" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=No brain&u=http://www.peopleforfun.com/?p=1395" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1395&title=No brain" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=No brain&u=http://www.peopleforfun.com/?p=1395" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1395&title=No brain" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1395" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1395&amp;t=No brain" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1395&amp;title=No brain" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1395&amp;t=No brain" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1395</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frasi celebri</title>
		<link>http://www.peopleforfun.com/?p=1391</link>
		<comments>http://www.peopleforfun.com/?p=1391#comments</comments>
		<pubDate>Tue, 08 Mar 2011 19:05:48 +0000</pubDate>
		<dc:creator>futre</dc:creator>
				<category><![CDATA[4 fun]]></category>

		<guid isPermaLink="false">http://www.peopleforfun.com/?p=1391</guid>
		<description><![CDATA[Woody Allen ha detto: Having                    sex is like playing bridge. If you don't have a good partner,                    [...]]]></description>
			<content:encoded><![CDATA[<p>Woody Allen ha detto:<em> Having                    sex is like playing bridge. If you don&#8217;t have a good partner,                    you&#8217;d better have a good hand.</em></p>
<p>Daniele Bazzani ha detto: <em>Meglio una buona mano che una buona chitarra!</em></p>
<p>Non so se ci sia un nesso tra le 2 frasi ma&#8230;</p>
<p>;)</p>
<div id="wp-social-bookmark-menu"><ul id="socials"><li class="blinklist social"><a target="blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http://www.peopleforfun.com/?p=1391&Title=Frasi celebri" title="Share this on Blinklist"> </a></li><li class="delicious social"><a target="blank" href="http://del.icio.us/post?url=http://www.peopleforfun.com/?p=1391&title=Frasi celebri" title="Share this on del.icio.us"> </a></li><li class="digg social"><a target="blank" href="http://digg.com/submit?phase=2&url=http://www.peopleforfun.com/?p=1391&title=Frasi celebri" title="Digg this!"> </a></li><li class="furl social"><a target="blank" href="http://www.furl.net/storeIt.jsp?t=Frasi celebri&u=http://www.peopleforfun.com/?p=1391" title="Share this on Furl"> </a></li><li class="reddit social"><a target="blank" href="http://reddit.com/submit?url=http://www.peopleforfun.com/?p=1391&title=Frasi celebri" title="Share this on Reddit"> </a></li><li class="yahoo social"><a target="blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Frasi celebri&u=http://www.peopleforfun.com/?p=1391" title="Save this to Yahoo MyWeb"> </a></li><li class="stumble social"><a target="blank" href="http://www.stumbleupon.com/submit?url=http://www.peopleforfun.com/?p=1391&title=Frasi celebri" title="Stumble upon something good? Share it on StumbleUpon"> </a></li><li class="technorati social"><a target="blank" href="http://technorati.com/faves?add=http://www.peopleforfun.com/?p=1391" title="Share this on Technorati"> </a></li><li class="myspace social"><a target="blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.peopleforfun.com/?p=1391&amp;t=Frasi celebri" title="Post this to MySpace"> </a></li><li class="designfloat social"><a target="blank" href="http://www.designfloat.com/submit.php?url=http://www.peopleforfun.com/?p=1391&amp;title=Frasi celebri" title="Submit this to DesignFloat"> </a></li><li class="facebook social"><a target="blank" href="http://www.facebook.com/share.php?u=http://www.peopleforfun.com/?p=1391&amp;t=Frasi celebri" title="Share this on Facebook"> </a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.peopleforfun.com/?feed=rss2&#038;p=1391</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

