Commit 96a29667 authored by Leo Iannacone's avatar Leo Iannacone

Init venus

parents
Sam Ruby <rubys@intertwingly.net>
This codebase represents a radical refactoring of Planet 2.0, which lists
the following authors:
Scott James Remnant <scott@netsplit.com>
Jeff Waugh <jdub@perkypants.org>
This diff is collapsed.
Planet
------
Planet is a flexible feed aggregator. It downloads news feeds published by
web sites and aggregates their content together into a single combined feed,
latest news first. This version of Planet is named Venus as it is the
second major version. The first version is still in wide use and is
also actively being maintained.
It uses Mark Pilgrim's Universal Feed Parser to read from CDF, RDF, RSS and
Atom feeds; Leonard Richardson's Beautiful Soup to correct markup issues;
and either Tomas Styblo's templating engine or Daniel Viellard's implementation
of XSLT to output static files in any format you can dream up.
To get started, check out the documentation in the docs directory. If you have
any questions or comments, please don't hesitate to use the planet mailing list:
http://lists.planetplanet.org/mailman/listinfo/devel
Keywords: feed, blog, aggregator, RSS, RDF, Atom, OPML, Python
DeWitt Clinton - Mac OSX
Mary Gardiner - PythonPath
Elias Torres - FOAF OnlineAccounts
Jacques Distler - Template patches
Michael Koziarski - HTTP Auth fix
Brian Ewins - Win32 / Portalocker
Joe Gregorio - python versioning for filters, verbose tests, spider_threads
Harry Fuecks - Pipe characters in file names, filter bug
Eric van der Vlist - Filters to add language, category information
Chris Dolan - mkdir cache; default template_dirs; fix xsltproc
David Sifry - rss 2.0 xslt template based on http://atom.geekhood.net/
Morten Frederiksen - Support WordPress LinkManager OPML
Harry Fuecks - default item date to feed date
Antonio Cavedoni - Django templates
Morten Frederiksen - expungeCache
Lenny Domnitser - Coral CDN support for URLs with non-standard ports
Amit Chakradeo - Allow read-only files to be overwritten
Matt Brubeck - fix new_channel
Aristotle Pagaltzis - ensure byline_author filter doesn't drop foreign markup
This codebase represents a radical refactoring of Planet 2.0, which lists
the following contributors:
Patches and Bug Fixes
---------------------
Chris Dolan - fixes, exclude filtering, duplicate culling
David Edmondson - filtering
Lucas Nussbaum - locale configuration
David Pashley - cache code profiling and recursion fixing
Gediminas Paulauskas - days per page
Spycyroll Maintainers
---------------------
Vattekkat Satheesh Babu
Richard Jones
Garth Kidd
Eliot Landrum
Bryan Richard
TODO
====
* Allow display normalisation to specified timezone
Some Planet admins would like their feed to be displayed in the local
timezone, instead of UTC.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import cgi
import cgitb
cgitb.enable()
from urllib import unquote
import sys, os
# Modify this to point to where you usually run planet.
BASE_DIR = '..'
# Modify this to point to your venus installation dir, relative to planet dir above.
VENUS_INSTALL = "venus"
# Config file, relative to planet dir above
CONFIG_FILE = "config/live"
# Admin page URL, relative to this script's URL
ADMIN_URL = "admin.html"
# chdir to planet dir - config may be relative from there
os.chdir(os.path.abspath(BASE_DIR))
# Add venus to path.
sys.path.append(VENUS_INSTALL)
# Add shell dir to path - auto detection does not work
sys.path.append(os.path.join(VENUS_INSTALL, "planet", "shell"))
# import necessary planet items
from planet import config
from planet.spider import filename
# Load config
config.load(CONFIG_FILE)
# parse query parameters
form = cgi.FieldStorage()
# Start HTML output at once
print "Content-Type: text/html;charset=utf-8" # HTML is following
print # blank line, end of headers
print '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
print '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv"><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>Admin results</title></head><body>'
print '<div>'
# Cache and blacklist dirs
cache = config.cache_directory()
blacklist = config.cache_blacklist_directory()
# Must have command parameter
if not "command" in form:
print "<p>Unknown command</p>"
elif form['command'].value == "blacklist":
# Create the blacklist dir if it does not exist
if not os.path.exists(blacklist):
os.mkdir(blacklist)
print "<p>Created directory %s</p>" % blacklist
# find list of urls, in the form bl[n]=url
for key in form.keys():
if not key.startswith("bl"): continue
url = unquote(form[key].value)
# find corresponding files
cache_file = filename(cache, url)
blacklist_file = filename(blacklist, url)
# move to blacklist if found
if os.path.exists(cache_file):
os.rename(cache_file, blacklist_file)
print "<p>Blacklisted <a href='%s'>%s</a></p>" % (url, url)
else:
print "<p>Unknown file: %s</p>" % cache_file
print """
<p>Note that blacklisting does not automatically
refresh the planet. You will need to either wait for
a scheduled planet run, or refresh manually from the admin interface.</p>
"""
elif form['command'].value == "run":
# run spider and refresh
from planet import spider, splice
try:
spider.spiderPlanet(only_if_new=False)
print "<p>Successfully ran spider</p>"
except Exception, e:
print e
doc = splice.splice()
splice.apply(doc.toxml('utf-8'))
elif form['command'].value == "refresh":
# only refresh
from planet import splice
doc = splice.splice()
splice.apply(doc.toxml('utf-8'))
print "<p>Successfully refreshed</p>"
elif form['command'].value == "expunge":
# only expunge
from planet import expunge
expunge.expungeCache()
print "<p>Successfully expunged</p>"
print "<p><strong><a href='" + ADMIN_URL + "'>Return</a> to admin interface</strong></p>"
print "</body></html>"
<?xml version="1.0" ?><entry xml:lang="it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://albertorusso.net/29 at http://albertorusso.net</id><link href="http://albertorusso.net/node/29" rel="alternate" type="text/html"/><title xml:lang="it">Ubuntu-it Meeting</title><summary type="xhtml" xml:lang="it"><div xmlns="http://www.w3.org/1999/xhtml"><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p class="rtecenter"><img alt="" src="http://dl.dropbox.com/u/4277955/meeting_tra.png" style="cursor: default; margin-top: 5px; margin-right: 10px; margin-bottom: 5px; margin-left: 10px;"/></p>
<div style="font-family: Arial, Verdana, sans-serif; font-size: 13px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255);">
<p>Sabato 28 maggiop si terrà a Roma il &quot;<strong>Ubuntu-it Meeting</strong>&quot;, dove potrete conoscere la comunità Italiana di Ubuntu.</p>
</div>
<p>Sarà una giornata intensa, riccha di idee e contenuti preparati con cura dalla comunità <strong>Ubuntu-it</strong> e dal <strong>LSLug</strong> per arricchire le vostre conoscenze, ma sempre cercando di farvi divertire e di offrirvi un ambiente sempre più accogliente dove confrontarsi e migliorarsi insieme. Verranno discussi i progetti in seno alla comunità di Ubuntu, il Floss al femminile e tanti altri argomenti interessanti.</p>
<p>A Sabato :)</p>
<p><a href="http://wiki.ubuntu-it.org/UbuntuItMeeting">Per ulteriori informazioni.</a></p>
</div></div></div><div class="field field-name-taxonomy-wp-blog-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Blog tags: </div><div class="field-items"><div class="field-item even"><a href="http://albertorusso.net/taxonomy/term/11">ubuntu-it</a></div><div class="field-item odd"><a href="http://albertorusso.net/taxonomy/term/7">ubuntu</a></div></div></div></div></summary><updated planet:format="21 May 2011 11.00">2011-05-21T11:00:25Z</updated><author><name>Alberto Russo</name></author><source><id>http://albertorusso.net/blog</id><link href="http://albertorusso.net/blog" rel="alternate" type="text/html"/><link href="http://albertorusso.net/blog/rss" rel="self" type="application/rss+xml"/><title xml:lang="it">Alberto Russo - Linux &amp; Software Libero</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:45Z</updated><planet:bozo>false</planet:bozo><planet:faceheight>100</planet:faceheight><planet:format>rss20</planet:format><planet:facewidth>100</planet:facewidth><planet:face>valix.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alberto Russo (valix)</planet:name><planet:css-id>alberto-russo-valix</planet:css-id><planet:http_last_modified>Tue, 06 Mar 2012 15:32:42 +0000</planet:http_last_modified><planet:days_per_page>0</planet:days_per_page><planet:http_etag>&quot;1331047962&quot;</planet:http_etag><planet:http_status>200</planet:http_status><planet:encoding>xml</planet:encoding><planet:locale>it_IT.utf8</planet:locale></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://albertorusso.net/30 at http://albertorusso.net</id><link href="http://albertorusso.net/node/30" rel="alternate" type="text/html"/><title xml:lang="it">Scopri la prossima Ubuntu, partecipa ai test!</title><summary type="xhtml" xml:lang="it"><div xmlns="http://www.w3.org/1999/xhtml"><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><div style="font-family: Arial, Verdana, sans-serif; font-size: 13px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255);">
<p class="line862"><img alt="" src="http://dl.dropbox.com/u/4277955/Ocelot.jpg" style="cursor: default; width: 238px; height: 156px; margin-top: 5px; margin-right: 10px; margin-bottom: 5px; margin-left: 10px; float: left;"/>Il 2 giugno è stata rilasciata la versione Alpha1 di <strong>Oneiric Ocelot</strong>, nome in codice di <strong>Ubuntu 11.10</strong> prevista per il <a class="https" href="https://wiki.ubuntu.com/OneiricReleaseSchedule">13 Ottobre</a>.</p>
<p class="line874">Se volete provare con mano le novità di questo nuovo rilascio allora siete invitati a partecipate ai test di Ubuntu!</p>
<p class="line874">Testare Ubuntu è relativamente semplice, richiede un impegno minimo (mediamente qualche ora al mese) ed è divertentissimo. Settimana dopo settimana vedrete la prossima versione di Ubuntu materializzarsi sotto i vostri occhi, le nuove funzionalità apparire, gli stili grafici cambiare ed i bug risolti uno ad uno. <img alt=":)" height="16" src="http://wiki.ubuntu-it.org/moin_static192/ubuntu-it/img/smile.png" style="cursor: default;" title=":)" width="16"/></p>
<p>Le istruzioni per partecipare sono descritte nel <a class="http" href="http://wiki.ubuntu-it.org/GruppoTest#partecipare">wiki</a>, se avete qualche domanda o curiosità ci trovate nel canale IRC #ubuntu-it-test, raggiungibile anche via <a class="http" href="http://webchat.freenode.net/?channels=ubuntu-it-test">webchat</a>.</p>
</div>
<p> </p>
</div></div></div><div class="field field-name-taxonomy-wp-blog-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Blog tags: </div><div class="field-items"><div class="field-item even"><a href="http://albertorusso.net/taxonomy/term/12">Oneiric Ocelot</a></div><div class="field-item odd"><a href="http://albertorusso.net/taxonomy/term/13">Ubuntu 11.10</a></div><div class="field-item even"><a href="http://albertorusso.net/taxonomy/term/14">gruppo test</a></div><div class="field-item odd"><a href="http://albertorusso.net/taxonomy/term/11">ubuntu-it</a></div></div></div></div></summary><updated planet:format="05 June 2011 15.04">2011-06-05T15:04:51Z</updated><author><name>Alberto Russo</name></author><source><id>http://albertorusso.net/blog</id><link href="http://albertorusso.net/blog" rel="alternate" type="text/html"/><link href="http://albertorusso.net/blog/rss" rel="self" type="application/rss+xml"/><title xml:lang="it">Alberto Russo - Linux &amp; Software Libero</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:45Z</updated><planet:bozo>false</planet:bozo><planet:faceheight>100</planet:faceheight><planet:format>rss20</planet:format><planet:facewidth>100</planet:facewidth><planet:face>valix.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alberto Russo (valix)</planet:name><planet:css-id>alberto-russo-valix</planet:css-id><planet:http_last_modified>Tue, 06 Mar 2012 15:32:42 +0000</planet:http_last_modified><planet:days_per_page>0</planet:days_per_page><planet:http_etag>&quot;1331047962&quot;</planet:http_etag><planet:http_status>200</planet:http_status><planet:encoding>xml</planet:encoding><planet:locale>it_IT.utf8</planet:locale></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://albertorusso.net/31 at http://albertorusso.net</id><link href="http://albertorusso.net/node/31" rel="alternate" type="text/html"/><title xml:lang="it">Una nuova casa per il mio blog.</title><summary type="xhtml" xml:lang="it"><div xmlns="http://www.w3.org/1999/xhtml"><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><div style="font-family: Arial, Verdana, sans-serif; font-size: 13px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255);">
<p><img alt="" src="http://albertorusso.net/sites/default/files/Penguin_4.png" style="cursor: default; width: 85px; height: 64px; float: left; margin-top: 5px; margin-right: 10px; margin-bottom: 5px; margin-left: 10px;"/>Da circa una settimana ho deciso di acquistare un dominio e di spostare qui il mio blog. Dopo aver provato vari CMS e temi, ho deciso di utilizzare <strong>Drupal</strong> per la sua leggerezza e la sua grande quantità di moduli.</p>
<p>Gli argomenti trattati sul blog saranno sempre gli stessi, quindi notizie dalla<strong> comunità italiana di Ubuntu</strong>, recensioni di distribuzioni <strong>GNU/Linux</strong> minori e spero di poter scrivere qualche guida sulla configurazione di server basati su <strong>software libero</strong>.</p>
<p>Spero che il sito vi piaccia e che continuiate a seguirmi come prima.</p>
<p>Benvenuti!</p>
</div>
</div></div></div><div class="field field-name-taxonomy-wp-blog-tags field-type-taxonomy-term-reference field-label-above"><div class="field-label">Blog tags: </div><div class="field-items"><div class="field-item even"><a href="http://albertorusso.net/taxonomy/term/6">blog</a></div><div class="field-item odd"><a href="http://albertorusso.net/taxonomy/term/7">ubuntu</a></div><div class="field-item even"><a href="http://albertorusso.net/taxonomy/term/8">linux</a></div><div class="field-item odd"><a href="http://albertorusso.net/taxonomy/term/11">ubuntu-it</a></div></div></div></div></summary><updated planet:format="21 May 2011 10.09">2011-05-21T10:09:14Z</updated><author><name>Alberto Russo</name></author><source><id>http://albertorusso.net/blog</id><link href="http://albertorusso.net/blog" rel="alternate" type="text/html"/><link href="http://albertorusso.net/blog/rss" rel="self" type="application/rss+xml"/><title xml:lang="it">Alberto Russo - Linux &amp; Software Libero</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:45Z</updated><planet:bozo>false</planet:bozo><planet:faceheight>100</planet:faceheight><planet:format>rss20</planet:format><planet:facewidth>100</planet:facewidth><planet:face>valix.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alberto Russo (valix)</planet:name><planet:css-id>alberto-russo-valix</planet:css-id><planet:http_last_modified>Tue, 06 Mar 2012 15:32:42 +0000</planet:http_last_modified><planet:days_per_page>0</planet:days_per_page><planet:http_etag>&quot;1331047962&quot;</planet:http_etag><planet:http_status>200</planet:http_status><planet:encoding>xml</planet:encoding><planet:locale>it_IT.utf8</planet:locale></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/2011/full-circle/full-circle-magazine-53/</id><link href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-53/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=full-circle-magazine-53" rel="alternate" type="text/html"/><title>Full Circle Magazine n. 53</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Abbiamo pubblicato il numero 53 della rivista Full Circle nel sito internazionale. Per il download del fate clic sui link riportati in basso. Dal sommario Comanda &amp; Conquista: Messaggio del giorno Programmare in Python – Parte 27 How-to: LibreOffice – … <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-53/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-53/">Full Circle Magazine n. 53</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://www.aldolat.it/linux/full-circle-magazine/ultimo-numero-di-full-circle/"><img alt="" class="aligncenter size-full wp-image-2670 colorbox-2667" height="382" src="http://www.aldolat.it/wp-content/uploads/2011/10/fcm53.jpg" title="fcm53" width="540"/></a></p>
<p>Abbiamo pubblicato il <a href="http://fullcirclemagazine.org/issue-53/" rel="bookmark"><span class="external">numero 53 della rivista Full Circle</span></a> nel sito internazionale. Per il download del <acronym title="Portable Document Format">PDF</acronym> fate clic sui link riportati in basso.</p>
<h3>Dal sommario</h3>
<ul>
<li>Comanda &amp; Conquista: Messaggio del giorno</li>
<li>Programmare in Python – Parte 27</li>
<li>How-to: LibreOffice – Parte 8</li>
<li>How-to: Strategia di backup – Parte 1</li>
<li>How-to: Ubuntu per lavoro e scuola – Parte 2</li>
<li>How-to: GRAMPS – Parte 2</li>
<li>Linux Lab: ZoneMinder TVCC – Parte 2</li>
<li>La mia storia: Ubuntu nella mia classe</li>
<li>Io penso che: Con la nascita delle email basate sul web, abbiamo realmente bisogno di un client email installato di default?</li>
<li>Recensione: Linux Mint 11</li>
<li>Donne Ubuntu: Leadership</li>
<li>Giochi Ubuntu: VVVVVV</li>
</ul>
<h3>Link</h3>
<ul>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue53_it.pdf"><acronym title="Portable Document Format">PDF</acronym> in italiano</a></li>
<li><a class="external" href="http://fcmitalia.altervista.org/fcm/issue53_it.epub" title="eBook in italiano">eBook in italiano</a></li>
<li><a class="external" href="http://fcmitalia.altervista.org/fcm/issue53_it.djvu" title="DjVu in italiano">DjVu in italiano</a></li>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue53_en.pdf"><acronym title="Portable Document Format">PDF</acronym> in inglese</a></li>
</ul>
<p>Buona lettura! ;)</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-53/">Full Circle Magazine n. 53</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="28 October 2011 19.14">2011-10-28T19:14:05Z</updated><category term="Full Circle"/><category term="FCM"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/2011/full-circle/full-circle-magazine-54/</id><link href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-54/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=full-circle-magazine-54" rel="alternate" type="text/html"/><title>Full Circle Magazine n. 54</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Abbiamo pubblicato il numero 54 della rivista Full Circle nel sito internazionale. Per il download del fate clic sui link riportati in basso. Dal sommario Comanda &amp; Conquista: Vim e Gvim Programmare in Python – Parte 28 How-to: Freemind How-to: … <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-54/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-54/">Full Circle Magazine n. 54</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://www.aldolat.it/linux/full-circle-magazine/ultimo-numero-di-full-circle/"><img alt="" class="aligncenter size-full wp-image-2672 colorbox-2671" height="382" src="http://www.aldolat.it/wp-content/uploads/2011/11/fcm54.jpg" title="fcm54" width="540"/></a></p>
<p>Abbiamo pubblicato il <a href="http://fullcirclemagazine.org/issue-54/" rel="bookmark"><span class="external">numero 54 della rivista Full Circle</span></a> nel sito internazionale. Per il download del <acronym title="Portable Document Format">PDF</acronym> fate clic sui link riportati in basso.</p>
<h2>Dal sommario</h2>
<ul>
<li>Comanda &amp; Conquista: Vim e Gvim</li>
<li>Programmare in Python – Parte 28</li>
<li>How-to: Freemind</li>
<li>How-to: Strategia di backup – Parte 2</li>
<li>How-to: Ubuntu per lavoro e scuola – Parte 3</li>
<li>How-to: Apt-Cacher-NG</li>
<li>Linux Lab: ZoneMinder TVCC – Parte 3</li>
<li>Chiudiamo le «Finestre»</li>
<li>La mia storia</li>
<li>Io penso che: Quale età pensi che la media degli utenti Linux possa avere?</li>
<li>Recensione: Synergy</li>
</ul>
<h2>Link</h2>
<ul>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue54_it.pdf"><acronym title="Portable Document Format">PDF</acronym> in italiano</a></li>
<li><a class="external" href="http://fcmitalia.altervista.org/fcm/issue54_it.epub" title="eBook in italiano">eBook in italiano</a></li>
<li><a class="external" href="http://fcmitalia.altervista.org/fcm/issue54_it.djvu" title="DjVu in italiano">DjVu in italiano</a></li>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue54_en.pdf"><acronym title="Portable Document Format">PDF</acronym> in inglese</a></li>
</ul>
<p>Buona lettura! ;)</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-54/">Full Circle Magazine n. 54</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="23 November 2011 15.18">2011-11-23T15:18:07Z</updated><category term="Full Circle"/><category term="FCM"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/2011/full-circle/full-circle-magazine-n-54/</id><link href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-55/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=full-circle-magazine-55" rel="alternate" type="text/html"/><title>Full Circle Magazine n. 55</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Abbiamo pubblicato il numero 55 della rivista Full Circle nel sito internazionale. Per il download del fate clic sui link riportati in basso. Dal sommario Comanda &amp; Conquista – VIM: funzioni avanzate Programmare in Python – Parte 29 How-to: LibreOffice … <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-55/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-55/">Full Circle Magazine n. 55</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://www.aldolat.it/linux/full-circle-magazine/ultimo-numero-di-full-circle/"><img alt="" class="aligncenter size-full wp-image-2678 colorbox-2677" height="382" src="http://www.aldolat.it/wp-content/uploads/2011/12/fcm55.png" title="fcm55" width="540"/></a></p>
<p>Abbiamo pubblicato il <a href="http://fullcirclemagazine.org/issue-55/" rel="bookmark"><span class="external">numero 55 della rivista Full Circle</span></a> nel sito internazionale. Per il download del <acronym title="Portable Document Format">PDF</acronym> fate clic sui link riportati in basso.</p>
<h2>Dal sommario</h2>
<ul>
<li>Comanda &amp; Conquista – VIM: funzioni avanzate</li>
<li>Programmare in Python – Parte 29</li>
<li>How-to: LibreOffice – Parte 9</li>
<li>How-to: Strategia di backup – Parte 3</li>
<li>How-to: Le basi di Audacity</li>
<li>How-to: Un rapido server casalingo</li>
<li>Linux Lab: Il VOIP  a casa</li>
<li>Chiudiamo le «Finestre»</li>
<li>La mia storia: Il gruppo di traduzione italiano</li>
<li>Io penso che: Avete aggiornato l’installazione corrente, o ne avete fatta una nuova?</li>
<li>Recensione: BackTrack vs BackBox</li>
<li>Donne Ubuntu: Gli obiettivi di progetto per Precise</li>
<li>Giochi Ubuntu: Frozen Synapse</li>
</ul>
<h2>Link</h2>
<ul>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue55_it.pdf"><acronym title="Portable Document Format">PDF</acronym> in italiano</a></li>
<li><a href="http://fcmitalia.altervista.org/fcm/issue55_it.epub">eBook in italiano</a></li>
<li><a class="external" href="http://fcmitalia.altervista.org/fcm/issue55_it.djvu" title="DjVu in italiano">DjVu in italiano</a></li>
<li><a class="external" href="http://dl.fullcirclemagazine.org/issue55_en.pdf"><acronym title="Portable Document Format">PDF</acronym> in inglese</a></li>
</ul>
<p>Buona lettura! ;)</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/full-circle/full-circle-magazine-55/">Full Circle Magazine n. 55</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="24 December 2011 07.37">2011-12-24T07:37:32Z</updated><category term="Full Circle"/><category term="FCM"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2663</id><link href="http://www.aldolat.it/2011/asides/germania-libri-scambiano-strada/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=germania-libri-scambiano-strada" rel="alternate" type="text/html"/><title>In Germania i libri si scambiano per strada</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>In Germania, dove Gutenberg nel 1445 inventò il carattere mobile e rivoluzionò la stampa, si stanno diffondendo le “librerie pubbliche”, un’evoluzione del bookcrossing: libere, sempre accessibili, si trovano nelle strade e nelle piazze dei paesi. Si possono prendere i libri … <a href="http://www.aldolat.it/2011/asides/germania-libri-scambiano-strada/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/asides/germania-libri-scambiano-strada/">In Germania i libri si scambiano per strada</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><blockquote><p>In Germania, dove Gutenberg nel 1445 inventò il carattere mobile e rivoluzionò la stampa, si stanno diffondendo le “librerie pubbliche”, un’evoluzione del bookcrossing: libere, sempre accessibili, si trovano nelle strade e nelle piazze dei paesi. Si possono prendere i libri e lasciarne altri in totale autonomia, senza alcuna registrazione e senza scadenze.</p></blockquote>
<p><span class="small-caps">il Post.it</span>, <em>Le librerie in strada in Germania</em>, <a href="http://www.ilpost.it/2011/10/16/le-librerie-in-strada-in-germania/">16 ottobre 2011</a>.</p>
<p>Una società aperta, civile e solidale.</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/asides/germania-libri-scambiano-strada/">In Germania i libri si scambiano per strada</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="18 October 2011 09.36">2011-10-18T09:36:10Z</updated><category term="Asides"/><category term="Comunità"/><category term="Germania"/><category term="Libri"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2679</id><link href="http://www.aldolat.it/2011/asides/i-consigli-di-canonical-per-la-migrazione-a-ubuntu/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-consigli-di-canonical-per-la-migrazione-a-ubuntu" rel="alternate" type="text/html"/><title>I consigli di Canonical per la migrazione a Ubuntu</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Tradotto e impaginato dal Gruppo FCM e revisionato da Canonical, ecco a voi in italiano Le cinque regole d’oro per una migrazione di successo dei computer desktop a Ubuntu. Link diretto al PDF.</p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/asides/i-consigli-di-canonical-per-la-migrazione-a-ubuntu/">I consigli di Canonical per la migrazione a Ubuntu</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p class="side"><img alt="" class="alignleft size-thumbnail wp-image-2681 colorbox-2679" height="70" src="http://www.aldolat.it/wp-content/uploads/2011/12/faccia_viola-150x150.jpg" width="70"/></p>
<p>Tradotto e impaginato dal Gruppo FCM e revisionato da Canonical, ecco a voi in italiano <em>Le cinque regole d’oro per una migrazione di successo dei computer desktop a Ubuntu</em>.</p>
<p class="embedded-doc">C'è un documento incorporato in questo post. <a href="http://www.aldolat.it/2011/asides/i-consigli-di-canonical-per-la-migrazione-a-ubuntu/" title="Fai clic per vedere il documento incorporato">Fai clic qui</a> per visualizzarlo.</p>
<p><a href="http://fcmitalia.altervista.org/fcm/Canonical_GR_ebookA4_1301_1111_it.pdf">Link diretto al PDF.</a></p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2011/asides/i-consigli-di-canonical-per-la-migrazione-a-ubuntu/">I consigli di Canonical per la migrazione a Ubuntu</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="26 December 2011 11.39">2011-12-26T11:39:59Z</updated><category term="Asides"/><category term="Azienda"/><category term="Canonical"/><category term="Migrazione"/><category term="Planet"/><category term="Ubuntu"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2684</id><link href="http://www.aldolat.it/2012/news/migrazione-a-nuovo-hosting-completata/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=migrazione-a-nuovo-hosting-completata" rel="alternate" type="text/html"/><title>Migrazione a nuovo hosting completata</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Dal 10 gennaio 2012 aldolat.it è passato al nuovo hosting su Aziende Italia. Un breve resoconto di quanto fatto. <a href="http://www.aldolat.it/2012/news/migrazione-a-nuovo-hosting-completata/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/news/migrazione-a-nuovo-hosting-completata/">Migrazione a nuovo hosting completata</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Era da qualche anno che intendevo farlo e, alla fine, eccolo completato: <a href="http://www.aldolat.it/2007/news/wwwaldolatit/">dopo 5 anni</a> di ospitalità su Aruba, il mio dominio aldolat.it è ora su Aziende Italia. Il passaggio è avvenuto senza alcun tipo di problema: file e database sono stati ripristinati nella loro nuova posizione.</p>
<p>Ci sono voluti 10 giorni per completarlo nella sua interezza: in questo lasso di tempo, ovviamente, sto includendo il passaggio dal sistema così come funzionava su Aruba al sistema attuale funzionante su Aziende Italia.</p>
<p>La mattina del 4 gennaio 2012, successiva all’ordine e al suo pagamento, Aziende Italia dà inizio alla parte burocratica e quindi a quella tecnica, che si concludono in 6 giorni, fine settimana compreso. Ricevuta l’email di conferma dell’avvenuto trasferimento sul nuovo hosting, ho iniziato la fase di caricamento del backup che avevo fatto durante questo tempo di attesa in più copie e in più giorni: in 4 giorni circa, poi, ho completato il tutto, così come lo avevo immaginato.</p>
<p>È ancora presto per dire come mi sto trovando, ma l’impressione è positiva. Il pannello Plesk di Parallels è tutta un’altra storia rispetto a quello di Aruba: trovi tutto a portata di mano in un’unica interfaccia, pagamenti compresi. Mi è capitato già di contattare l’assistenza aprendo un ticket in cui chiedevo la disabilitazione del <em>safe_mode</em> di <acronym title="PHP: Hypertext Preprocessor">PHP</acronym>: in 6 minuti ricevo la mail in cui venivo accontentato! Non dovrebbe essere una novità la velocità con cui generalmente questa azienda risolve i ticket. A onor del vero, l’esperienza che ho avuto con Aruba dal punto di vista dei ticket non è stata negativa: ricordo con piacere <a href="http://www.aldolat.it/2010/asides/aruba-e-delicious-2/" title="Aruba e Delicious /2">quando</a> si misero a disposizione per capire perché non riuscissi a prelevare il feed di Delicious sul mio blog. Fecero prove per più giorni e alla fine mi stilarono un resoconto della situazione: era proprio Delicious che <a href="http://www.aldolat.it/2010/asides/delicious-e-il-timore-di-caduta/" title="Delicious e il timore di caduta">bloccava</a> determinati nomi di dominio.</p>
<p>Quello che ho qui in più in modo predefinito rispetto al precedente hosting, tenendo conto del prezzo più o meno simile, sono: la gestione dei DNS, i sottodomini, 10 account email <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-1" id="return-note-2684-1" title="Contro i 5 di Aruba."><sup>1</sup></a>, utenti database MySQL separati. Quello che ho in meno sono: 1GB di spazio su disco <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-2" id="return-note-2684-2" title="Contro l’illimitato di Aruba."><sup>2</sup></a>, mancanza di <em>mcrypt</em> <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-3" id="return-note-2684-3" title="Mi serviva per il plugin Perfect Paper Password."><sup>3</sup></a>, limite di memoria di 32MB per <acronym title="PHP: Hypertext Preprocessor">PHP</acronym> <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-4" id="return-note-2684-4" title="Mi serviva in modo particolare per il plugin WP-DB-Backup, che si fermava al momento di comprimere il dump del database, ma ho risolto inserendo la riga define('WP_MEMORY_LIMIT', '64M'); in wp-config.php."><sup>4</sup></a>, limite di caricamento dei file fissato a 12MB <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-5" id="return-note-2684-5" title="Contro i 25MB di Aruba."><sup>5</sup></a>, limite di caricamento di 2MB per un file <em>sql</em> su PHPMyAdmin <a class="simple-footnote" href="http://www.aldolat.it/tag/planet/feed/#note-2684-6" id="return-note-2684-6" title="Contro i 512MB di Aruba!"><sup>6</sup></a>, assenza del server SMTP.</p>
<p>Alcune applicazioni che avevo su Aruba in sotto directory, come ad esempio <em>aldolat.it/bookmarks</em>, ora si trovano in sottodomini dedicati:<br/>
</p><pre>http://www.aldolat.it/wiki/ =&gt; http://wiki.aldolat.it/
http://www.aldolat.it/bookmarks/ =&gt; http://bookmarks.aldolat.it/
http://www.aldolat.it/tweets/ =&gt; http://tweets.aldolat.it/</pre><p/>
<p>Per reindirizzare le visite dal vecchio <acronym title="Uniform Resource Locator">URL</acronym> al nuovo ho inserito in <code>.htaccess</code> tre righe:<br/>
</p><pre>Redirect permanent /wiki/ http://wiki.aldolat.it/wiki/
Redirect permanent /bookmarks/ http://bookmarks.aldolat.it/
Redirect permanent /tweets/ http://tweets.aldolat.it/</pre><p/>
<p>Avendo, poi, a disposizione la gestione dei <acronym title="Domain Name System">DNS</acronym>, ho voluto provare <em>Google Apps</em> su dominio che, <em>adesso</em> senza alcuna difficoltà, funziona ottimamente. Dico “adesso” perché ho avuto <a href="https://plus.google.com/u/0/112660104243279758046/posts/exKibWe1TBj">la sorpresa</a> di vederlo “prenotato” da qualcun altro: ma ne ho ripreso possesso.</p>
<p>È presto per tirare somme e bilanci, ovviamente, ma come già detto l’impressione è positiva.</p>
<div class="simple-footnotes"><p class="notes">Note</p><ol><li id="note-2684-1">Contro i 5 di Aruba. <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-1"></a></li><li id="note-2684-2">Contro l’illimitato di Aruba. <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-2"></a></li><li id="note-2684-3">Mi serviva per il plugin <a href="http://www.aldolat.it/2011/wordpress/autenticazione-multifattoriale-perfect-paper-passwords/" title="Autenticazione multifattoriale con Perfect Paper Passwords">Perfect Paper Password</a>. <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-3"></a></li><li id="note-2684-4">Mi serviva in modo particolare per il plugin <em>WP-DB-Backup</em>, che si fermava al momento di comprimere il dump del database, ma ho risolto inserendo la riga <code>define('WP_MEMORY_LIMIT', '64M');</code> in <code>wp-config.php</code>. <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-4"></a></li><li id="note-2684-5">Contro i 25MB di Aruba. <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-5"></a></li><li id="note-2684-6">Contro i 512MB di Aruba! <a href="http://www.aldolat.it/tag/planet/feed/#return-note-2684-6"></a></li></ol></div><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/news/migrazione-a-nuovo-hosting-completata/">Migrazione a nuovo hosting completata</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="14 January 2012 11.37">2012-01-14T11:37:33Z</updated><category term="News"/><category term="Aruba"/><category term="Aziende Italia"/><category term="Dominio"/><category term="Migrazione"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2686</id><link href="http://www.aldolat.it/2012/wordpress/jetpack-e-le-statistiche-perse/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=jetpack-e-le-statistiche-perse" rel="alternate" type="text/html"/><title>Jetpack e le statistiche perse</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>In quel di wordpress.com mi hanno segato le statistiche di 5 anni di blog. A voi è successo? <a href="http://www.aldolat.it/2012/wordpress/jetpack-e-le-statistiche-perse/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/wordpress/jetpack-e-le-statistiche-perse/">Jetpack e le statistiche perse</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>A quanto pare non ho più le statistiche di 5 anni di questo blog, statistiche che andavano dal febbraio 2007 fino al 6 gennaio 2012 e che teneva wordpress.com. Me ne sono accorto per caso, non essendo un fanatico di questi dati. Oggi aprendo la pagina delle statistiche (ogni tanto lo faccio), vedo che risalgono al massimo al 7 gennaio scorso. Non so cosa sia successo e non dipende dal passaggio al nuovo hosting.</p>
<p>Cercando in rete, ho trovato <a href="http://wordpress.org/support/topic/jetpack-stats-lost?replies=14">un thread</a> sul forum di wordpress.org dove altri hanno riscontrato questo stesso problema. Uno degli intervenuti <a href="http://wordpress.org/support/topic/jetpack-stats-lost?replies=14#post-2554701">suggerisce</a> di controllare nel database MySQL l’id del blog che viene collegato al proprio account su wordpress.com perché <strong>pare che l’ultimo aggiornamento di Jetpack lo cambi</strong>. Controllo ed effettivamente è successo questo anche a me. Ho aperto infatti i file .sql dei vari backup che faccio giornalmente e infatti fino al 6 gennaio ha un certo blog_id mentre a partire dal 7 ne trovo un altro. Questi backup sono quelli che avevo su Aruba, ecco perché dicevo che il cambio di hosting non c’entra nulla.</p>
<p>Ho provato a modificare l’id del blog a mano, nulla; ho provato a cambiare anche i token associati all’utente e al blog, nulla. Ho provato, infine, a eliminare del tutto Jetpack disinstallandolo ed eliminando i dati, nulla. Ho provato a installare il vecchio WordPress.com Stats, visto che la tabella coi suoi vecchi dati c’è ancora (e conserva il vecchio blog_id) ma la dashboard mi dice: “Your WordPress.com account is not authorized to view the stats of this blog.”. Se provo, infine, ad andare su https://dashboard.wordpress.com/wp-admin/index.php?page=stats&amp;blog=xxxyyy (dove “xxxyyy” è il blog_id) non ho i permessi per visualizzare la pagina.</p>
<p>Ho contattato l’assistenza di wordpress.com, ma non so perché qualcosa mi dice che sarà invano. Speriamo di no.</p>
<p>A voi è successo?</p>
<p><strong>Aggiornamento:</strong> problema risolto <a href="http://www.aldolat.it/2012/asides/jetpack-problema-risolto/" title="Jetpack, problema risolto">qui</a>.</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/wordpress/jetpack-e-le-statistiche-perse/">Jetpack e le statistiche perse</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="15 January 2012 20.11">2012-01-15T20:11:53Z</updated><category term="WordPress"/><category term="Jetpack"/><category term="Planet"/><category term="Statistiche"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2699</id><link href="http://www.aldolat.it/2012/asides/liberta-e-comunita/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=liberta-e-comunita" rel="alternate" type="text/html"/><title>Libertà e comunità</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>La tua sacrosanta libertà di manifestare il tuo legittimo pensiero non può collidere con la libertà della restante parte della comunità.</p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/asides/liberta-e-comunita/">Libertà e comunità</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>La tua sacrosanta libertà di manifestare il tuo legittimo pensiero non può collidere con la libertà della restante parte della comunità.</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/asides/liberta-e-comunita/">Libertà e comunità</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="20 January 2012 22.53">2012-01-20T22:53:34Z</updated><category term="Asides"/><category term="Comunità"/><category term="Libertà"/><category term="Planet"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2736</id><link href="http://www.aldolat.it/2012/asides/antropologia-televisiva/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=antropologia-televisiva" rel="alternate" type="text/html"/><title>Antropologia televisiva</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Ne parlavo proprio ieri in casa: la BBC ha una produzione di programmi scientifici e culturali di indubbia qualità. E oggi Amedeo si chiede se “gli spettatori inglesi sono antropologicamente superiori a quelli italiani”.</p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/asides/antropologia-televisiva/">Antropologia televisiva</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Ne parlavo proprio ieri in casa: la BBC ha una produzione di programmi scientifici e culturali di indubbia qualità. E oggi Amedeo <a href="http://www.keplero.org/2012/01/confronti-impietosi.html">si chiede</a> se “gli spettatori inglesi sono antropologicamente superiori a quelli italiani”.</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/asides/antropologia-televisiva/">Antropologia televisiva</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="21 January 2012 11.05">2012-01-21T11:05:31Z</updated><category term="Asides"/><category term="Planet"/><category term="Scienza"/><category term="Televisione"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="it-it" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.aldolat.it/?p=2738</id><link href="http://www.aldolat.it/2012/full-circle/speciale-fcm-su-python-volume-3/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=speciale-fcm-su-python-volume-3" rel="alternate" type="text/html"/><title>Speciale FCM su Python volume 3</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Ecco a voi la terza serie di articoli su Python, così come sono stati pubblicati a suo tempo, ma in un unico, comodo file. La pagina da dove sfogliare la raccolta è questa. Il link per scaricare il PDF lo trovate in fondo … <a href="http://www.aldolat.it/2012/full-circle/speciale-fcm-su-python-volume-3/">Continua a leggere <span class="meta-nav"></span></a></p><p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/full-circle/speciale-fcm-su-python-volume-3/">Speciale FCM su Python volume 3</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://www.aldolat.it/linux/full-circle-magazine/gli-speciali-di-fcm/fcm-speciale-python-3/"><img alt="" class="aligncenter size-large wp-image-2742 colorbox-2738" height="381" src="http://www.aldolat.it/wp-content/uploads/2012/01/python03-540x381.png" title="python03" width="540"/></a></p>
<p>Ecco a voi la terza serie di articoli su Python, così come sono stati pubblicati a suo tempo, ma in un unico, comodo file.</p>
<p>La pagina da dove sfogliare la raccolta è <a href="http://www.aldolat.it/linux/full-circle-magazine/gli-speciali-di-fcm/fcm-speciale-python-3/">questa</a>. Il link per scaricare il <acronym title="Portable Document Format">PDF</acronym> lo trovate in fondo a quella pagina.</p>
<p>Se vi siete persi le precedenti serie, le pagine sono <a href="http://www.aldolat.it/linux/full-circle-magazine/gli-speciali-di-fcm/fcm-speciale-python-1/">questa</a> e <a href="http://www.aldolat.it/linux/full-circle-magazine/gli-speciali-di-fcm/fcm-speciale-python-2/" title="FCM Speciale: Python, volume 3">questa</a>.</p>
<p/><p><small>L'articolo <a href="http://www.aldolat.it/2012/full-circle/speciale-fcm-su-python-volume-3/">Speciale FCM su Python volume 3</a> è apparso originariamente su <a href="http://www.aldolat.it">aldolat</a>. Rispettane le <a href="http://www.aldolat.it/info/licenza/">condizioni di licenza</a>.</small></p><p/></div></content><updated planet:format="21 January 2012 18.54">2012-01-21T18:54:22Z</updated><category term="Full Circle"/><category term="FCM"/><category term="Planet"/><category term="Python"/><category term="Speciale"/><author><name>Aldo</name></author><source><id>http://www.aldolat.it</id><link href="http://www.aldolat.it/tag/planet/feed/" rel="self" type="application/rss+xml"/><link href="http://www.aldolat.it" rel="alternate" type="text/html"/><subtitle>Il blocco note personale di Aldo</subtitle><title>aldolat » Planet</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:33Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;20007c997d382e168a234ddeb4b58785&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>85</planet:facewidth><planet:css-id>aldo-latino-aldolat</planet:css-id><planet:face>aldolat.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Aldo Latino (aldolat)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1187</id><link href="http://www.alessiotreglia.com/articoli/segnalazioni-per-libmtp/" rel="alternate" type="text/html"/><title>Segnalazioni per libmtp</title><summary>Ho aperto un thread sul forum di Ubuntu-it dove potrete segnalare malfunzionamenti e richiedere il supporto per nuovi device. Segue un avviso: NON effettuate il downgrade della libreria alla versione presente in Karmic o precedenti, potreste rendere inutilizzabili Rhythmbox e compagnia bella.</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Ho aperto un <a href="http://forum.ubuntu-it.org/index.php/topic,427382.0.html" title="Lettori portatili MTP - Segnalazione e risoluzione dei problemi">thread sul forum di Ubuntu-it</a> dove potrete segnalare malfunzionamenti e richiedere il supporto per nuovi device.</p>
<p>Segue un avviso:</p>
<p><span style="text-decoration: underline;"><strong>NON</strong> effettuate il downgrade della libreria alla versione presente in Karmic o precedenti, potreste rendere inutilizzabili Rhythmbox e compagnia bella.</span></p></div></content><updated planet:format="30 November 2010 08.15">2010-11-30T08:15:27Z</updated><category term="Ubuntu"/><category term="forum"/><category term="Libmtp"/><category term="Planet Ubuntu-it"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1196</id><link href="http://www.alessiotreglia.com/articoli/tablet-o-non-tablet-tablet-o-non-tablet-tablet-o/" rel="alternate" type="text/html"/><title>Tablet o non tablet, tablet o non tablet, tablet o….</title><summary>(Continua…)</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://u1.ipernity.com/18/90/03/10169003.88c5ea95.jpg" rel="lightbox[1196]"><br/>
<img alt="" class="aligncenter" height="384" src="http://u1.ipernity.com/18/90/03/10169003.88c5ea95.jpg" title="Ta-da!" width="512"/></a></p>
<p><em>(Continua…)</em></p></div></content><updated planet:format="10 March 2011 10.24">2011-03-10T10:24:37Z</updated><category term="Real life"/><category term="Planet Ubuntu-it"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1203</id><link href="http://www.alessiotreglia.com/articoli/ubuntu-unity-e-la-coerenza/" rel="alternate" type="text/html"/><title>Ubuntu, Unity e la coerenza</title><summary>Io credo che non ci si possa lamentare della mancanza di vere e proprie scelte “comunitarie”, sono diversi anni che MOTU e Core-dev non affiliati a Canonical le forniscono forza lavoro a costo zero, rispondendo ai requisiti, orientando lo sviluppo verso precise direzioni e caricandosi sulle spalle le conseguenze di scelte se non imposte, quasi [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Io credo che non ci si possa lamentare della mancanza di vere e proprie scelte “comunitarie”, sono diversi anni che MOTU e Core-dev non affiliati a Canonical le forniscono forza lavoro a costo zero, rispondendo ai requisiti, orientando lo sviluppo verso precise direzioni e caricandosi sulle spalle le conseguenze di scelte se non imposte, quasi mai ampiamente discusse e condivise: questo é Ubuntu, bellezza! Conosciamo certi meccanismi da troppo tempo ormai per stupirci di fronte alle relazioni spesso difficili tra il <em>main sponsor</em> di Ubuntu e GNOME, per esempio, o al rapporto mai idilliaco con mamma Debian (a proposito, Debian ha lanciato il progetto DEX, per maggiori informazioni leggere <a href="http://www.debian.org/News/2011/20110318" title="Avviato il progetto Debian Derivatives Exchange">qui</a>).</p>
<p>Insomma, le regole del gioco sono chiare (perlomeno lo stanno diventando sempre più), la Comunità, gli sviluppatori volontari, Canonical e i suoi dipendenti hanno ruoli sempre più distanti gli uni dagli altri: da qualunque parte tu stia, o stai al gioco o lasci.</p>
<p>Io sono consapevole di questo e non mi lamento, mi limito a riflettere e a muovere le giuste critiche solo quando le situazioni appaiono così contradditorie da lasciare un alone di imbarazzo, <a href="https://lists.ubuntu.com/archives/ubuntu-devel-discuss/2011-March/012506.html" title="Unity, consistency and password-protected web pages">come in questo caso</a> (qui il <a href="https://bugs.launchpad.net/ubuntu/+source/unity/+bug/729009" target="_blank" title="LP: #729009 - &quot;Find Internet Apps&quot;, &quot;Browse the Web&quot;, and &quot;Check Mail&quot; are scattered in default Dash">bug su Launchpad</a> e la <a href="https://lists.ubuntu.com/archives/ubuntu-devel-discuss/2011-March/012508.html" title="Re: Unity, consistency and password-protected web pages">risposta di BDFL</a>).</p>
<p>Per quanto mi riguarda, mi chiedo seriamente se valga ancora la pena continuare su questa strada.</p></div></content><updated planet:format="01 April 2011 06.00">2011-04-01T06:00:50Z</updated><category term="Ubuntu"/><category term="Planet Ubuntu-it"/><category term="Unity"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1216</id><link href="http://www.alessiotreglia.com/articoli/guarda-lontano/" rel="alternate" type="text/html"/><title>Guarda lontano</title><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://u1.ipernity.com/18/63/25/10436325.c6f4f7d4.png" rel="lightbox[1216]"><img alt="" class="aligncenter" height="213" src="http://u1.ipernity.com/18/63/25/10436325.c6f4f7d4.png" width="213"/></a></p></div></content><updated planet:format="22 April 2011 08.00">2011-04-22T08:00:07Z</updated><category term="Ubuntu"/><category term="guardalontano"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1220</id><link href="http://www.alessiotreglia.com/articoli/procedura-di-rooting-per-toshiba-folio-100/" rel="alternate" type="text/html"/><link href="http://people.ubuntu.com/~quadrispro/folio100-rooting-toolchain.tar.gz" rel="enclosure" title="Un pensiero da parte di quadrispro"/><title>Procedura di rooting per Toshiba Folio 100</title><summary>Aggiornamenti: 2011-05-12: Ho aggiornato la guida con le istruzioni necessarie al rooting permanente. Inoltre, ho messo a disposizione un archivio compresso contenente tutto il necessario. Dopo aver effettuato l’aggiornamento all’ultima versione del software Toshiba vi sarà capitato di notare che il buon vecchio SuperOneClick non é più una soluzione valida per ottenere i privilegi di [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Aggiornamenti</strong>:</p>
<ul>
<li><span style="text-decoration: underline;">2011-05-12: Ho aggiornato la guida con le istruzioni necessarie al rooting permanente. Inoltre, ho messo a disposizione un archivio compresso contenente tutto il necessario.</span></li>
</ul>
<p>Dopo aver effettuato l’aggiornamento all’ultima versione del software Toshiba vi sarà capitato di notare che il buon vecchio <a href="http://shortfuse.org/?page_id=2">SuperOneClick</a> non é più una soluzione valida per ottenere i privilegi di root.</p>
<p>Sul forum di <a href="http://forum.xda-developers.com/" target="_blank" title="xdadevelopers, la risorsa definitiva">xda-developers</a> é prontamente comparso un <a href="http://forum.xda-developers.com/showthread.php?t=1009224" target="_blank" title="How to Install foliomod after last toshiba flash upgrade">thread</a> che guida l’utente al ripristino di un’immagine precedente all’aggiornamento upstream al fine di aggirare il problema. Ma io, da buon malfidato, ho preferito lasciar andare e cercare una soluzione per conto mio.</p>
<p>Beh, eccola qui, semplice e efficace.</p>
<p>Si comincia installando l’Android SDK e configurando correttamente ADB per il corretto riconoscimento del <a href="http://www.toshiba-multimedia.com/it/media-tablet/folio100/" target="_blank" title="Pagina del produttore">Toshiba Folio 100</a> (una buona procedura testata su Ubuntu <a href="http://neni2222.wordpress.com/2011/03/30/howtoconfiguriamo-adb-su-ubuntu/" target="_blank" title="Configuriamo ADB su Ubuntu">si trova qui</a>). Poi si passa a scaricare e scompattare <a href="http://people.ubuntu.com/~quadrispro/folio100-rooting-toolchain.tar.gz" title="Un pensiero da parte di quadrispro">questo file</a>.</p>
<p>Dopo aver smontato ogni SD dal Folio, collegato il device e abilitato la <em>modalità di debug</em>, bisogna spostarsi nella cartella contenente l’SDK, copiare <strong>psneuter</strong> o <strong>rageagainstthecage</strong> e tutte le utility necessarie dell’archivio compresso nella memoria interna, dunque entrare nella ADB shell. In breve:</p>
<pre class="brush: plain; title: ; notranslate">cd ~/android-sdk-linux_86/platform-tools
./adb push rageagainstthecage /data/local/tmp
./adb push busybox /data/local/tmp/
./adb push su /data/local/tmp/
./adb push Superuser.apk /data/local/tmp/
./adb shell
</pre>
<p>Ora siamo nel device, lasciamo compiere all’exploit il suo dovere:</p>
<pre class="brush: plain; title: ; notranslate">$ cd /data/local/tmp
$ chmod 4755 rageagainstthecage
$ ./rageagainstthecage
</pre>
<p>Riavviamo adb, montiamo il filesystem in modalità di scrittura e entriamo nuovamente nella shell:</p>
<pre class="brush: plain; title: ; notranslate">./adb kill-server
./adb start-server
./adb remount
./adb shell
</pre>
<p>Infine, non resta che installare a manina tutti i <em>tool</em> che ci permetteranno di ottenere nuovamente i <em>privilegi di root</em> dopo il riavvio del device (la presenza del carattere cancelletto ‘#’ indica i nuovi privilegi ottenuti):</p>
<pre class="brush: plain; title: ; notranslate"># cd /data/local/tmp
# ./busybox cp busybox /system/bin
# chmod 4755 /system/bin/busybox
# busybox cp Superuser.apk /system/app
# busybox cp su /system/bin
# chmod 4755 /system/bin/su
</pre>
<p>Se tutto é andato a buon fine, <span style="text-decoration: underline;">root</span> é abilitato e funzionante.<br/>
Altrimenti, ripetere la procedura con <strong>psneuter</strong>.</p>
<h5>Riferimenti</h5>
<ul>
<li><a href="http://neni2222.wordpress.com/2011/03/31/installare-foliomod-dopo-aggiornamento-sw-toshiba/" target="_blank" title="Installare FolioMod dopo aggiornamento sw Toshiba di Febbraio 2011">Articolo originale</a></li>
<li><a href="http://forum.xda-developers.com/showthread.php?t=792016" target="_blank" title="[HOW-TO] Root FRGxx builds without unlocking bootloader">Altra guida presente su XDA-developers</a></li>
</ul></div></content><updated planet:format="12 May 2011 10.01">2011-05-12T10:01:33Z</updated><category term="Appunti"/><category term="Android"/><category term="Toshiba Folio 100"/><category term="Ubuntu"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1229</id><link href="http://www.alessiotreglia.com/articoli/ubuntustudio-abbandona-gnome-e-abbraccia-xfce/" rel="alternate" type="text/html"/><title>UbuntuStudio abbandona GNOME e abbraccia XFCE</title><summary>Il titolo é abbastanza self-explanatory, qui l’annuncio: After various discussions, investigation and tinkering the Ubuntu Studio team have decided to re-base the project on XFCE. The team simple feel that Unity and GNOME-Shell do not fit our target audience or intended workflow. Shell non mi fa impazzire, Unity letteralmente cagare e, beh, se dai futuri [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Il titolo é abbastanza <em>self-explanatory</em>, <a href="https://lists.ubuntu.com/archives/ubuntu-studio-devel/2011-May/003200.html">qui l’annuncio</a>:</p>
<blockquote><p>After various discussions, investigation and tinkering the Ubuntu<br/>
Studio team have decided to re-base the project on XFCE. The team<br/>
simple feel that Unity and GNOME-Shell do not fit our target audience<br/>
or intended workflow.</p></blockquote>
<p>Shell non mi fa impazzire, Unity letteralmente cagare e, beh, se dai futuri <em>setup</em> verranno escluse tutte le possibili soluzioni che prevedono un minimo di supporto al vecchio stile grafico, aspettiamoci molti altri annunci simili.</p></div></content><updated planet:format="13 May 2011 17.20">2011-05-13T17:20:17Z</updated><category term="Ubuntu"/><category term="gnome"/><category term="Notizie"/><category term="Planet Ubuntu-it"/><category term="UbuntuStudio"/><category term="Unity"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1235</id><link href="http://www.alessiotreglia.com/articoli/refero-refers/" rel="alternate" type="text/html"/><title>Refero, refers</title><summary>Benché io mi trovi spesso in prima linea nel criticare la mentalità e i costumi delle persone con le quali convivo all’interno degli stessi confini, nonostante io non mi lasci mai sfuggire l’occasione di far notare ai miei interlocutori la voglia matta di muovermi verso altri posti, io amo il mio paese. So bene che [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Benché io mi trovi spesso in prima linea nel criticare la mentalità e i costumi delle persone con le quali convivo all’interno degli stessi confini, nonostante io non mi lasci mai sfuggire l’occasione di far notare ai miei interlocutori la voglia matta di muovermi verso altri posti, io amo il mio paese.</p>
<p>So bene che può suonare strano alle orecchie di mi conosce e frequenta, eppure da sempre sono convinto che gli Italiani, con tutti i loro vizi e difetti, siano decisamente migliori di coloro che li governano (<em>cit</em>). Basta assistere allo spettacolo quotidiano del nostro popolo in movimento per capire che se qui c’è qualcosa che funziona, questa é l’Italia. Quella vera, trascinata dalle persone e dalle loro idee. Quella fatta di lavoro e studio, ricerca e sacrifici. Testa, braccia e cuore. Quella che, nonostante tutto, lavora meglio delle sue istituzioni.</p>
<p>Domani (e lunedì) questa nazione ha un’occasione imperdibile per riappropriarsi definitivamente della <span style="text-decoration: underline;">libertà di scelta</span> che, fino all’ultimo, é stata messa in pericolo dagli spregiudicati tentativi dei <em>governanti</em> di convincere i <em>governati</em> della sua non-necessità.</p>
<p>L’invito a non andare a votare da parte di chi riveste una carica pubblica comporta pesanti ricadute sull’interpretazione del messaggio, che non può e non deve assumere contorni politici. Un chiaro esempio può essere d’aiuto: se un Ministro della Repubblica vi consiglia di andare al mare e un blogger qualsiasi vi invitare a fare di il contrario, ciò non significa che il primo sia <em>verde-nero-di destra</em> e il secondo <em>giallo-rosso-di sinistra</em> (la scelta dei colori e i riferimenti ideologici hanno la stessa importanza dei segnaposti del Monopoli). Molto semplicemente, quest’ultimo conosce e rispetta i valori costituzionali, mentre l’altro, con buone probabilità, é solo un povero malato.</p>
<p>Perciò, visto che richiamare i propri connazionali ai doveri nei confronti del proprio paese non é nè un messaggio elettorale nè uno spot politico, mi prendo questa libertà: <strong>andate a votare!</strong></p>
<p><strong><br/>
</strong></p></div></content><updated planet:format="10 June 2011 09.09">2011-06-10T09:09:34Z</updated><category term="Real life"/><category term="Referendum"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1246</id><link href="http://www.alessiotreglia.com/articoli/toshiba-folio100-ecco-android-honeycomb/" rel="alternate" type="text/html"/><link href="http://people.ubuntu.com/~quadrispro/folio100-rooting-toolchain.tar.gz" rel="enclosure" title="fastboot"/><link href="http://dext3r.komodin.org/folio-100/Folio3xv03a.zip" rel="enclosure" title="Folio3x di DexterPicard"/><title>Toshiba Folio100, ecco Android Honeycomb</title><summary>Android 3.0 Honeycomb, ovvero ciò che Toshiba non vi darà mai per il vostro Folio100: La mod in questione è basata su VegaComb ed è frutto del lavoro di DexterPicard, ormai migrato da XDA a Tabletroms. Prima di illustrare la procedura di installazione, tenete bene a mente ciò che segue: tutte le applicazioni e le configurazioni [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Android 3.0 Honeycomb, ovvero ciò che Toshiba non vi darà mai per il vostro Folio100:</p>
<p><a href="http://u1.ipernity.com/21/72/71/12047271.17530198.jpg" rel="lightbox[1246]"><img alt="" class="aligncenter" height="450" src="http://u1.ipernity.com/21/72/71/12047271.17530198.jpg" title="Android 3.0.1 Honeycomb" width="600"/></a></p>
<p>La mod in questione è basata su <a href="http://tabletroms.com/forums/showthread.php?453-ROM-VegaComb-BETA-1.5.2-by-TeamNewCo-and-TeamVillain!" target="_blank" title="Thread originale su tabletroms.com">VegaComb</a> ed è frutto del lavoro di DexterPicard, ormai migrato da XDA a Tabletroms. Prima di illustrare la procedura di installazione, tenete bene a mente ciò che segue:</p>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">tutte le applicazioni e le configurazioni utente andranno perdute;</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">la <span style="text-decoration: underline;">fotocamera non funziona</span> e non funzionerà almeno finché qualcuno non sarà riuscito a tirar fuori un port del modulo del kernel;</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;"><strong>alcune applicazioni</strong> scaricate dal market <strong>potrebbero</strong> <strong>non funzionare</strong>;</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">il risultato non è garantito, perciò siate consapevoli che già conoscete l’autore di qualsiasi danno che potrebbe riportare il tablet: <em>Voi stessi</em>.</span></li>
</ul>
<div><span class="Apple-style-span" style="line-height: 18px;">OK, partiamo da una breve lista di ciò che vi serve:</span></div>
<div>
<ul>
<li>Il cavo USB-to-mini-USB fornito nella confezione originale</li>
<li><em>Ubuntu</em> o <em>Debian</em>, nel <a href="http://www.alessiotreglia.com/articoli/procedura-di-rooting-per-toshiba-folio-100/" target="_blank">mio precedente articolo</a> trovate le informazioni su come configurare il sistema per l’utilizzo di ADB e simili (è inutile che mi chiediate di aiutarvi a configurare Windows, non rispondo a tali email);</li>
<li><span class="Apple-style-span" style="line-height: normal;"><a href="http://people.ubuntu.com/~quadrispro/folio100-rooting-toolchain.tar.gz" target="_blank">fastboot</a>;</span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><a href="http://forum.xda-developers.com/showthread.php?t=923722" target="_blank">ClockworkMod Recovery per Folio100</a>;</span></li>
<li><span class="Apple-style-span" style="line-height: normal;"><a href="http://dext3r.komodin.org/folio-100/Folio3xv03a.zip" target="_blank">Folio3x di DexterPicard</a>;</span></li>
<li>Una <em>memoria SD</em>, con una quantità di spazio disponibile sufficiente a contenere il file <em>update.zip</em> della <strong>Folio3x</strong>;</li>
<li>Un po’ di sale in zucca.</li>
</ul>
<div><span class="Apple-style-span" style="line-height: 19px;">Siamo pronti, possiamo cominciare!</span></div>
<div>
<ol>
<li><strong>Primo step</strong>: spegnere il tablet e riaccenderlo. Alla comparsa della schermata di boot (quella con il logo di Toshiba, per intenderci), premere <strong>3 volte il tasto di accensione</strong> e <strong>1 volta il tasto VOL+</strong>. Fate attenzione a <strong>non premere più di tre volte</strong> il tasto di accensione, otterreste la morte del tablet, con consequente visita al negozio dove lo avete acquistato.</li>
<li><strong>Secondo step</strong>: siete entrati nella <em>fastboot mode</em>: bravi! Ora aprite un terminale nella cartella di download dei file, scompattate <em>fastboot</em> e il file <em>recovery.img</em> contenuto nell’<em>update.zip </em>della ClockworkMod Recovery. Infine, collegate il tablet al computer via USB e testate il collegamento con il comando:
<pre>./fastboot devices</pre>
<p>Se nella lista dei dispositivi compare il Folio100 come dispositivo sconosciuto, siete a cavallo e potete digitare:</p>
<pre>./fastboot erase userdata
./fastboot erase system
./fastboot erase cache
./fastboot erase linux
./fastboot erase recovery
./fastboot flash recovery recovery.img
./fastboot reboot</pre>
<p>Avete appena piallato (quasi) tutte le partizioni nella memoria interna e installato ClockworkMod come nuovo sistema di ripristino. Il tablet si riavvierà, alla comparsa del logo Toshiba premete <strong>contemporaneamente il tasto di accensione e VOL+</strong>, quindi in sequenza <strong>VOL+</strong>, <strong>VOL-</strong>, <strong>VOL+</strong>. Vi troverete nel menù di ripristino, ora non rimane che preparare la scheda di memoria.</p></li>
<li><strong>Terzo step</strong>: scompattate il file <em>update.zip</em> contenuto nell’archivio della <strong>Folio3x</strong> e salvatelo nella directory principale della memoria SD esterna e inseritela nel tablet. Dal menù di ripristino, selezionate «<strong>Apply sdcard:update.zip</strong>».</li>
</ol>
<div><span class="Apple-style-span" style="line-height: 19px;">Il tablet si riavvierà, non resta che incrociare le dita e attendere pazientemente. Fatemi sapere cosa ne pensate!</span></div>
</div>
<h4>Link:</h4>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;"><a href="http://tabletroms.com/forums/folio-rom-development/963-folio3x-honeycomb-3-0-1-folio100-vegacomb-based.html" target="_blank" title="Folio3x(HoneyComb 3.0.1) for Folio100 - VegaComb based">Thread ufficiale su tabletroms.com</a></span></li>
</ul>
</div></div></content><updated planet:format="18 October 2011 11.51">2011-10-18T11:51:57Z</updated><category term="Sviluppo"/><category term="Android"/><category term="Honeycomb"/><category term="Toshiba Folio 100"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1262</id><link href="http://www.alessiotreglia.com/articoli/roba-da-leader/" rel="alternate" type="text/html"/><title>Roba da leader</title><summary>Qualsiasi didascalia sarebbe superflua. Ogni commento fuori luogo.</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://u1.ipernity.com/20/71/51/11837151.46e7c2b4.jpg" rel="lightbox[1262]"><img alt="" class="aligncenter" height="420" src="http://u1.ipernity.com/20/71/51/11837151.46e7c2b4.jpg" title="Roba da leader" width="560"/></a></p>
<p>Qualsiasi didascalia sarebbe superflua. Ogni commento fuori luogo.</p></div></content><updated planet:format="27 November 2011 21.15">2011-11-27T21:15:39Z</updated><category term="Trash"/><category term="Planet Ubuntu-it"/><category term="Ubuntu Developer Summit"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://www.alessiotreglia.com/?p=1267</id><link href="http://www.alessiotreglia.com/articoli/a-proposito-di-gpgkeyonusbdrive/" rel="alternate" type="text/html"/><title>A proposito di GPGKeyOnUsbDrive</title><summary>Già da tempo utilizzavo il metodo descritto nella guida GPGKeyOnUsbDrive (qui la guida originale in lingua inglese) e pubblico qui di seguito le versioni migliorate (o, meglio, adattate alle mie esigenze) dei due script mount.sh e umount.sh proposti. Il primo crea automaticamente i link alle proprie cartelle .gnupg e .ssh, dopo averne creato delle copie di [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Già da tempo utilizzavo il metodo descritto nella guida <a href="http://wiki.ubuntu-it.org/Sicurezza/GPGKeyOnUsbDrive" target="_blank" title="Sicurezza/GPGKeyOnUsbDrive">GPGKeyOnUsbDrive</a> (<a href="https://help.ubuntu.com/community/GPGKeyOnUSBDrive" target="_blank" title="GPGKeyOnUSBDrive">qui la guida originale</a> in lingua inglese) e pubblico qui di seguito le versioni migliorate (o, meglio, adattate alle mie esigenze) dei due script <em>mount.sh</em> e <em>umount.sh</em> proposti.</p>
<p>Il primo crea automaticamente i link alle proprie cartelle <em>.gnupg</em> e <em>.ssh</em>, dopo averne creato delle copie di backup, e l’altro ripristina lo stato originale. A voi il codice!</p>
<p><em>mount.sh</em></p>
<pre class="brush: bash; title: ; notranslate">#!/bin/bash
dir=`dirname $0`
loopdev=$(sudo losetup -f)
sudo -p &quot;Password (sudo): &quot; modprobe cryptoloop &amp;&amp; \
sudo modprobe dm-crypt &amp;&amp; \
sudo modprobe aes_generic &amp;&amp; \
sudo mkdir -p /media/encrypted &amp;&amp; \
sudo losetup $loopdev $dir/disk.img &amp;&amp; \
sudo cryptsetup -c aes -s 256 -h sha256 create usbkey $loopdev &amp;&amp; \
sudo mount -t ext3 /dev/mapper/usbkey /media/encrypted &amp;&amp; \
sudo chown -R $UID.$UID /media/encrypted/
ask_yesno () {
REPLY=
while [ &quot;$REPLY&quot; != &quot;y&quot; ] &amp;&amp; [ &quot;$REPLY&quot; != &quot;n&quot; ] ; do
echo -n &quot;$1 &quot;
read -N 1
echo
done
if [ &quot;$REPLY&quot; = &quot;y&quot; ]; then
return 0
fi
return 1
}
backup_olddir () {
directory=&quot;$1&quot;
mv &quot;$HOME&quot;/.&quot;$directory&quot; &quot;$HOME&quot;/.&quot;$directory&quot;.BACKUP
}
create_link () {
directory=&quot;$1&quot;
ln -s /media/encrypted/.&quot;$directory&quot; &quot;$HOME&quot;/.&quot;$directory&quot;
}
link_directory () {
directory=&quot;$1&quot;
if [ -d &quot;$HOME&quot;/.&quot;$directory&quot; ]; then
echo &quot;Moving ~/.$directory to ~/.$directory.BACKUP... &quot;
if [ -d &quot;$HOME&quot;/.&quot;$directory.BACKUP&quot; ]; then
if ask_yesno &quot;The directory $HOME/.$directory.BACKUP already exists, overwrite? [y/n]&quot;
then
rm -rf &quot;$HOME&quot;/.&quot;$directory&quot;.BACKUP
backup_olddir &quot;$directory&quot;
create_link &quot;$directory&quot;
else
return 1
fi
else
backup_olddir &quot;$directory&quot;
create_link &quot;$directory&quot;
fi
else
create_link &quot;$directory&quot;
fi
}
for dir in gnupg ssh
do
ask_yesno &quot;Do you want to link your private $dir keys? [y/n]&quot; &amp;&amp; link_directory $dir
done
</pre>
<p><em>umount.sh</em></p>
<pre class="brush: bash; title: ; notranslate">#!/bin/bash
loopdev=$(sudo cryptsetup status usbkey | grep device | sed -e &quot;s/ *device:[ \t]*//&quot;)
sync
sudo umount /media/encrypted
sudo cryptsetup remove usbkey
sudo losetup -d $loopdev
restore_olddir () {
directory=&quot;$1&quot;
mv &quot;$HOME&quot;/.&quot;$directory&quot;.BACKUP &quot;$HOME&quot;/.&quot;$directory&quot;
}
for directory in gnupg ssh
do
if [ -L &quot;$HOME&quot;/.&quot;$directory&quot; ] &amp;&amp; \
[ &quot;`readlink ${HOME}/.${directory}`&quot; = &quot;/media/encrypted/.${directory}&quot; ]
then
echo &quot;Restoring ~/.${directory}&quot;
rm &quot;$HOME&quot;/.&quot;$directory&quot;
restore_olddir &quot;$directory&quot;
fi
done
</pre>
<p> </p>
<p><strong>AGGIORNAMENTO (30/01/2012)</strong>: Corretto un errore nello script <em>mount.sh</em>.</p></div></content><updated planet:format="14 January 2012 19.53">2012-01-14T19:53:37Z</updated><category term="Appunti"/><category term="Bash"/><category term="Guide e howto"/><category term="Planet Ubuntu-it"/><category term="Programmazione e sviluppo"/><category term="Shell Scripting"/><author><name>quadrispro</name></author><source><id>http://www.alessiotreglia.com</id><link href="http://www.alessiotreglia.com/feed/" rel="self" type="application/rss+xml"/><link href="http://www.alessiotreglia.com" rel="alternate" type="text/html"/><subtitle>everybody lies</subtitle><title>Alessio Treglia</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:30Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;2aaf9a11c22f8908a469398055f2b72f&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sun, 29 Jan 2012 23:54:07 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>alessio-treglia-quadrispro</planet:css-id><planet:face>quadrispro.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Alessio Treglia (quadrispro)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" ?><entry xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>http://blog.andreacolangelo.com/?p=58</id><link href="http://blog.andreacolangelo.com/2011/01/30/ubuntufermo-una-settimana-dopo/" rel="alternate" type="text/html"/><title>ubuntu@fermo, una settimana dopo.</title><summary>Ok, mettiamola così: ubuntu@fermo è andata decisamente bene, nonostante le minacce di nevicate abbondanti, i consueti rischi sull’assenza del proiettore, i virus che hanno tentato (senza successo) di impedire ai relatori di raggiungere Fermo e svariati altri piccoli imprevisti che abbiamo dribblato con l’agilità del miglior Pelè dei tempi d’oro. Doverosi e quantomai meritati i [...]</summary><content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p style="text-align: left;">Ok, mettiamola così: <a href="http://wiki.ubuntu-it.org/UbuntuAtFermo" target="_blank" title="Wiki di ubuntu-it - Ubuntu@Fermo">ubuntu@fermo</a> è andata <strong>decisamente bene</strong>, nonostante le minacce di nevicate abbondanti, i consueti rischi sull’assenza del proiettore, i virus che hanno tentato (senza successo) di impedire ai relatori di raggiungere Fermo e svariati altri piccoli imprevisti che abbiamo dribblato con l’agilità del miglior Pelè dei tempi d’oro.</p>
<p><img alt="Ubuntu@Fermo" class="size-medium wp-image-74 aligncenter" height="225" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/Ubuntu@Fermo_500-300x225.jpg" title="Ubuntu@Fermo" width="300"/></p>
<p style="text-align: left;">Doverosi e quantomai meritati i <strong>ringraziamenti</strong> per il <a href="http://www.linuxfm.org" target="_blank" title="FermoLUG">FermoLUG</a>, per la <a href="http://www.ubuntu-it.org/" target="_blank" title="Ubuntu-it">comunità di ubuntu-it</a>, per i relatori che sono arrivati da ogni dove, per le istituzioni che ci hanno concessi gli spazi per la conferenza, per il folto pubblico che si è unito a noi sabato. Un <strong>grazie</strong> enorme ad ognuno di voi. Il successo di questo evento è tutto merito vostro.<a href="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/IMG_2220.jpg"><img alt="Ubuntu@Fermo" class="size-large wp-image-77 aligncenter" height="390" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/IMG_2220-1024x682.jpg" title="Ubuntu@Fermo" width="586"/></a></p>
<p>Visto che ci sono stati già dei <a href="http://xdatap1.wordpress.com/2011/01/24/ubuntufermo/" target="_blank" title="Paolo Sammicheli’s Blog - Ubuntu@Fermo">resoconti</a> <a href="http://jereta.wordpress.com/2011/01/27/fermos-not-cuneo" target="_blank" title="Jeremie - FERMO’s not CUNEO">dettagliati</a> sulla questione, posso concedermi il lusso di parlare di qualche piccolo <strong>retroscena</strong>. D’altra parte, sono queste le cose che vogliono sapere tutti, no?</p>
<h2>Logistica</h2>
<p>Cominciamo subito dal punto più delicato e che ha tenuto in ansia l’intera comunità per giorni: <a href="http://dolasilla.tumblr.com/" target="_blank" title="Lucciole e lanterne">Silvia</a> ce l’ha fatta ad arrivare a Fermo, senza sbagliare <strong>stazione</strong>. Ok, ha ricevuto un piccolo aiutino nell’arrivare fin qui, ma siamo tutti orgogliosi dei progressi che sta facendo da Perugia. Brava!</p>
<h2>Vettovagliamenti</h2>
<p>Se volete organizzare un meeting nella vostra città, ricordatevi che le attività intellettuali richiedono un’alimentazione sana. Inoltre, noi di ubuntu-it mangiamo. E anche <strong>parecchio</strong>.</p>
<p><img alt="Ubuntu@Fermo" class="size-full wp-image-82 aligncenter" height="375" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/DSCN5406_500.jpg" title="Ubuntu@Fermo" width="500"/></p>
<p>La comunità si è particolarmente contraddistinta nell’apprezzamento di certi <strong>aperitivi</strong> in un certo bar in Piazza del Popolo, come confermano le <a href="http://u1.ipernity.com/17/58/48/9915848.3926daee.1024.jpg" target="_blank" title="Il modesto aperitivo in Piazza del Popolo">testimonianze</a> <a href="http://u1.ipernity.com/17/59/20/9915920.9c0d8185.560.jpg" target="_blank" title="Il modesto aperitivo in Piazza del Popolo">fotografiche</a>. Qualche giorno fa sono tornato nello stesso bar in compagnia di un’amica e il volto del barman si è rapidamente adombrato quando si è accorto che non stava entrando la consueta combriccola multietnica e poliglotta del fine settimana scorso. Mi spiace, amico barman, <i>non può essere sempre Pasqua</i> (cit.).</p>
<h2>Documentazione audio-video</h2>
<p>La comunità è ben fornita di appassionati fotografi e la <a href="http://picasaweb.google.com/daniele.colo/Ubuntuatfermo" target="_blank" title="Foto di Daniele Colò">documentazione</a> <a href="http://www.ipernity.com/doc/23318/album/222309" target="_blank" title="Foto di Milo Casagrande">fotografica</a> è <a href="http://www.ipernity.com/doc/jeremie/album/222491" target="_blank" title="Foto di Jeremie Tamburini">ottima</a> e <a href="http://www.ipernity.com/doc/20353/album/222324" target="_blank" title="Foto di Paolo Sammicheli">abbondante</a>. Ci sarebbe anche un <a href="http://andreacolangelo.com/ubuntuatfermo.mp4.torrent" target="_blank" title="Video di Ubuntu@Fermo">video</a>, opportunamente torrentizzato, ma soprattutto depurato da tutti i commenti maligni che il proprietario di questo blog ha espresso inavvertitamente nelle vicinanze della telecamera. A breve, <strong>filmati</strong> in streaming dei singoli talk saranno inseriti direttamente sul <a href="http://www.fermolug.org" target="_blank" title="FermoLUG">sito del FermoLUG</a>.</p>
<h2>I talk</h2>
<p>Devo dire che la qualità dei talk è stata piuttosto <strong>alta</strong>, riscuotendo un notevole successo tra il pubblico, opportunamente interrogato a fine conferenza e nei giorni successivi.</p>
<p>A scanso di equivoci, se vi sentite vicini alla comunità di <strong>Debian</strong> e notate <a href="http://picasaweb.google.com/daniele.colo/Ubuntuatfermo#5566269493296646610" target="_blank" title="Foto compromettente...">foto che potrebbero urtare la vostra sensibilità</a>, aspettate di guardare il video completo prima di partire con una <strong>distro-flame</strong>. L’apparenza inganna, come sempre.</p>
<p>Ah, se organizzate un meeting ricordatevi di tenere allegri i vostri relatori, farà bene ai loro talk. A volte basta poco, qualche dolcetto su un’alzatina e quel <strong>fanciullino</strong> che è dentro di loro salta subito fuori.</p>
<p><a href="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/DSCN5566_500.jpg"><img alt="Ubuntu@Fermo" class="aligncenter size-full wp-image-84" height="375" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/DSCN5566_500.jpg" title="Ubuntu@Fermo" width="500"/></a></p>
<h2>Location, location, location!</h2>
<p>Ok, il <strong>San Martino</strong> è una figata. L’idea era fare il meeting in un luogo più piccino per dare l’impressione del pienone, ma ce l’hanno soffiato all’ultimo. Però <a href="http://u1.ipernity.com/17/76/14/9907614.b22e00f5.1024.jpg" target="_blank" title="San Martino">il San Martino è una figata</a>, e va bene così.</p>
<p>Quando si organizzano eventi del genere, la location è importante, e le dimensioni contano. Jeremie ne sa qualcosa.</p>
<p><a href="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/Misure-errate_500.jpg"><img alt="Ubuntu@Fermo" class="aligncenter size-full wp-image-83" height="500" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/Misure-errate_500.jpg" title="Ubuntu@Fermo" width="375"/></a></p>
<h2><strong>Varie ed eventuali</strong></h2>
<p>Probabilmente Ubuntu@Fermo farà il <strong>bis</strong> l’anno prossimo, vedremo. Sicuramente in un mese con un minore rischio neve e più godibile un pò da tutti: il proprietario di questo blog non può permettersi di trascorrere un’altra settimana ad aggiornare ogni 10 minuti il sito di ilmeteo.it, che tra l’altro ha preso una <strong>cantonata</strong> clamorosa.</p>
<p><img alt="Ubuntu@Fermo" class="aligncenter size-full wp-image-86" height="334" src="http://blog.andreacolangelo.com/wp-content/uploads/2011/01/doc.9907589_5001.jpg" title="Ubuntu@Fermo" width="500"/></p>
<p>Dimenticavo: bisognerebbe parlare di <strong>Cuneo</strong>, ma ho firmato un NDA. Se siete curiosi e non riuscite a resistere, provate a chiedere a <a href="http://elleuca.blogspot.com/" target="_blank" title="Parzialmente scremato">elleuca</a>.</p>
<p style="text-align: center;"/></div></content><updated planet:format="30 January 2011 12.53">2011-01-30T12:53:02Z</updated><category term="Italian"/><category term="Planet Ubuntu-it"/><category term="Ubuntu"/><category term="fermo"/><category term="fermolug"/><category term="meeting"/><category term="talk"/><category term="ubuntu"/><category term="ubuntu-it"/><category term="ubuntu@fermo"/><author><name>Andrea Colangelo</name></author><source><id>http://blog.andreacolangelo.com</id><link href="http://blog.andreacolangelo.com/category/planet-ubuntu-it/feed/?mrss=off" rel="self" type="application/rss+xml"/><link href="http://blog.andreacolangelo.com" rel="alternate" type="text/html"/><title>Andrea Colangelo » Planet Ubuntu-it</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:53Z</updated><planet:format>rss20</planet:format><planet:http_etag>&quot;3754ef43477c9f03eda5d567540fb9f5&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Thu, 13 Oct 2011 08:15:15 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>100</planet:facewidth><planet:css-id>andrea-colangelo</planet:css-id><planet:face>warp10.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Andrea Colangelo</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-1045596109611593058</id><link href="http://elleuca.blogspot.com/2010/12/vedo-e-rilancio.html" rel="alternate" type="text/html"/><title>Vedo e rilancio</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Conosco persone che si lamentano del fatto che in Ubuntu non è presente alcuna configurazione che permetta, ad esempio, di dire al sistema di montare con permessi 777 le pendrive USB invece del preimpostato 700. Certo, senza patchare e ricompilare udisks.<br/><br/>Ebbene io a queste persone dico che siete vecchie e inutili, che non capite e non apprezzate gli sforzi fatti per venire in aiuto del <i>diversamente utente</i>¹ a vantaggio non solo di questo, ma di tutti.<br/><br/>Nel post precedente avete potuto vedere come sia stata semplificata la gestione degli sfondi della scrivania in GNOME 3, che noi <i>abilmente utenti</i> sappiamo essere la prima e più frequente cosa che si va a cambiare delle impostazioni del sistema (beh, in realtà la prima è controllare lo stato di net.inet.ip.forwarding con sysctl ed eventualmente impostarlo a 1).<br/><br/>Oggi invece vorrei mostrarvi quello che è al momento disponibile² per cambiare la seconda cosa di cui l'utente (diversamente utente o abilmente utente che sia) sente l'esigenza (reale o indotta): <a href="http://people.gnome.org/~lferrett/misc/theme-gnome.png">il tema dell'ambiente grafico</a>.<br/><br/>Che ne pensate?<br/><br/><small>[1] da oggi questa sarà la designazione politically correct dell'utente che non sa come si fanno le cose, al posto del dispregiativo &quot;utonto&quot;</small><br/><small>[2] e che sarà disponibile come predefinito</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-1045596109611593058?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="16 December 2010 10.48">2010-12-16T10:48:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-2074178470400710847</id><link href="http://elleuca.blogspot.com/2011/09/salsicciotti-volanti.html" rel="alternate" type="text/html"/><title>Salsicciotti volanti</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">La notizia di Mac OS 10.7 che aveva lasciato leggibile a tutti gli utenti il file shadow mi ha fatto venire in mente una curiosità che ho notato da poco.<br/><br/>Li puoi guardare da un lato, li puoi guardare dall'altro, li puoi guardare di sguincio, ma da qualunque prospettiva tu li guardi... beh, tranne che da <i>dietro</i> il monitor, lì non vedi molto... non potrai non notare una cosa. Le schermate di accesso di Ubuntu 11.10 (lightdm + unity-greeter) e di GNOME 3.2 (gdm + gnome-shell in modalità login) hanno ricevuto un trattamento massiccio di riduzione all'essenziale<sup>[screenshots needed]</sup>.<br/><br/>Opposti nella filosofia¹ e nei risultati grafici ottenuti, condividono però un punto in comune: presentano una regressione discretamente inquietante rispetto al vecchio, semplice e noioso GDM.<br/><br/>Non è più possibile selezionare al volo la disposizione della tastiera usata mentre si digita la password. To be bug or not to be bug, that is the question.<br/><br/>A che serve sapere o cambiare disposizione al login? Se tutto funziona come deve, praticamente a nulla, ma se le cose cominciano ad andare male, e assumendo come universalmente validi e accettati i corollari 7, 8 e 9 della legge di Murpy, allora ci troveremo nella situazione in cui un utente si trova davanti a una schermata di accesso che si aspetta una disposizione inglese USA standard, con una tastiera fisica avente disposizione francese Dvorak e con la necessità di digitare lettere che per quanto ne sa lui si trovano solo su una tastiera con disposizione tedesca.<br/><br/>Oddio, certo, a onor del vero, invocando il Principio di Shaw, è anche possibile che l'utente medio per il quale Ubuntu e GNOME si stanno confezionando sia quello che come password usa &quot;<tt>12345</tt>&quot;. Ora però, senza voler scendere nei dettagli e discutere se sia meglio &quot;<tt>Tr0ub4dor&amp;3</tt>&quot; oppure &quot;<tt>correct horse battery slape</tt>&quot;, pensiamo al caso in cui la password contenga lettere e/o numeri e un paio di caratteri a scelta tra #, $, % ed &amp;.<br/><br/>Sono i tipici caratteri che si trovano *sempre* da un'altra parte quando si cambia disposizione, pur restando in un alfabeto latino. Potenza delle divisioni culturali, delle leggi universali e delle variabili che non mutano, al contrario delle costanti.<br/><br/>Perciò una raccomandazione: che userete Ubuntu 11.10 o GNOME 3.2, fate attenzione quando installate il sistema operativo a non scegliere una disposizione di tastiera di sistema errata, anche perché l'unico modo che avrete per cambiarla sarà prima fare il login e poi impostare la lingua e la disposizione di tastiera di sistema. Se poi la vostra distribuzione insiste usare l'inglese USA come predefinito per il sistema nell'immediato post-installazione, voi non fate i capoccioni e non vi incaponite con quella password piena di stranezze della vostra inutile lingua. Se poi volete farlo, allora ricordatevi che c'è sempre² la scappatoia del Ctrl+Maiusc+U che vi permette di inserire ogni possibile carattere Unicode usando il rispettivo codice numerico.<br/><br/>La domanda interessante a questo punto è: avremo prima o poi la possibilità di cambiare disposizione del login al login prima del login? Per esempio tra 6 mesi, con Ubuntu 12.04 LTS o GNOME 3.4. Se guardiamo la prior art (Mac OS 10.5, Windows 7, altro?) e il design previsto (ho controllato solo quello di GNOME, non sono riuscito a trovare niente di riferibile a unity-greeter) la risposta è no (anche se W7 ha una scelta Italiano/Inglese).<br/><br/>In tal caso chi glielo va raccontare ai maniaci della sicurezza, che hanno già impostato la password con caratteri presi dalla disposizione uzbeka, tipo &quot;ЬфвкуТфегкфхгтфзгеефтф&quot;?<br/><br/><span class="Apple-style-span" style="font-size: x-small;">[1] cfr archivi di desktop-devel-list, maggio 2011, thread in cui è proposto lightdm come modulo/feature per GNOME 3.2</span><br/><span class="Apple-style-span" style="font-size: x-small;">[2] in effetti funziona sicuramente con GTK+, non saprei se anche con Clutter e quindi con gnome-shell</span><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-2074178470400710847?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="21 September 2011 09.10">2011-09-21T09:10:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="curiosità"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-2163633469165308171</id><link href="http://elleuca.blogspot.com/2011/07/io-te-lo-direi.html" rel="alternate" type="text/html"/><title>Io te lo direi...</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">... o forse te l'ho già detto, o te l'avrei già voluto dire in passato, o magari te lo vorrò ripetere in futuro, anche se per ora mi tocca scrivere un post a parte invece che un solo <a href="http://www.emmanuelebassi.name/archives/2011/07/09/i-dreamt-i-was-an-architect/">placido commento</a>:<br/><br/><ol><li>dopo il . ci va la maiuscola</li><li>s/Gnome/GNOME</li></ol><div><b>Update: </b>sorry, ovviamente per sicurezza meglio s/Gnome/GNOME/g</div><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-2163633469165308171?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="14 July 2011 21.49">2011-07-14T21:49:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/random"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-2739397781453470947</id><link href="http://elleuca.blogspot.com/2011/02/welcome-back-xorgconf.html" rel="alternate" type="text/html"/><title>Welcome back xorg.conf</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">A chi non se ne fosse accorto, negli ultimi tempi l'utilità dello storico file <tt>/etc/X11/xorg.conf</tt> è diventata così marginale e nulla da essere rimosso in toto dai sistemi Linux, tutto a vantaggio dei meccanismi di autoconfigurazione di Xorg stesso.<br/><br/><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/_rb1DKkFZLMo/TU0lb_kjiaI/AAAAAAAAAaw/vFBXLo8bUL8/s1600/gallium.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="230" src="http://1.bp.blogspot.com/_rb1DKkFZLMo/TU0lb_kjiaI/AAAAAAAAAaw/vFBXLo8bUL8/s320/gallium.png" width="320"/></a></div><br/>OK, se ne sono accorti in pochi, ossia tutti quelli che avuto la necessità di passare qualche paramentro particolare al buon caro vecchio server grafico (ditemi quello che vi pare, ma spero che sia impedito a wayland di occupare le macchine di un qual si voglia utente prima che sia garantito il funzionamento di <tt>ssh -X hostname</tt>).<br/><br/>Poniamo il caso che vogliate provare la futura e futuribile GNOME Shell, poniamo il caso che il vostro hardware sia una scheda grafica Ati abbastanza recente, poniamo il caso che la vostra distribuzione sia una di quelle stabili (una a caso, almeno in questo l'una vale l'altra) uscite recentemente in autunno/inverno 2010, ebbene sappiate che avrete bisogno di installare driver grafici (e in particolare le librerie mesa) più nuove possibili. Per esempio, in Ubuntu dovrete attivare il famoso repository PPA xorg-edgers¹ per fare in modo che sia usato il nuovo driver Gallium.<br/><br/>E come fare per usare 'sto driver Gallium? Ebbene, dicendo a <tt>xorg.conf</tt> di usarlo... Beh, non proprio a TUTTO <tt>xorg.conf</tt>, basta semplicemente creare una directory <tt>/etc/X11/xorg.conf.d/</tt> e all'interno di essa un mozzicone del vecchio file, magari con nome <tt>00-gallium.conf</tt>, con unico contenuto qualcosa del genere<br/><blockquote><tt>Section &quot;Device&quot;<br/>   Identifier &quot;generic&quot;<br/>   Driver     &quot;radeon&quot;<br/>   Option     &quot;ForceGallium&quot; &quot;True&quot;<br/>EndSection</tt></blockquote>Sapevatelo!<br/><br/>[1] maggiori spiegazioni nel post &quot;GNOME Shell: per molti ma non per tutti&quot; che aspetta di essere pubblicato da circa un paio di mesi<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-2739397781453470947?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="04 February 2011 20.19">2011-02-04T20:19:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/useful"/><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="avanzato"/><category scheme="http://www.blogger.com/atom/ns#" term="hardware"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-2850139826469010536</id><link href="http://elleuca.blogspot.com/2010/12/ovvero-come-perdersi-una-kappa-e-vivere.html" rel="alternate" type="text/html"/><title>Ovvero come perdersi una kappa e vivere felici</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Una chicca, sempre da La Repubblica sezione Tecnologia, che mi era rimasta nell'hard disk causa solito orario fuori orario in leggo il giornale.<br/><br/><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/_rb1DKkFZLMo/TRnm5SpbMlI/AAAAAAAAAZ4/Q6MywZVkuNw/s1600/ehh.png" style="margin-left: 1em; margin-right: 1em;"><img alt="Testo tratto da Repubblica.it in data 22 dicembre: Così la rete sarà neutrale - Fcc delinea le regole del webInternet deve essere di tutti e i provider di connessione non potranno discriminare contenuti o rallentarne la fruizione arbitrariamente. Una decisione che arriva dopo lunghi dibattiti, ma le nuove disposizioni consentono alle compagnie telefoniche di fissare limiti al traffico via cellulare. E aprono a una rete a più velocità" border="0" src="http://1.bp.blogspot.com/_rb1DKkFZLMo/TRnm5SpbMlI/AAAAAAAAAZ4/Q6MywZVkuNw/s1600/ehh.png"/></a></div><br/>La data era 22 dicembre 2010. L'articolo lo trovate <a href="http://www.repubblica.it/tecnologia/2010/12/21/news/rete_neutrality_approvate_le_regole-10468324/">qui</a>, ma ormai hanno aggiunto un provvidenziale <b>non</b>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-2850139826469010536?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="28 December 2010 13.38">2010-12-28T13:38:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="è ora di basta"/><category scheme="http://www.blogger.com/atom/ns#" term="società"/><category scheme="http://www.blogger.com/atom/ns#" term="notizie"/><category scheme="http://www.blogger.com/atom/ns#" term="web"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-3100495495402790581</id><link href="http://elleuca.blogspot.com/2010/11/travi-e-pagliuzze.html" rel="alternate" type="text/html"/><title>Travi e pagliuzze</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">28 novembre 2010<br/><br/>Wikileaks rivela al mondo che quello che uno stato sovrano dichiara pubblicamente non è uguale uguale a quello che pensa... Ero convinto fosse una verità assodato in ambito diplomatico dai tempi di... hmmm... Brenno?!?!?<br/><br/>28 novembre 2010<br/><br/>Abbagliati da Wikileaks, le grandi testate mondiali (tra cui, notare, non figura alcuna italiana) hanno tralasciato la vera notizia del giorno: <a href="http://www.repubblica.it/esteri/2010/11/28/foto/la_donna_che_possiede_il_sole_e_ora_pagate-9598620/1/">questa</a>.<br/><br/>29 novembre 2010<br/><br/>... e se le faccio causa perché il troppo sole mi ha bruciato le piante di pomodori???!!??!<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-3100495495402790581?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="29 November 2010 15.26">2010-11-29T15:26:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/null"/><category scheme="http://www.blogger.com/atom/ns#" term="società"/><category scheme="http://www.blogger.com/atom/ns#" term="notizie"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-3196951499015130437</id><link href="http://elleuca.blogspot.com/2010/11/critic-ocrazy.html" rel="alternate" type="text/html"/><title>Critic-ocrazy</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><blockquote><i>Non è il massimo venire a parlare dei miei edit nella WP italiana se non ti firmi nemmeno. Tu hai dato più soldi di me? hai più edit in quella italiana? dimmi chi sei così controllo e poi ti faccio i complimenti, da anonimo questa critica mi sembra scarsa e in linea con chi critica e poi sta con le mani in mano.</i><br/><i><br/></i><br/><i>da <a href="http://punto-informatico.it/b.aspx?i=3037161&amp;m=3038871#p3038871">qui</a></i></blockquote>Cioè? Non posso dire che it.wikipedia.org farebbe meglio a tradurre dall'inglese invece che mettere contributi originali se non ho ottenuta mezza stelletta? Non posso dire che Fedora è stupida a non fornire nella sua Live OpenOffice.org perché uso Ubuntu? Non posso dire che KDE è solo una vetrina per le Qt e che magari tra 4 anni lo segano in favore di MeeGo for Desktop? Non posso dire che il Ministro Sandro Bondi¹ avrebbe dovuto rassegnare le dimissioni perché non sono a capo della Presidenza del Consiglio?<br/><br/>Esistono veramente solo il fare tanto o il fare bene (o il metterci tanti soldi, ma quella è un'altra storia)? Io non pretendo di decidere per cose a cui partecipo, ma ci sono due cose di cui non riuscirete mai a privarmi: la libertà di pensare e il piacere sopraffino della critica da bar.<br/><br/><small>[1] del Poeta Sandro Bondi non parlo, ma solo perché dovrei rivelare che non ho mai letto la sua opera e questa sarebbe una grande pecca nel mio curriculum</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-3196951499015130437?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="18 November 2010 20.52">2010-11-18T20:52:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="dubbi esistenziali"/><category scheme="http://www.blogger.com/atom/ns#" term="società"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-3801423004857672435</id><link href="http://elleuca.blogspot.com/2011/01/g-and-h.html" rel="alternate" type="text/html"/><title>The G and the H</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><span class="Apple-style-span" style="font-family: Ubuntu;"/><br/><span class="Apple-style-span" style="font-family: Ubuntu;"><a href="http://gwifi.it/">http://gwifi.it/</a></span><br/><span class="Apple-style-span" style="font-family: Ubuntu;"><br/></span><br/><span class="Apple-style-span" style="font-family: Ubuntu;">ma quando trovi un loro Hot-Spot</span><br/><span class="Apple-style-span" style="font-family: Ubuntu;">...</span><br/><span class="Apple-style-span" style="font-family: Ubuntu;">hai trovato il G-Spot??</span><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-3801423004857672435?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="11 January 2011 14.50">2011-01-11T14:50:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="dubbi esistenziali"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-4390077329425168955</id><link href="http://elleuca.blogspot.com/2010/12/gedit-on-steroids.html" rel="alternate" type="text/html"/><title>gedit on steroids</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/_rb1DKkFZLMo/TP6g3teOpvI/AAAAAAAAAZo/kLjRO1V9kDI/s1600/gedit.png" style="margin-left: auto; margin-right: auto;"><img border="0" height="236" src="http://2.bp.blogspot.com/_rb1DKkFZLMo/TP6g3teOpvI/AAAAAAAAAZo/kLjRO1V9kDI/s320/gedit.png" width="320"/></a></td></tr><tr><td class="tr-caption" style="text-align: center;">salutate i tab groups</td></tr></tbody></table>Per cominciare una immagine, poi a seguire novità e informazioni su cosa succede su git.gnome.org al di fuori di GNOME Shell.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-4390077329425168955?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="07 December 2010 21.05">2010-12-07T21:05:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-5037655154228188143</id><link href="http://elleuca.blogspot.com/2011/06/long-road-home.html" rel="alternate" type="text/html"/><title>Long Road Home</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-tsdl_UxE-_s/TgWtXqb6GMI/AAAAAAAAAbY/oYjbOyhc1g8/s1600/long-road-home.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="226" src="http://1.bp.blogspot.com/-tsdl_UxE-_s/TgWtXqb6GMI/AAAAAAAAAbY/oYjbOyhc1g8/s320/long-road-home.png" width="320"/></a></div><br/>For more info see http://www.it.redhat.com/pdf/osd/2011/HP_pres.pdf<br/><br/>E comunque, se non ricordo male lo speech, i driver per le stampanti HP per Linux non esistono perché è cosa buona e giusta, ma perché HP vende computer con Linux che potrebbero trovarsi nella condizione di usare una stampante HP. Ipse dixit.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-5037655154228188143?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="25 June 2011 09.51">2011-06-25T09:51:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="vita vissuta"/><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="lot of fun"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-5348804049412511726</id><link href="http://elleuca.blogspot.com/2011/09/vincere.html" rel="alternate" type="text/html"/><title>Vincere!</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Ricercatori di terra, di mare e dell'aria! Camici bianchi delle rivoluzione e precessione! Uomini e donne d'Italia, cervelli in fuga e regno di Padania. Ascoltate!<br/><br/>Un'ora segnata dal destino batte nel cielo della nostra patria. L'ora delle decisioni relativistiche.<br/><br/>La dichiarazione di guerra è stata già consegnata all'ambasciatore Alberto Unapietra.<br/><br/>Scendiamo in campo contro la democrazia plutocratiche e reazionarie della velocità della luce, che in ogni tempo e spazio, hanno ostacolato la marcia e spesso insidiato l'esistenza stessa dei viaggi iperspaziali.<br/><br/><i><span style="font-size: x-small;">References -- </span></i><a href="http://www.istruzione.it/web/ministero/cs230911"><span style="font-size: x-small;">http://www.istruzione.it/web/ministero/cs230911</span></a><br/><br/><div><i><span style="font-size: x-small;">Thanks -- </span></i><span style="font-size: x-small;">un grazie a Ulisse per l'ispirazione</span></div><div><span style="font-size: x-small;"><i>Notes</i> -- avevo dimenticato quel &quot;scendiamo in campo&quot;...</span></div><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-5348804049412511726?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="24 September 2011 12.31">2011-09-24T12:31:00Z</updated><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-5784685806377241931</id><link href="http://elleuca.blogspot.com/2011/02/puntualita.html" rel="alternate" type="text/html"/><title>Puntualità</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Lo sapevo. Ci doveva essere e non poteva mancare. Lo sapevo che <a href="http://www.ilgiornale.it/interni/quelle_minorenni_usate_dalla_sinistra_corteo_tutte_contro_premier/14-02-2011/articolo-id=505944-page=0-comments=1">Il Giornale</a> non mi avrebbe deluso.<br/><br/>Perché se porti i bambini la domenica mattina mattina a piazza S. Pietro con in mano la bandierina di Padre|Beato|San Pio da Pietralcina o se li vesti da dentro in fuori, dalla testa ai piedi di abiti griffati A.S. Roma va bene ed è giusto e legittimo¹, ma se li porti a <a href="http://senonoraquando13febbraio2011.wordpress.com/">una manifestazione</a> che in un certo qual modo riguarda il loro futuro e che per forza di cose è in un certo qual modo schierata allora diventa uso strumentale del minorenne e tu sei automaticamente incluso nel novero dei dittatori totalitaristi.<br/><br/>Che poi, giornalisticamente parlando, la notizia quale è? Che c'erano bambini e bambine e che nessuno li stava mangiando o molestando?<br/><br/><small>[1] S.S. Lazio no, mai.</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-5784685806377241931?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="14 February 2011 13.21">2011-02-14T13:21:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="società"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-5790487680332263148</id><link href="http://elleuca.blogspot.com/2011/03/ops-we-smau-again.html" rel="alternate" type="text/html"/><title>Ops, we SMA(U)ck again...</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Annunciazione Annunciazione!<br/>Per chi mai si sarebbe potuto immaginare di vedere i due loschi figuri noti come Flavia &quot;Deindre&quot; Weisghizzi e Luca &quot;Elleuca&quot; Ferretti allo SMAU a Milano, ebbene, la storia si ripete!<br/><br/>La graziosa e gentile dirigenza della più importante fiera della innovazione ha accettato nuovamente la nostra candidatura per proseguire il discorso iniziato in ottobre.<br/>Torneremo infatti sull'argomento CLOUD, e stavolta sarà più in alto che mai!<br/><br/>C'è ancora qualche posto per gli amichetti :) Basta cliccare <a href="http://www.smau.it/roma11/schedules/semplice-e-sicuro-lecosistema-server-e-cloud-di-ubuntu/">qui</a>!<br/><br/>Vi aspettiamo giovedì 31 marzo alle 12 e 30 alla Fiera di Roma.<br/><br/>Un bacio a tutti!<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-5790487680332263148?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="28 March 2011 23.05">2011-03-28T23:05:00Z</updated><author><name>Flavia</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-5834878881419524301</id><link href="http://elleuca.blogspot.com/2011/03/gnome-3-release-party-bologna.html" rel="alternate" type="text/html"/><title>GNOME 3 Release Party a Bologna</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><div class="separator" style="clear: both; text-align: center;"><a href="http://www.gnome.org/contest/img/gnome_head.png" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="224" src="http://www.gnome.org/contest/img/gnome_head.png" width="320"/></a></div>Contribuenti e contributori, traduttori, sviluppatori e semplici appassionati,<br/><br/>siete pronti a dare sfogo a tutta la vostra friccicantezza e festeggiare i primi vagiti del neonato <a href="http://www.gnome3.org/" title="Trucco: per vederlo in italiano aggiungete .it dopo l'estensione .html :|">GNOME 3</a>? L'appuntamento allora è per sabato 9 aprile in quel di Bologna, presso la Sala Consigliare del quartiere Porto in Bologna<br/><br/>La data e il luogo sono stati accuratamente scelti dalla vostra compagine GNOMEttara preferita, in modo da coincidere con il <a href="http://loco.ubuntu.com/events/team/728/detail/">translation</a> <a href="http://wiki.ubuntu-it.org/TranslationSprint">sprint</a>, permettendo quindi di unire l'utile al dilettevole.<br/><br/>L'attuale programma, ancora in via di precisa definizione, prevede una breve, che dico, brevissima introduzione ad apertura dei lavori del translation sprint, giusto per ricordare a tutti che, dopo essersi arrovellati le meningi sulle traduzioni, a fine giornata ci sarà festa grossa con:<br/><ul><li><i>dalle 16.30/17.00 e fino alle 18.00 nella stessa sala consiliare</i> -- una o più presentazioni su GNOME 3, che spieghino cosa è, perché è, cosa comporta, quali rischi per la salute e quali vantaggi per l'ecosistema globale, con picchi di interesse su design e sviluppo; ovviamente sarà presente anche un GNOME 3 in pixel e bit, da poter toccare con mouse;</li><li><i>da dopo le 18.00 fino a quando più o meno vogliamo in uno dei locali più trendy della splendida Bologna</i> -- beveraggi vari, gentilmente offerti a voi stessi da voi stessi, da consumare tutti assieme in allegria, tra palloncini, spille ed adesivi tutti coperti di orme GNOMEsche</li></ul>Non mancheranno infatti alcuni <a href="http://blogs.sun.com/emily/entry/gnome_3_0_launch_party">cotillion</a> gentilmente offerti dalla GNOME Foundation da tenere come ricordo di questo evento.<br/><br/>Una piccola nota: la GNOME Foundation gradirebbe avere foto di questi party, in modo da mostrare quanto le GNOMEtte e gli GNOMEtti di tutto il globo sappiano divertirsi. Raccomando quindi fin d'ora a tutti i partecipanti di sorridere :)<br/><br/>Ci vediamo a Bologna.<br/><br/><small>PS sì, il sito www.it.gnome.org è down, colpa del FLUG che ha <a href="http://www.firenze.linux.it/2011/02/passaggio-a-ils/">migrato su ILS</a> il loro server, dimenticandosi del nostro che da loro era ospitato. Siamo in attesa di delucidazioni... anzi, se qualcuni sapesse chi contattare con precisione, sarebbe cosa grata. Nei prossimi giorni allestirò una pagina per questo evento su live.gnome.org</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-5834878881419524301?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="21 March 2011 22.53">2011-03-21T22:53:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="lot of fun"/><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-6109289408592699325</id><link href="http://elleuca.blogspot.com/2011/01/si-faccia-una-domanda-si-dia-una.html" rel="alternate" type="text/html"/><title>&quot;Si faccia una domanda, si dia una risposta&quot;</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">&quot;<a href="http://askubuntu.com/questions/21373/how-can-i-get-firefox-to-work-with-the-global-application-menu">Fatto!</a>&quot; (cit.)¹<br/><br/><small>[1] se sapete da dove viene questo &quot;cit.&quot;, titolo compreso, vi voglio bene, se me lo trovate anche su youtube  allora vi adoro</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-6109289408592699325?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="14 January 2011 21.33">2011-01-14T21:33:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/null"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8168925203487958597</id><link href="http://elleuca.blogspot.com/2010/12/pull.html" rel="alternate" type="text/html"/><title>PULL!!</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">I giornalisti di La Repubblica online, sezione Tecnologia, stupiscono sempre più, giorno dopo giorno, per l'attenzione e la capacita di analizzare gli eventi che accadono attorno a loro.<br/><br/>A parte cannare totalmente l'articolo (&quot;recensione&quot; dell'hardware del Cr-48 di Google, che sappiano non vedrà mai la luce della grande distribuzione), rimarranno sempre nei nostri cuori le seguenti perle, in rigoroso ordine di apparizione.<br/><br/>Per cominciare, un bel richiamo alla cultura popolare dei fumetti,<br/><blockquote>La prima impressione appena spacchettato è stata quella di avere a che fare con un <i>gadget marvelliano</i>, da fumetto retrofuturibile. A <i>Gotham City</i>, la vittà ipertecnologica di <i>Batman</i>, potrebbe essere un oggetto d'uso comune.</blockquote>Peccato solo che Batman sia un personaggio della Distinta Concorrenza.<br/><br/>Dopo lo sfasamento sui luoghi del fumetto, ecco lo sfasamento sui luoghi della noosfera:<br/><blockquote>I software il Cr-48 non li scarica dal web come fa un normale computer: <i>li ha nel browser dall'inizio</i>, perché ne ha bisogno come l'aria per respirare.</blockquote>Questa è bellissima, non la introduco solo per il gusto di farvela leggere da soli.<br/><blockquote>è stato disegnato per essere usato dai developer d'assalto, gli sviluppatori di software. Tipi che non temono l'<i>extreme programming</i>, dove la codifica ha luogo tra una seduta di skateboard e l'altra e i diagrammi di flusso li si possono anche disegnare su una tavola di surfing mentre si torna dal mare.  </blockquote>E visto che siamo proiettati nel futuro<br/><blockquote>microprocessore single core <i>160 GHz</i> della Intel [...] ma queste sono<i> dotazioni standard di ogni laptop</i> sul mercato.</blockquote>Ma la più bella, che resterà per sempre nel mio cuore di appassionato e di traduttore è la seguente:<br/><blockquote>Anche la tastiera presenta delle sorprese. A parte essere gommata pure lei, <i>non ha il tasto delle maiuscole</i> che è stato invece sostituito da un <i>bottone</i> per la ricerca rapida, ogni volta che lo si clicca si passa da un sito web all'altro senza dover chiudere la pagina precedente. Usando i <i>settaggi</i>, però, si può reintrodurre il tasto per la maiuscola. Dove in una normale tastiera qwerty un computer esibirebbe - nella fascia superiore - <i>le chiavi F</i> per il controlo delle funzioni legate alla gestione del sistema operativo e delle scorciatoie, nel Cr-48 ci sono <i>le chiavi con le quali sul web si passa</i> da una pagina all'altra, <i>si rinfrescano</i> le pagine web, le si sovrappongono, si controlla il volume, la luminosità <i>dello schermo e la sua ampiezza</i>.</blockquote>Applausi. A scena aperta.¹<br/><br/>Perché il sipario su questa gragnola di prodezze verbali e informative non è ancora calato, facciamo in tempo a leggere un'ultima perla linguistica, un ultimo afflato dell'occhio clinico dell'uomo avvezzo a comprendere le vie della tecnologia e di anticipare i tempi:<br/><blockquote>Uno status symbol che può denotare l'appartenenza o meno di un utente alle nuove tribù del web. Sopratutto nella Bay Area di San Francisco dal cui milieu culturale è emersa la stessa Google. Tribù queste che includono i soggetti sociali più disparati, gente come gli hacker stile WikiLeak, gli ecomilitanti alla Earth First!, i Punkdomestic della cucina casalinga e degli ingredienti indigeni, i coltivatori urbani di cannabis, i bikers di Critical Mass, gli agricoltori verticali e i paldini dei diritti degli animali alla PETA.</blockquote>Eehh?? Ma all'inizio non diceva che l'avevano messo in mano a &quot;professionisti dell'Information technology, dell'intrattenimento e dirigenti aziendali&quot;??? E poi, ma cosa è diventata Frisco? Un covo di alternativi radical chic che vogliono salvare il mondo?<br/><br/>OK, sono indeciso: aspetto che si accorgano di questo mio rant e cerchino di mettere a tacere la mia giusta indignazione dicendo che non era concessa la riproduzione dell'articolo, oppure scrivo alla redazione evidenziando del *cough*stronzate*cough* che hanno inserito?<br/><br/><small>[1] se mi si permette l'annotazione personale, da questo paragrafo sembra quasi che il sig. Paolo Pontoniere -- che ha apposto la sua firma <a href="http://www.repubblica.it/tecnologia/2010/12/27/news/prova_cr-48-10547730/">all'articolo</a> -- abbia anche egli sfruttato i servigi messi a disposizione da Google, Inc. non solo per scrivere l'articolo, ma anche per tradurre, chissà da dove, la parola key, che si riferisce ovviamente al tasto della tastiera, con chiave. Certo, mi chiedo poi come abbia fatto a mettere le maiuscole al suo articolo, ma forse ha dovuto di volta in volta cambiare i settaggi...</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8168925203487958597?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="28 December 2010 02.50">2010-12-28T02:50:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="società"/><category scheme="http://www.blogger.com/atom/ns#" term="notizie"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8212989115777535770</id><link href="http://elleuca.blogspot.com/2010/11/one-more-week.html" rel="alternate" type="text/html"/><title>One more week</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Per chi non ne fosse venuto a conoscenza da altri canali, è disponibile ancora per un settimana lo sconto del 25% su un certo libro, Ubuntu Linux 10.10, per l'acquisto online.<br/><br/>Tutte le informazioni <a href="http://www.hoepli.it/libri/sconti_offerte/promozione-ubuntu-linux/">sono disponibili qui</a>. Ovviamente, al modico prezzo di un tozzo di pane e di un riparo per la notte, gli autori sono disposti a venire nella vostra città a tenere uno spettacolino di presentazione e ad autografare copie :P<br/><br/>Adesso tocca a voi :)<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8212989115777535770?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="19 November 2010 11.50">2010-11-19T11:50:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/useful"/><category scheme="http://www.blogger.com/atom/ns#" term="acquisti"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8380223225684338247</id><link href="http://elleuca.blogspot.com/2010/12/copiare-e-unarte.html" rel="alternate" type="text/html"/><title>Copiare è un'arte</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Ciao, questo è il Mac.<br/><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/_rb1DKkFZLMo/TQf6B8n5wtI/AAAAAAAAAZs/xmH39eh2Hx8/s1600/mac-back.png" style="margin-left: auto; margin-right: auto;"><img border="0" height="173" src="http://2.bp.blogspot.com/_rb1DKkFZLMo/TQf6B8n5wtI/AAAAAAAAAZs/xmH39eh2Hx8/s200/mac-back.png" width="200"/></a></td></tr><tr><td class="tr-caption" style="text-align: center;">nessun computer reale è stato infestato per scattare questa immagine</td></tr></tbody></table><br/>Questo, questo invece sarà GNOME.<br/><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/_rb1DKkFZLMo/TQf9llSVRjI/AAAAAAAAAZw/aPNCkne8gzs/s1600/gnome3-back.png" style="margin-left: auto; margin-right: auto;"><img border="0" height="158" src="http://1.bp.blogspot.com/_rb1DKkFZLMo/TQf9llSVRjI/AAAAAAAAAZw/aPNCkne8gzs/s200/gnome3-back.png" width="200"/></a></td></tr><tr><td class="tr-caption" style="text-align: center;">as seen on current git snapshot</td></tr></tbody></table><br/>Sì, avete ragione: sono simili. Ma GNOME è meglio. È un design ispirato al Mac, rielaborato e sublimato, inserendo elementi e togliendone altri.<br/><br/>Vedete per esempio quei due pulsanti <b>+</b> (Aggiungi) e <b></b> (Rimuovi) in fondo all'elenco sulla destra di Mac? Inutili e ridondanti. A che servono? A chi servono? Forse a te, che vuoi mettere come sequenza le foto più adorabili del tuo adorabile micino? O a te, novella mamma che non staccheresti gli occhi dal tuo frugoletto? O magari ancora a te patito dello sci d'altura che intendi tappezzarlo con immagini dei tuoi campioni preferiti?<br/><br/>Ahi servo utente, di dolore ostello. Con questi tuoi pensieri ferisci il povero designer di GNOME, che ha previsto per te una cosa ben precisa. Le immagini personali che vuoi mettere sullo sfondo della scrivania devono essere collocate in $XDG_PICTURES_DIR (a.k.a. la cartella Immagini nella home per i non anglofoni). Punto. Fine. Stop. Niet. Nada. Nisba. Cuidado con los carteristas.<br/><br/>Altro che Mac, altro che aggiungere le singole cartelle sparse in ogni dove nel file system (e forse anche remote, dovrei provare) con i due pulsanti <b>+</b> (Aggiungi) e <b></b> (Rimuovi). Una sola singola posizione. Facile, semplice, immediato. A prova di utente.<br/><br/>...<br/><br/>...<br/><br/>Nel senso che nessuno lo userà mai perché nel frattempo sono tutti passati a Mac.<br/><br/><small>PS il primo che commenta &quot;la prima cosa che l'utente cambia è lo sfondo&quot; vado lì e gli stacco le braccine<br/>PPS ovviamente grazie all'ispiratore del titolo del post :P</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8380223225684338247?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="14 December 2010 23.57">2010-12-14T23:57:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><category scheme="http://www.blogger.com/atom/ns#" term="apple"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8431781701089185216</id><link href="http://elleuca.blogspot.com/2011/02/what-u.html" rel="alternate" type="text/html"/><title>What the ƒŰʗג</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Comunicazione di servizio: <tt>unzip(1)</tt> è morto, viva <tt>unzip(1)</tt>.<br/><br/><a href="http://farm3.static.flickr.com/2254/1568278214_acfad7322b_o_d.jpg" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="212" src="http://farm3.static.flickr.com/2254/1568278214_acfad7322b_o_d.jpg" width="320"/></a>Se anche tu, come me, usando Linux ricevi ogni spesso archivi ZIP creati in Microsoft Windows versione QuellaCheTiPare e se i documenti ivi archiviati presentano nomi con lettere accentate o in generale non ASCII, ti sarai accorto di come tali documenti non vengano estratti in modo corretto, lamentandosi del fatto che è stata usata una codifica sconosciuta.<br/><br/>Il motivo? Non. Lo. So. E al momento non mi interessa investigarlo troppo, ma di certo è da qualche parte tra <i>File Roller</i> e <tt>unzip(1)</tt>.<br/><br/>Ci sarà mai soluzione? Nel frattempo c'è un bug e un possibile workaround (che a me però non ha funzionato sui file di test): installate <i>7zip</i>.<br/><br/>A quanto pare quest'ultimo è diventato da tempo il <a href="http://git.gnome.org/browse/file-roller/tree/src/fr-init.c#n334">preferito tra i backend</a> usati da File Roller per la gestione di ogni formato compresso degno di nota (vista la &quot;svaria&quot; di formati supportata da <tt>7z(1)</tt>).<br/><br/>Meglio? Peggio? Serve? Io per ora l'ho installato e sul file di prova ha fallito, comunque aspetto aspetto fiducioso di ricevere un bel file &quot;reale&quot; per una controprova (e nel caso emozionarmi come un bimbo). Voi siete avvisati. Ora, chi avvisa i distributori?<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8431781701089185216?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="10 February 2011 11.04">2011-02-10T11:04:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/useful"/><category scheme="http://www.blogger.com/atom/ns#" term="opensource"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8485846677305200398</id><link href="http://elleuca.blogspot.com/2011/04/its-boy.html" rel="alternate" type="text/html"/><title>It's a boy!</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">No, non è il 2015. Stavolta siamo stati ai patti: GNOME 3 è <a href="http://library.gnome.org/misc/release-notes/3.0/index.html.it">qui</a>. E stavolta, anche se in confronto ad altri solo per una piccola briciola, posso dire con orgoglio...<br/><div class="separator" style="clear: both; text-align: center;"><a href="http://www.gnome.org/wp-content/uploads/2011/04/iamgnome.png" style="margin-left: 1em; margin-right: 1em;" title="I'am GNOME"><img border="0" src="http://www.gnome.org/wp-content/uploads/2011/04/iamgnome.png"/></a></div><br/><small>PS per chi non volesse rovinarsi la sorpresa, suggeriamo di attendere ancora qualche giorno per poter vedere i noti e ormai tradizionali easter egg nelle immagini che accompagnano le note di rilascio, o per lo meno la loro traduzione italiana; per il momento infatti ci sembrava cosa buona e giusta lasciare le immagini originali, create con cura da Allan Day.<br/><br/>PPS e non dimenticate di dare uno sguardo anche al nuovo <a href="http://www.gnome3.org/">gnome3.org</a> e al rinnovato <a href="http://www.gnome.org/">gnome.org</a></small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8485846677305200398?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="06 April 2011 22.33">2011-04-06T22:33:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="notizie"/><category scheme="http://www.blogger.com/atom/ns#" term="gnome"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8498778737579680007</id><link href="http://elleuca.blogspot.com/2011/07/dinamiche-e-diaspore.html" rel="alternate" type="text/html"/><title>Dinamiche e diaspore</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><blockquote><i>Se due persone fumano sotto il cartello &quot;vietato fumare&quot; gli fai la multa, se venti persone fumano sotto il cartello &quot;vietato fumare&quot; chiedi loro di spostarsi, se duecento persone fumano sotto il cartello &quot;vietato fumare&quot; togli il cartello. </i><br/><div style="text-align: right;"><i>-- Winston Churchill</i></div></blockquote>Rapporti di forza. Forza reale. Forza fisica. Forza morale. Forza d'animo. Forza economica. Forza di manganelli. Forza di sfondamento del proiettile che ti viaggia contro. Forza uguale massa per spostamento. Forza Roma. Lazio merda.<br/><br/>In fin dei conti il mondo va avanti così.<br/><br/>Per cui bisogna guardarsi attorno, magari adeguarsi e assuefarsi, così da decidere come e dove e perché e quanto e se indirizzare e aggiungere la propria forza. Io, per me, non ho ancora scelto verso chi rivolgere la mia, a chi donarla in modo incondizionato, sono sempre così dannatamente veltroniano che qualche generale in pensione mi odierebbe per i miei &quot;ma anche&quot; e per l'assenza di una presa di posizione ferma e decisa e irrevocabile a favore dei &quot;miei&quot; e a svantaggio dei &quot;loro&quot;.<br/><br/>Perché in fondo la guerra è bella, bella e invitante con la sua languida profusione di forza, che permette in modo chiaro e definitivo di mostrare chi ha i muscoli più gonfi e il razzo più lungo. Uno, due, tre schermaglie e poi <i>BUM!</i> fine dei giochi, avete chiuso, non siete più niente, non lo siete mai stato. E non serve più nemmeno il cartello &quot;vietato fumare&quot;.<br/><br/>Facile, oh quanto dannatamente è facile lanciare razzi e razzetti contro tutto e tutti, facile quanto togliere il cartello &quot;vietato fumare&quot;, ma più autocelebrativo, più gongolante, più foriero di soddisfazioni.<br/><br/>Fine dei giochi? Forse sì, che senso avrebbe continuare, se non fosse che c'è ancora un &quot;ma anche&quot; da giocarmi in questo post.<br/><br/>Un &quot;ma anche&quot; che, da parte mia, vuole essere timido e senza pretese, che potete farci quello che più vi pare, coccolarlo dolcemente così come sputarci sopra il vostro disprezzo, ma che resterà perennemente lì ad attestare la mia inadeguatezza e insofferenza a conchiudermi all'interno di un pensiero unico e univoco.<br/><br/>Qualche anno fa abbiamo messo da parte Gecko visto che il suo paradigma di sviluppo rendeva difficile utilizzare il suo motore di rendering HTML (e varie altre feature) all'interno di GNOME perché, per farla breve e sporca, Mozilla rilasciava prodotti, non librerie di sviluppo. L'abbiamo fatto perché ritenevamo che fosse il software ad essere sbagliato, non le persone che dovevano usare quel software per costruire qualcosa.<br/><br/>E oggi? Se mi guardo attorno leggo di persone che attestano quanto sia bello GNOME 3 e GNOME Shell, ma che per farli funzionare in modo efficace hanno dovuto installare gnome-tweak-tool mentre disegnavano pentagrammi in terra nel tentativo di evocare il Click of Destiny. E non sono 2, non sono 20, non sono 200. Sono un po' di più. Eppure c'è qualcuno che continua a ripetere che in questo caso il software è giusto, le persone sbagliate.<br/><br/>Di certo c'è qualche patologia che prevede tra i sintomi una profonda e innata idiosincrasia nei confronto di tutto ciò che non è se stesso. Dovrei controllare su wikipedia se è il narcisimo o il morbo di Chuck Norris. Atteggiamento legittimo. <i>Ma anche</i> così dannatamente inutile per trovare un modo nuovo e intelligente per entrare in contatto effettivo, efficace e collaborativo con quei duecento sempre lì, fermi sotto al cartello &quot;vietato fumare&quot;.<br/><br/>Forse qualcuno dovrebbe prendere una scala e un po' di buona volontà e trovare il tempo di salire fin lassù per mettere un'altra scritta, che so, &quot;Parliamone&quot;.<br/><br/>Beh, certo, assieme alla voglia di ascoltare.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8498778737579680007?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="17 July 2011 17.54">2011-07-17T17:54:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/null"/><category scheme="http://www.blogger.com/atom/ns#" term="dubbi esistenziali"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-8589293307073374281</id><link href="http://elleuca.blogspot.com/2011/07/quel-periodo-dellanno.html" rel="alternate" type="text/html"/><title>Quel periodo dell'anno...</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-Gmz-lD7x8y8/Tht5F787KdI/AAAAAAAAAdk/W7u0v65lV6o/s1600/given-name.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="205" src="http://4.bp.blogspot.com/-Gmz-lD7x8y8/Tht5F787KdI/AAAAAAAAAdk/W7u0v65lV6o/s320/given-name.png" width="320"/></a></div><br/><span class="Apple-style-span" style="font-family: Arial, sans-serif; font-size: 13px; line-height: 18px;">Oh sì, complimenti a Google Inc per aver speso bene i suoi soldi coi traduttori¹ per quella stupenda traduzione di <i>given name</i>. Il traduttore del povero e bistrattato Evolution ha invece a suo tempo fatto il suo lavoro, controllando il vocabolario/dizionario (cioè <i>nome di battesimo</i>, ma per essere politically correct ha preferito togliere i riferimenti alle radici cristiano protestanti delle lingua della terra di albione... fossero rimasti norreni o quelli che erano non avrebbero fatto un soldo di danno, tanto si sa che si vestivano di marmotte quando noi già si accoltellava un Giulio Cesare).</span><br/><span class="Apple-style-span" style="font-family: Arial, sans-serif; font-size: 13px; line-height: 18px;"><br/></span><br/><span class="Apple-style-span" style="font-family: Arial, sans-serif; font-size: x-small;"><span class="Apple-style-span" style="line-height: 18px;">[1] anche i messaggi che appaiono quando si monta/smonta una scheda SD sono da cute anserina, declinati pure al modo e tempo errato.</span></span><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-8589293307073374281?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="11 July 2011 22.36">2011-07-11T22:36:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="traduzione"/><category scheme="http://www.blogger.com/atom/ns#" term="lamentele"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><category scheme="http://www.blogger.com/atom/ns#" term="android"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-14694951.post-9192043258349078490</id><link href="http://elleuca.blogspot.com/2010/12/bang-bang-my-baby-shot-me-down.html" rel="alternate" type="text/html"/><title>Bang Bang (My Baby Shot Me Down)</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Io a-d-o-r-o questo coso che si chiama internet. Io a-d-o-r-o questo coso che tutti chiamo wep 2.0 in cui ognuno può dire la propria. Altrimenti dovrei passare tutto il tempo sugli autobus e ai tavolini dei bar in attesa che qualcuno pronunzi perle come questa:<br/><br/><blockquote><i>È molto più giocattolo una linux box allora… giocattolo nel senso che in ambito home e office pistoli e smanetti per il 50% del tempo con tecnicismi che non hanno nulla a che vedere con le tipiche attività home e office appunto.</i></blockquote><blockquote><i>Chi compra una linux box ci gioca nel senso che poi è costretto a spendere una sacco di tempo per farla funzionare e capirla.</i></blockquote><blockquote><i>Chi compra un Mac non ci gioca in quanto il 99% del tempo è speso per le attività che non hanno a che fare con manutenzione, tuning e risoluzioni di beghe varie.</i></blockquote><blockquote><i>Pistolare per far andare un computer che fatica a carburare = giocare (dispregiativo!)</i></blockquote><blockquote><i>Usare un computer per attività home e professionali = non è giocare</i></blockquote><blockquote>da <a href="http://www.melablog.it/post/13061/mac-os-x-lion-alcuni-mockup-del-nuovo-finder/1#447973">qui</a></blockquote>Vorrei però correggere la stima. Con la mia linux box comprata su ebay con il 10% del tempo ho concluso tutte le attività home e office e il restante 90% lo passo a <i>pistolare</i> su IRC.<br/><br/>Chissà, forse è così perché la mia linux box è stata installata dai CD originali di Ubuntu invece che da quelli scaricati da internet... mah... dovrò chiedere a qualche esperto che anche lui passa il tempo a <i>pistolare</i> su IRC.<br/><br/><small>PS Pistolare o non pistolare, questo è il dilemma. Se sia più nobile nell'ambito home soffire i colpi di freeze e di attese di un avverso driver o prendere le armi contro un mare di SIGSEGV e, contrastandoli, compilare il kernel RC...</small><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/14694951-9192043258349078490?l=elleuca.blogspot.com" width="1"/></div></div></summary><updated planet:format="09 December 2010 09.25">2010-12-09T09:25:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="/dev/null"/><category scheme="http://www.blogger.com/atom/ns#" term="dubbi esistenziali"/><category scheme="http://www.blogger.com/atom/ns#" term="lot of fun"/><category scheme="http://www.blogger.com/atom/ns#" term="disinibito"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-14694951</id><category term="acquisti"/><category term="linux"/><category term="musica"/><category term="dubbi esistenziali"/><category term="/dev/null"/><category term="web"/><category term="imbrazzatissimo"/><category term="apple"/><category term="editti e comunicazioni"/><category term="avanzato"/><category term="community"/><category term="è ora di basta"/><category term="lot of fun"/><category term="fedora"/><category term="notizie"/><category term="traduzione"/><category term="/dev/random"/><category term="multimedia"/><category term="vita vissuta"/><category term="ricerca"/><category term="/dev/useful"/><category term="gnome"/><category term="grafica"/><category term="novità"/><category term="android"/><category term="standard"/><category term="filesystem"/><category term="disinibito"/><category term="opensource"/><category term="usabilità"/><category term="rumors"/><category term="microsoft"/><category term="accessibilità"/><category term="sicurezza"/><category term="ubuntu"/><category term="neapolis"/><category term="società"/><category term="lamentele"/><category term="hardware"/><category term="curiosità"/><author><name>Luca Ferretti</name><email>noreply@blogger.com</email></author><link href="http://elleuca.blogspot.com/" rel="alternate" type="text/html"/><link href="http://elleuca.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>... convinto com'ero di essere stato per tutta la vita invece che intero, parzialmente scremato ...</subtitle><title>Parzialmente scremato</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:15Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;C0EHQ3Yyeil7ImA9WhRaFEk.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Fri, 17 Feb 2012 01:20:32 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>80</planet:facewidth><planet:css-id>luca-ferretti</planet:css-id><planet:face>elleuca.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Luca Ferretti</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-2889023338023330307</id><link href="http://lorenzosfarra.blogspot.com/2011/05/finalmente-si-alza-il-sipario-ecco-il.html" rel="alternate" type="text/html"/><title>Finalmente si alza il sipario: ecco il nuovo sito di ubuntu-it</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Signore e signori,<br/>dopo mesi di durissimo lavoro (che in realtà è il lavoro-dopo-il-vero-lavoro-ovvero-tempo-libero) siamo felicissimi e fieri di presentare la nuova veste del <a href="http://www.ubuntu-it.org/">sito ufficiale di ubuntu-it</a>:<br/><br/><a href="http://4.bp.blogspot.com/-Yf1YMD4skiE/TcsJuh9IRxI/AAAAAAAAAds/jYcv5JAsck0/s1600/newhome.png"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5605584856186111762" src="http://4.bp.blogspot.com/-Yf1YMD4skiE/TcsJuh9IRxI/AAAAAAAAAds/jYcv5JAsck0/s320/newhome.png" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 320px; height: 183px;"/></a><br/><br/>Un cambio che vede il passaggio ad un nuovo CMS (Drupal), una grande attenzione ai contenuti, e una grandissima attenzione all'aspetto grafico.<br/>Alcuni aspetti non sono ancora stabili al 100% ma abbiamo deciso di non temporeggiare ulteriormente, e di verificare insieme agli utenti dove occorre intervenire.<br/><br/>Detto questo, non resta che godersi il sito.<br/><br/>Enjoy!<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-2889023338023330307?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="11 May 2011 22.10">2011-05-11T22:10:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="Javascript"/><category scheme="http://www.blogger.com/atom/ns#" term="web design"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="web"/><category scheme="http://www.blogger.com/atom/ns#" term="html"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="css"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-3740489504280361112</id><link href="http://lorenzosfarra.blogspot.com/2011/04/ubuntu-party-2011-schio.html" rel="alternate" type="text/html"/><title>Ubuntu Party 2011 @ Schio</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Mancano ormai pochi giorni al primo <span style="font-weight: bold;">Ubuntu Party</span> italiano.<br/>L'evento si terrà a Schio, in provincia di Vicenza, il <span>30 Aprile e 1 Maggio 2011</span>. Organizzato dalla <a href="http://www.ubuntu-it.org">Comunità Italiana Ubuntu</a>, da <span style="font-style: italic;">AVi LUG</span> e da Piazza Telematica del Comune di Schio.<br/><br/>Il nostro Fabio Colinelli ha preparato una piccola presentazione dell'evento:<br/><br/><br/><br/>Partecipate numerosi!<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-3740489504280361112?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="20 April 2011 09.33">2011-04-20T09:33:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu party"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-4177140220785865098</id><link href="http://lorenzosfarra.blogspot.com/2010/04/ubuntu-lucid-lynx-countdown.html" rel="alternate" type="text/html"/><title>Ubuntu Lucid Lynx Countdown</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Sono <a href="http://www.ubuntu.com/getubuntu/countdown">ufficialmente</a> stati selezionati i quattro design per il countdown che accompagnerà il rilascio di <span style="font-weight: bold;">Ubuntu 10.04</span>.<br/><br/><a href="http://www.ubuntu.com/"><img alt="Ubuntu: For Desktops, Servers, Netbooks and in the cloud" border="0" height="150" src="http://www.ubuntu.com/files/countdown/static.png" width="180"/></a><br/><br/>Sono 3 versioni javascript e un'immagine singola (sopra) per chi non può o non vuole utilizzare javascript. Il codice per inserirlo nel proprio blog è semplicissimo e riportato nella <a href="http://www.ubuntu.com/getubuntu/countdown">pagina del sito ufficiale dedicata</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-4177140220785865098?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="07 April 2010 18.56">2010-04-07T18:56:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu 10.04"/><category scheme="http://www.blogger.com/atom/ns#" term="lucid lynx"/><category scheme="http://www.blogger.com/atom/ns#" term="grafica"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-421927339154705259</id><link href="http://lorenzosfarra.blogspot.com/2010/08/forum-admins-work.html" rel="alternate" type="text/html"/><title>forum admins @ work</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Capita ogni tanto, ma proprio ogni tanto, di incontrarsi con coloro che lavorano su ubuntu-it e che si trovano a Roma, dove lavoro, o nei dintorni. Per questa sera abbiamo organizzato (con sottofondo della partita della nazionale) un incontro tra admins del <a href="http://forum.ubuntu-it.org/">forum di ubuntu-it</a>, con <a href="http://wiki.ubuntu-it.org/Volans">volans</a> (a casa sua, tra l'altro).<br/>Verranno apportate delle modifiche al forum attuale e continueranno i test per la prossima piattaforma.<br/>Non ci credete ancora? Ok...ecco a voi la prova fotografica presa con cheese..:<br/><br/><a href="http://2.bp.blogspot.com/_GzY5GuLhi6I/TGGcQIdaA4I/AAAAAAAAAcA/hn51uBToVJU/s1600/adminsAtwork.png"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5503852020586120066" src="http://2.bp.blogspot.com/_GzY5GuLhi6I/TGGcQIdaA4I/AAAAAAAAAcA/hn51uBToVJU/s320/adminsAtwork.png" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 240px;"/></a><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-421927339154705259?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="10 August 2010 18.21">2010-08-10T18:21:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="smf"/><category scheme="http://www.blogger.com/atom/ns#" term="meeting"/><category scheme="http://www.blogger.com/atom/ns#" term="forum"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-4813933719173999284</id><link href="http://lorenzosfarra.blogspot.com/2010/04/laquila-1-anno-dopo.html" rel="alternate" type="text/html"/><title>L'Aquila - 1 anno dopo</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Stasera alle ore 24:00 partirà il corteo dalla Fontana Luminosa che arriverà in Piazza Duomo alle ormai dannatamente famose 3:32 per ricordare le vittime del terremoto, e per riunire nuovamente insieme chi lo ha vissuto.<br/><br/><a href="http://profile.ak.fbcdn.net/v227/44/17/n1428675917_5680.jpg"><img alt="" border="0" src="http://profile.ak.fbcdn.net/v227/44/17/n1428675917_5680.jpg" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 200px; height: 281px;"/></a><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-4813933719173999284?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="05 April 2010 18.52">2010-04-05T18:52:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="speranza"/><category scheme="http://www.blogger.com/atom/ns#" term="terremoto"/><category scheme="http://www.blogger.com/atom/ns#" term="l'aquila"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-4845611750806260366</id><link href="http://lorenzosfarra.blogspot.com/2010/05/ubuntu-it-meeting-bologna-22-23-maggio.html" rel="alternate" type="text/html"/><title>ubuntu-it-meeting Bologna - 22, 23 Maggio 2010</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Siamo arrivati al quarto <i>meeting</i> della <a href="http://www.ubuntu-it.org/">comunità italiana di Ubuntu</a>, dove i componenti dei gruppi che sono l'anima di <b>ubuntu-it </b>si riuniscono per discutere dei gruppi stessi, dei loro progetti, del futuro della comunità, con talk tecnici e organizzativi...e ovviamente per ritrovarsi insieme!<br/><br/><img alt="" border="0" id="BLOGGER_PHOTO_ID_5472688045320350258" src="http://1.bp.blogspot.com/_GzY5GuLhi6I/S_LkyBvYqjI/AAAAAAAAAa8/BvYUjT2xIPQ/s320/umeeting.png" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 320px; height: 65px;"/><div>Purtroppo non potrò essere presente, ma seguirò (se non ci saranno impedimenti) il live del meeting tramite <a href="http://twitter.com/ubuntuitmeeting">twitter</a> e/o <a href="http://identi.ca/ubuntuitmeeting">identi.ca</a>, oltre ovviamente a leggere i verbali delle riunioni nei giorni successivi.</div><div><a href="http://wiki.ubuntu-it.org/UbuntuItMeeting">Buon divertimento</a>... :)</div><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-4845611750806260366?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="18 May 2010 18.56">2010-05-18T18:56:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it-meeting"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-4881183103039447657</id><link href="http://lorenzosfarra.blogspot.com/2011/11/3-script-in-python-semplici-e-utili-per.html" rel="alternate" type="text/html"/><title>3+ script in python semplici e utili per sviluppatori</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Avete scritto un solo file o un intero progetto i cui sorgenti sono suddivisi tra 100 directory e subdirectory?<br/>Avete dimenticato di includere una delle licenze GPL all'inizio del file?<br/>Avete dimenticato la <span style="font-style: italic;">shebang</span> a inizio file?<br/>Avete dimenticato di includere la vim modeline alla fine dei vostri file?<br/><br/>Allora questa serie di (per ora) 3 script scritti in <span style="font-weight: bold;">python</span> vi potrebbe essere utile.<br/>Segnalate tranquillamente errori/miglioramenti/idee per altri script.<br/>Sono nati in modo molto spartano per esigenze personali, <a href="https://code.launchpad.net/%7Elorenzosfarra/+junk/simpledevelutils">li pubblico</a> perchè potrebbero servire ad altre persone:<br/><br/><span style="font-weight: bold; font-family: courier new;">bzr branch </span><span class="branch-url" style="font-weight: bold; font-family: courier new;">lp:~lorenzosfarra/+junk/simpledevelutils</span><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-4881183103039447657?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="27 November 2011 15.11">2011-11-27T15:11:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="Programmazione"/><category scheme="http://www.blogger.com/atom/ns#" term="python"/><category scheme="http://www.blogger.com/atom/ns#" term="sviluppo"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-6195078553334016428</id><link href="http://lorenzosfarra.blogspot.com/2011/04/17532-ore-dopo.html" rel="alternate" type="text/html"/><title>17532 ore dopo</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Fiaccolata a e per L'Aquila.<br/><br/><a href="http://3.bp.blogspot.com/-TV8LvSk1A3g/TZx1vBTM_GI/AAAAAAAAAdU/gOa7xfIQk8Q/s1600/aq.jpg"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5592474287950593122" src="http://3.bp.blogspot.com/-TV8LvSk1A3g/TZx1vBTM_GI/AAAAAAAAAdU/gOa7xfIQk8Q/s320/aq.jpg" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 320px; height: 185px;"/></a><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-6195078553334016428?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="06 April 2011 14.13">2011-04-06T14:13:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="terremoto"/><category scheme="http://www.blogger.com/atom/ns#" term="l'aquila"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-6370117678180307540</id><link href="http://lorenzosfarra.blogspot.com/2010/06/googlecl-google-command-line-tool.html" rel="alternate" type="text/html"/><title>GoogleCL: Google Command Line Tool</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><strong>GoogleCL</strong> è uno strumento creato da <strong>Google</strong> per interagire con alcuni dei suoi servizi direttamente dalla linea di comando.<br/><br/>Se si vuole aggiungere un contatto, un evento, un articolo sul blog Blogger (cosa che sto provando proprio per questo articolo), sarà possibile farlo quindi con un comando specifico. Questo articolo ad esempio, dopo aver creato il file post.html con il contenuto, è stato pubblicato con il comando:<br/><pre class="python" name="code"><br/>google blogger post --tags &quot;GoogleCL, terminale, linea di comando, Linux, Google&quot; --title &quot;GoogleCL: Google Command Line Tool&quot; post.html</pre>L'applicazione è scritta in python ed è già pronto un .deb, oltre ai sorgenti, sulla <a href="http://code.google.com/p/googlecl/">pagina del progetto</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-6370117678180307540?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="19 June 2010 11.36">2010-06-19T11:36:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="linea di comando"/><category scheme="http://www.blogger.com/atom/ns#" term="GoogleCL"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="terminale"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7250182911460176603</id><link href="http://lorenzosfarra.blogspot.com/2010/08/ubuntu-it-ha-un-nuovo-contact.html" rel="alternate" type="text/html"/><title>ubuntu-it ha un nuovo contact</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Milo Casagrande è il nuovo contact di <span style="font-weight: bold;">ubuntu-it</span>.<br/>Complimenti a Milo e mille volte <span style="font-style: italic;">grazie</span> a Matthew East per il lavoro svolto in tutti questi anni da contact e non solo.<br/>La notizia ufficiale è consultabile sul sito web di <a href="http://www.ubuntu-it.org/news/304/32/Il-nuovo-contact-di-ubuntu-it.shtml">ubuntu-it</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7250182911460176603?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="13 August 2010 13.32">2010-08-13T13:32:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="comunità"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7265215753438252086</id><link href="http://lorenzosfarra.blogspot.com/2011/01/bash-tip-impostare-redirezione-output.html" rel="alternate" type="text/html"/><title>bash tip: impostare redirezione output dall'interno di uno script</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Piccola ma utile tip.<br/>Se si ha per qualche motivo la necessità di impostare la redirezione dell'output di uno script (<span style="font-style: italic;">stdout</span> e/o <span style="font-style: italic;">stderr</span>) senza utilizzare gli operatori per la redirezione (come <a href="http://www.pluto.it/files/ildp/HOWTO/Bash-Prog-Intro-HOWTO/Bash-Prog-Intro-HOWTO-3.html">ben descritto</a> per esempio sul sito dell'ILDP) dall'interno dello script o direttamente dalla linea di comando, ecco una possibile soluzione:<br/><br/><pre class="php" name="code"><br/>#!/bin/sh<br/><br/>exec &gt; prova.log 2 &gt; &amp;1<br/><br/>echo &quot;queste due linee stampate&quot;<br/>echo &quot;andranno in prova.log&quot;<br/></pre><div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7265215753438252086?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="23 January 2011 14.23">2011-01-23T14:23:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="linea di comando"/><category scheme="http://www.blogger.com/atom/ns#" term="bash"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="terminale"/><category scheme="http://www.blogger.com/atom/ns#" term="script"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7362331718943018991</id><link href="http://lorenzosfarra.blogspot.com/2010/09/iuseubuntubecause.html" rel="alternate" type="text/html"/><title>#iuseubuntubecause</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Il <a href="http://design.canonical.com">Design Team di Canonical</a> ha lanciato un'<a href="http://design.canonical.com/2010/09/why-do-you-use-ubuntu/">interessante iniziativa</a> con lo scopo di migliorare il <a href="http://www.ubuntu.com">sito di Ubuntu</a> e mettere in luce i motivi per cui usare la distribuzione stessa sottolineando le caratteristiche del prodotto.<br/><br/><a href="http://design.canonical.com/wp-content/uploads/2010/09/iloveubuntubecause-300x208.png"><img alt="" border="0" src="http://design.canonical.com/wp-content/uploads/2010/09/iloveubuntubecause-300x208.png" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 300px; height: 208px;"/></a><br/><br/>Da qui l'idea di invitare gli utenti a inviare un tweet (<span style="font-weight: bold;">twitter</span> o <span style="font-weight: bold;">identi.ca</span>) con il tag <span style="font-style: italic;">#iuseubuntubecause</span> e mostrarlo nel sito web, dando voce alla comunità sul sito stesso. Già è stato fatto un test interessante (<a href="http://twitter.com/#search?q=%23iuseubuntubecause">twitter</a> / <a href="http://identi.ca/tag/iuseubuntubecause">identi.ca</a>).<br/><br/>In realtà l'idea non è completamente nuova, in quanto microsoft aveva introdotto un <a href="http://www.microsoft.com/windows/social/">servizio simile da tempo per il suo Windows 7</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7362331718943018991?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="03 September 2010 08.04">2010-09-03T08:04:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="identi.ca"/><category scheme="http://www.blogger.com/atom/ns#" term="comunità"/><category scheme="http://www.blogger.com/atom/ns#" term="twitter"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="canonical"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7468617280613059923</id><link href="http://lorenzosfarra.blogspot.com/2010/10/ubuntu-1010-in-arrivo.html" rel="alternate" type="text/html"/><title>Ubuntu 10.10 in arrivo</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><span style="font-weight: bold;">Ci siamo quasi.</span><br/><a href="http://www.ubuntu.com/"><img alt="The next version of Ubuntu is coming soon" border="0" height="150" src="http://www.ubuntu.com/countdown/banner1.png" width="180"/></a><br/><br/>La Comunità di ubuntu-it è pronta per l'arrivo di <span style="font-weight: bold;">Maverick Meerkat</span>.<br/>Utilizzo questa <span style="font-style: italic;">release</span> dalla versione Beta, e devo ammettere che è davvero sorprendente.<br/><a href="https://wiki.ubuntu.com/MaverickMeerkat/TechnicalOverview">Appuntamento a domenica</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7468617280613059923?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="08 October 2010 11.45">2010-10-08T11:45:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="maverick meerkat"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu 10.10"/><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu-it"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7529935514759873995</id><link href="http://lorenzosfarra.blogspot.com/2011/10/rip-ritchie.html" rel="alternate" type="text/html"/><title>RIP Ritchie</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Ero indeciso se scrivere 2 righe ma, visti i precedenti degli ultimi giorni, questo altrettanto (e probabilmente più) grande uomo merita una piccola citazione.<br/>Sarò onesto, non avevo in mente il suo viso, o meglio l'ho sempre associato a questa figura :) :<br/><br/><a href="http://ecx.images-amazon.com/images/I/51TGEPRTDNL._SL500_AA300_.jpg"><img alt="" border="0" src="http://ecx.images-amazon.com/images/I/51TGEPRTDNL._SL500_AA300_.jpg" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 300px; height: 300px;"/></a><br/><br/>Grazie per UNIX, il linguaggio C, il libro &quot;The C Programming Language&quot; (detto K&amp;R).<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7529935514759873995?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="13 October 2011 16.26">2011-10-13T16:26:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="C"/><category scheme="http://www.blogger.com/atom/ns#" term="Unix"/><category scheme="http://www.blogger.com/atom/ns#" term="RIP"/><category scheme="http://www.blogger.com/atom/ns#" term="Ritchie"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-7826948554429351164</id><link href="http://lorenzosfarra.blogspot.com/2012/01/debutto-tra-le-app-android.html" rel="alternate" type="text/html"/><title>Debutto tra le app Android</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Facebook Friends Monitor: questo il nome della mia prima app nativa per Android (&gt;=2.3).<br/>La pagina del progetto è consultabile sul mio <a href="http://lorenzosfarra.dyndns.org/facebookmonitor.php">sito web</a>, e spiega con più dettagli cos'è.<br/><br/><br/><a href="http://lorenzosfarra.dyndns.org/images/mobileapps/facebookmonitorpresentation.png"><img alt="" border="0" src="http://lorenzosfarra.dyndns.org/images/mobileapps/facebookmonitorpresentation.png" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; cursor: hand; width: 540px; height: 500px;"/></a><br/><br/>In breve, l'applicazione si compone di alcune <span style="font-weight: bold;">activity</span> e un <span style="font-weight: bold;">service</span> che monitora gli amici di <span style="font-weight: bold;">Facebook</span> e il loro <span style="font-style: italic;">status</span> sulla chat, in modo che (in base a un sistema di priorità assegnate agli amici stessi) l'utente riceva una notifica quando un suo amico &quot;monitorato&quot; è disponibile per chattare.<br/><br/>Maggiori informazioni nella <a href="http://lorenzosfarra.dyndns.org/facebookmonitor.php">pagina del progetto</a>.<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-7826948554429351164?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="21 January 2012 14.20">2012-01-21T14:20:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="Java"/><category scheme="http://www.blogger.com/atom/ns#" term="facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="iphone"/><category scheme="http://www.blogger.com/atom/ns#" term="android"/><category scheme="http://www.blogger.com/atom/ns#" term="sviluppo"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/"><id>tag:blogger.com,1999:blog-18455595.post-931659294751701158</id><link href="http://lorenzosfarra.blogspot.com/2011/10/intercettazioni-di-cultura.html" rel="alternate" type="text/html"/><title>intercettazioni di cultura</title><summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Non so cosa cercano gli utenti di Wikipedia, questo è un DL che rispetta la privacy in favore della popolazione italiana tutta. <sup>1</sup><br/><br/>http://it.wikipedia.org/wiki/Wikipedia:Comunicato_4_ottobre_2011<br/><br/><br/><br/><sup>1</sup>: Questo è come avreste visto il messaggio corretto dai diretti interessati.<br/>La mia versione originale era: non ho parole per lo scempio, da quando &quot;DL&quot; per esteso vuol dire &quot;puttanata&quot;?<div class="blogger-post-footer"><img alt="" height="1" src="https://blogger.googleusercontent.com/tracker/18455595-931659294751701158?l=lorenzosfarra.blogspot.com" width="1"/></div></div></summary><updated planet:format="04 October 2011 18.58">2011-10-04T18:58:00Z</updated><category scheme="http://www.blogger.com/atom/ns#" term="italia"/><category scheme="http://www.blogger.com/atom/ns#" term="wikipedia"/><category scheme="http://www.blogger.com/atom/ns#" term="governo"/><category scheme="http://www.blogger.com/atom/ns#" term="intercettazioni"/><category scheme="http://www.blogger.com/atom/ns#" term="Polemica"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><source><id>tag:blogger.com,1999:blog-18455595</id><category term="flash"/><category term="pausa"/><category term="Fedora"/><category term="Irc"/><category term="ubuntu developer week"/><category term="lotuslive"/><category term="malware"/><category term="asus"/><category term="adobe"/><category term="sondaggi"/><category term="Windows"/><category term="A24"/><category term="Cups"/><category term="Apple"/><category term="Polemica"/><category term="Beryl"/><category term="chrome"/><category term="midori"/><category term="Gutsy Gibbon"/><category term="SquirrelFish"/><category term="cocoa"/><category term="speranza"/><category term="intercettazioni"/><category term="Compiz"/><category term="ede"/><category term="Dell"/><category term="gazelle"/><category term="freebsd"/><category term="Apache"/><category term="launchpad"/><category term="sicurezza"/><category term="trident"/><category term="smf"/><category term="opera"/><category term="facebook"/><category term="ubuntu 8.04"/><category term="easter egg"/><category term="karmic koala"/><category term="Javascript"/><category term="enchanted webmail"/><category term="ubuntu-it"/><category term="ubuntu 9.10"/><category term="Word"/><category term="Gnome"/><category term="obama"/><category term="OpenSolaris"/><category term="carbon"/><category term="Firefox"/><category term="ubuntu global jam"/><category term="G1"/><category term="smarty"/><category term="Django"/><category term="segnalazione"/><category term="design"/><category term="america"/><category term="ubuntu party"/><category term="mp3"/><category term="sviluppo"/><category term="Intel"/><category term="cpython"/><category term="ubuntu comunity council"/><category term="svn"/><category term=".NET"/><category term="Unix"/><category term="comunità"/><category term="statistica"/><category term="linea di comando"/><category term="Postfix"/><category term="red hat"/><category term="Lamentela"/><category term="usa"/><category term="urxd"/><category term="rhythmbox"/><category term="SOA"/><category term="torvalds"/><category term="inotes"/><category term="etoile"/><category term="gutsy"/><category term="Censura"/><category term="nokia"/><category term="webkit"/><category term="shell"/><category term="leopard"/><category term="Composite"/><category term="ext4"/><category term="AMD"/><category term="hardware"/><category term="Ati"/><category term="social network"/><category term="Go"/><category term="HP"/><category term="revision control software"/><category term="artwork"/><category term="vpro"/><category term="Imap"/><category term="warty warthog"/><category term="cloud computing"/><category term="usb"/><category term="howto"/><category term="Pidgin"/><category term="Server"/><category term="gtk"/><category term="meeting"/><category term="l'aquila"/><category term="Fun"/><category term="file system"/><category term="Google"/><category term="Dovecot"/><category term="Hewlett-Packard"/><category term="ie"/><category term="Open Source"/><category term="phantom"/><category term="grafica"/><category term="PHP"/><category term="informazione"/><category term="jquery"/><category term="wikipedia"/><category term="vita"/><category term="ubuntu-it-meeting"/><category term="RIP"/><category term="Linux"/><category term="Moonlight"/><category term="netbook"/><category term="twitter"/><category term="kernel"/><category term="identi.ca"/><category term="Ubuntu"/><category term="W l'Italia"/><category term="rox desktop"/><category term="credi solo in quello che vedi"/><category term="ipv6"/><category term="Silverlight"/><category term="mobile"/><category term="automatix"/><category term="Deskbar"/><category term="ubuntu 11.04"/><category term="Novell"/><category term="Thinkpad"/><category term="web"/><category term="C"/><category term="ipv4"/><category term="supporto"/><category term="plasma"/><category term="gnome 2.28"/><category term="microblogging"/><category term="terminale"/><category term="System Call"/><category term="windows 7"/><category term="bazaar"/><category term="iphone"/><category term="css"/><category term="ubuntu open week"/><category term="gnome 3.0"/><category term="Mac"/><category term="sun"/><category term="X.Org"/><category term="Mono"/><category term="GoogleCL"/><category term="vim"/><category term="backup"/><category term="mark shuttleworth"/><category term="Off-Topic"/><category term="ext3"/><category term="fvwm"/><category term="mysql"/><category term="indirizzi IP"/><category term="vmware"/><category term="bzr"/><category term="sourceforge"/><category term="Kde"/><category term="Gmail"/><category term="governo"/><category term="bash"/><category term="crtime"/><category term="natty"/><category term="apachecon"/><category term="Open Office"/><category term="terremoto"/><category term="android"/><category term="Hardy Heron"/><category term="html"/><category term="unite"/><category term="ubuntu 10.04"/><category term="Lenovo"/><category term="lgpl"/><category term="Qt"/><category term="Tux"/><category term="wso2"/><category term="karmic"/><category term="web design"/><category term="Processori"/><category term="MacBook"/><category term="Free Software"/><category term="maverick meerkat"/><category term="Gaim"/><category term="TCP/IP"/><category term="hardy"/><category term="forum"/><category term="unladen swallow"/><category term="Gcc"/><category term="console"/><category term="linux day"/><category term="trolltech"/><category term="ibm"/><category term="Nasa"/><category term="powerpc"/><category term="Ubuntu 9.04"/><category term="python"/><category term="cms"/><category term="Mozilla"/><category term="browser"/><category term="script"/><category term="debian"/><category term="osor"/><category term="html 5"/><category term="Ritchie"/><category term="monodevelop"/><category term="database"/><category term="Mail"/><category term="office"/><category term="Internet"/><category term="italia"/><category term="internet explorer"/><category term="kubuntu"/><category term="nova"/><category term="ubuntu 10.10"/><category term="Jaunty Jackalope"/><category term="Programmazione"/><category term="Java"/><category term="gecko"/><category term="canonical"/><category term="stonehenge"/><category term="Feisty Fawn"/><category term="Atheros"/><category term="xfce"/><category term="OpenOffice.org"/><category term="drupal"/><category term="microsoft"/><category term="chromium"/><category term="ldxde"/><category term="lucid lynx"/><category term="Politica"/><category term="Roma"/><category term="landscape"/><author><name>Lorenzo Sfarra (lrnzsfr)</name><email>noreply@blogger.com</email></author><link href="http://lorenzosfarra.blogspot.com/" rel="alternate" type="text/html"/><link href="http://lorenzosfarra.blogspot.com/feeds/posts/default?alt=rss" rel="self" type="application/rss+xml"/><subtitle>Open Source, Sistemi Operativi, Programmazione, altro...</subtitle><title>Lorenzo Sfarra Blog</title><updated planet:format="06 March 2012 15.32">2012-03-06T15:32:11Z</updated><planet:format>rss20</planet:format><planet:http_etag>W/&quot;A0UCQ3ozfil7ImA9WhRbGUg.&quot;</planet:http_etag><planet:locale>it_IT.utf8</planet:locale><planet:http_last_modified>Sat, 11 Feb 2012 11:21:02 GMT</planet:http_last_modified><planet:bozo>false</planet:bozo><planet:encoding>xml</planet:encoding><planet:facewidth>70</planet:facewidth><planet:css-id>lorenzo-sfarra-twilight</planet:css-id><planet:face>twilight.png</planet:face><planet:items_per_page>60</planet:items_per_page><planet:name>Lorenzo Sfarra (twilight)</planet:name><planet:days_per_page>0</planet:days_per_page><planet:faceheight>100</planet:faceheight><planet:http_status>200</planet:http_status></source></entry>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment