<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>xoen-&gt;blog();</title>
	
	<link>http://www.xoen.org</link>
	<description>Open your mind! Free yourself...</description>
	<lastBuildDate>Mon, 28 May 2012 22:04:27 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/xoen-blog" /><feedburner:info uri="xoen-blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>38.03849</geo:lat><geo:long>14.02705</geo:long><item>
		<title>Menus in Rails with simple-navigation and Bootstrap</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/Py6xW89_r14/</link>
		<comments>http://www.xoen.org/2012/05/bootstrap-menus-in-rails/#comments</comments>
		<pubDate>Mon, 28 May 2012 21:57:49 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby gem]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1658</guid>
		<description><![CDATA[Add a navigation to a rails application is easy. In this tutorial you'll add a bootstrap menu to your Rails application in few minutes using the simple-navigation gem]]></description>
				<content:encoded><![CDATA[<h3 style="text-align: center;">Problem</h3>
<p>Almost every application needs a menu (at least one). For simple menus it could be tempting the idea to write our menu helpers but if we have more than one menu or our menu is complex we could prefer to use something ready and well tested.</p>
<h3 style="text-align: center;">Additional problem</h3>
<p style="text-align: left;">If we want to use the Twitter&#8217;s Bootstrap framework write the right markup with the right classes could be boring (and we know Rails programming is all about fun, right?)</p>
<p style="text-align: center;"><img class="size-medium wp-image-1701" title="Example of dropdown menu using Bootstrap" src="http://www.xoen.org/wp-content/uploads/2012/05/bootstrap-dropdown-menu-300x277.png" alt="Bootstrap dropdown menu" width="300" height="277" /></p>
<h3 style="text-align: center;">Solution</h3>
<p><a title="simple-navigation documentation" href="https://github.com/andi/simple-navigation/wiki/" target="_blank">simple-navigation</a> is a gem that<span id="more-1658"></span> gives us a simple DSL (Domain Specific Language) to define menus and an helper to render these menus in views.<br />
Every menu is defined in a single file (DRY!) and with the <a title="simple-navigation-bootstrap code" href="https://github.com/pdf/simple-navigation-bootstrap" target="_blank">simple-navigation-bootstrap</a> gem we can even generate the markup for Bootstrap menus easily.</p>
<h3 style="text-align: center;">Installation</h3>
<p>First of all we need to install the simple-navigation and simple-navigation-bootstrap gems (I&#8217;m assuming your application already loads the Bootstrap&#8217;s stylesheets and javascripts, if you don&#8217;t use bootstrap just install the simple-navigation gem).</p>
<p>Add the following line to your Gemfile:</p>
<pre class="brush: ruby; title: ; notranslate">
# Gemfile
gem 'simple-navigation'
gem 'simple-navigation-bootstrap'
</pre>
<p>and install them:</p>
<pre class="brush: bash; title: ; notranslate">
$bundle install
</pre>
<p>Once installed you can run the generator to generate the default menu configuration:</p>
<pre class="brush: bash; title: ; notranslate">
$bundle exec rails g navigation_config
</pre>
<p>At this point restart your rails server if it&#8217;s running.</p>
<h3 style="text-align: center;">Menu configuration</h3>
<p>Well, the generator write a <em>navigation.rb</em> file in your config directory, this is the file where all the magic happens.</p>
<p>The file is well documented but I suggest you to have a look at the simple-navigation wiki for more information.</p>
<pre class="brush: ruby; title: ; notranslate">
SimpleNavigation::Configuration.run do |navigation|
  # Use Bootstrap renderer provided by the
  # simple-navigation-bootstrap gem
  navigation.renderer = SimpleNavigation::Renderer::Bootstrap

  # Item keys end up to be list items' IDs.
  # This setting avoids it
  navigation.autogenerate_item_ids = false
</pre>
<p>First of all we say to simple-navigation to use the Bootstrap renderer. A renderer is a class that build the HTML markup for us, in this case generate the <a title="Bootstrap's documentation for navs" href="http://twitter.github.com/bootstrap/components.html#navs" target="_blank">markup needed by Bootstrap</a> (You can remove this line if you don&#8217;t use Bootstrap).</p>
<p>The second thing I do here is to leave off the IDs from the menu markup because I don&#8217;t use them.</p>
<p>Now inside this block we can use the navigation variable to actually add navigation items to the menu:</p>
<pre class="brush: ruby; title: ; notranslate">
# Define the primary navigation
navigation.items do |primary|
  # Bootstrap classes for tabbed menu
  primary.dom_class = &quot;nav nav-tabs&quot;

  primary.item :key_products, 'Products',
                              products_path,
                              :if =&gt; lambda { can? :index, Product }

  # User menu
  primary.item :key_1, 'User', '#' do |sub_nav|
    sub_nav.item :key_1_1, 'Profile', user_profile_path
    sub_nav.item :key_1_2, 'Logout', logout_path
  end
end
</pre>
<p>As you can see in the items block we first add some class to the navigation element (these are Bootstrap&#8217;s classes) and then add some menu item, in this case a &#8220;Products&#8221; item and a &#8220;User&#8221; item.<br />
There are at least 3 interesting things to note here:</p>
<ol>
<li>In the &#8220;User&#8221; item we pass a block and define menu items inside the &#8220;User&#8221; second-level navigation.</li>
<li>We pass a lambda to the :if option of the &#8220;Products&#8221; menu item. The menu item will be added only if the result is true, in this case I&#8217;m using the can? helper provided by the CanCan gem. Yes you have access to all your beloved helpers here <img src='http://www.xoen.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>The Bootstrap renderer will add the right classes and markup for us.</li>
</ol>
<p>At this point I&#8217;m sure you&#8217;re wondering how you can actually show the menu.</p>
<h3 style="text-align: center;">Show the menu</h3>
<p>To show the menu you need to add a call to the render_navigation helper method provided by the simple-navigation gem.</p>
<p>For example a good place where to render your menu is in the layout:</p>
<pre class="brush: ruby; title: ; notranslate">
&lt;%= render_navigation(:expand_all =&gt; true) %&gt;
</pre>
<p>The :expand_all option say to simple-navigation to put the submenu&#8217;s items even if not actives (without this option you&#8217;ll end up with empty submenus)</p>
<h3 style="text-align: center;">More than one menu?</h3>
<p>As I said, simple navigation allow you to define more than one navigation, for example an administration menu to show only in a certain area of your application.</p>
<p>What you have to do is just create another file under /config, say <em>config/another_navigation.rb, </em>define your navigation there and then in your view add the following line:</p>
<pre class="brush: ruby; title: ; notranslate">
&lt;%= render_navigation(:context =&gt; :another, :expand_all =&gt; false) %&gt;
</pre>
<p>Here you specify the context option which is the part before the &#8220;_navigation.rb&#8221; in the name of the menu configuration.</p>
<h3 style="text-align: center;">Conclusion</h3>
<p>How we&#8217;ve seen add a navigation to our Rails application is not so hard, we don&#8217;t need to reinvent the wheel and write lines and lines of HTML markup paying attention to not forget some class in the process.</p>
<p>For more information you can read the good gems&#8217; documentation but at this point you should be able to add (in few minutes) a navigation to your Rails application <img src='http://www.xoen.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2012/05/bootstrap-menus-in-rails/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1658&amp;md5=791024244058df1362ac279a6b0dc78f" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Py6xW89_r14:GOnlGzy7GkM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Py6xW89_r14:GOnlGzy7GkM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Py6xW89_r14:GOnlGzy7GkM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Py6xW89_r14:GOnlGzy7GkM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Py6xW89_r14:GOnlGzy7GkM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Py6xW89_r14:GOnlGzy7GkM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Py6xW89_r14:GOnlGzy7GkM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Py6xW89_r14:GOnlGzy7GkM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/Py6xW89_r14" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2012/05/bootstrap-menus-in-rails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2012%2F05%2Fbootstrap-menus-in-rails%2F&amp;language=it_IT&amp;category=text&amp;title=Menus+in+Rails+with+simple-navigation+and+Bootstrap&amp;description=Problem+Almost+every+application+needs+a+menu+%28at+least+one%29.+For+simple+menus+it+could+be+tempting+the+idea+to+write+our+menu+helpers+but+if+we+have+more+than...&amp;tags=bootstrap%2Cmenu%2Cnavigation%2Crails%2Cruby+gem%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2012/05/bootstrap-menus-in-rails/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=bootstrap-menus-in-rails</feedburner:origLink></item>
		<item>
		<title>Poker per Android</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/_GiRZgy7l38/</link>
		<comments>http://www.xoen.org/2011/11/poker-per-android/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 17:37:18 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[giochi android]]></category>
		<category><![CDATA[poker android]]></category>
		<category><![CDATA[texas hold’em]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1603</guid>
		<description><![CDATA[Articolo dedicato agli amanti del poker su smartphone. Tre applicazioni per android: WSOP Hold’em Legend, Zynga Poker e WPT Texas Hold’em.]]></description>
				<content:encoded><![CDATA[<p>Giocare a poker sui dispositivi Android è diventato uno dei passatempi preferiti dagli utenti di tutto il mondo; l’alta qualità raggiunta ultimamente dai giochi, unita alla possibilità di giocare ovunque sono due delle caratteristiche che hanno reso il <a title="Il meglio del poker online" href="http://www.pokerlistings.it/" target="_blank"><strong>poker</strong></a> sugli smartphone Android così popolare.</p>
<p><a style="text-align: center;" href="http://www.xoen.org/wp-content/uploads/2011/11/wsop_hold_em_legend.jpeg" target="_blank"><img class="size-medium wp-image-1614 alignright" title="WSOP Hold'em Legend" src="http://www.xoen.org/wp-content/uploads/2011/11/wsop_hold_em_legend-300x200.jpg" alt="Screenshot WSOP Hold'em Legend" width="300" height="200" /></a>Tra i migliori titoli a disposizione <span id="more-1603"></span>degli utenti, uno è sicuramente <strong>WSOP Hold’em Legend</strong>, l’applicazione ufficiale delle World Series of Poker attraverso la quale si può iniziare una vera e propria carriera da professionista dagli esordi fino al final table delle WSOP.  Durante la modalità carriera affronterete interessanti avversari, tutti con i loro video di presentazione e vari tell personalizzati che rendono il gioco più coinvolgente possibile. Le mani migliori possono facilmente salvate grazie all’interfaccia grafica intuitiva. Ottima anche la fruibilità online con altri utenti anche se non è previsto di chattare al tavolo mentre si gioca. Insomma forse il <a title="Tipi di giochi poker esistenti" href="http://www.pokerlistings.it/gioco-poker-tipi" target="_blank"><strong>miglior gioco di poker</strong></a> esistente al momento.</p>
<p><a href="http://www.xoen.org/wp-content/uploads/2011/11/zynga_poker.jpeg" target="_blank"><img class="size-medium wp-image-1628 alignleft" title="Zynga Poker" src="http://www.xoen.org/wp-content/uploads/2011/11/zynga_poker-300x187.jpg" alt="Screenshot Zynga Poker" width="300" height="187" /></a>Altro titolo interessante è quello sviluppato da <strong>Zynga Poker</strong> che tra le novità consente di giocare senza doversi collegare necessariamente a Facebook. Tavoli da 5 a 9 giocatori, Tornei Sit’n go, ottima qualità grafica, chat al tavolo e naturalmente la possibilità di giocare a poker live con tutti gli utenti della piattaforma assolutamente in tempo reale. L’ultima versione del gioco ha eliminato alcune difficoltà che le prime versioni avevano incontrato, ma mantiene tutte le caratteristiche tecniche che hanno reso Zynga Poker famoso sul social network di Zuckenberg: chips gratuite al primo accesso e possibilità di partecipare all’estrazione settimanale di 1 milione di chips. Questa versione del texas hold’em viene preferita soprattutto da coloro che anche attraverso Facebook vogliono entrare a far parte di una vera e propria community di poker.</p>
<p>L’altra applicazione ufficiale è <strong>WPT Texas Hold’em  Showdown3</strong> (a pagamento) compatibile con tutte le versioni di Android che consente di giocare fino a 7 giocatori: questo titolo presenta una serie diversificata di location tra le quali spostarsi da Las Vegas a Montecarlo, qualità grafica 3D  e vari livelli di difficoltà tra i quali scegliere. Similmente a WSOP Hold’em Legend ogni personaggio utilizza tecniche e strategie di gioco diverse ed assume comportamenti diversi per cui gli utenti possono divertirsi con diversi approcci al gioco. L’interfaccia è estremamente semplice, così come i salvataggi e lo scorrimento del gioco.</p>
<p style="font-family: monospace; font-size: small; text-align: right;">[Articolo realizzato in collaborazione con i ragazzi di pokerlistings.it]</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2011/11/poker-per-android/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1603&amp;md5=992d9b2531cae94d747fd22446c96433" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_GiRZgy7l38:rHlVvS_stgo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_GiRZgy7l38:rHlVvS_stgo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_GiRZgy7l38:rHlVvS_stgo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_GiRZgy7l38:rHlVvS_stgo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_GiRZgy7l38:rHlVvS_stgo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_GiRZgy7l38:rHlVvS_stgo:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_GiRZgy7l38:rHlVvS_stgo:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_GiRZgy7l38:rHlVvS_stgo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/_GiRZgy7l38" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2011/11/poker-per-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2011%2F11%2Fpoker-per-android%2F&amp;language=it_IT&amp;category=text&amp;title=Poker+per+Android&amp;description=Giocare+a+poker+sui+dispositivi+Android+%C3%A8+diventato+uno+dei+passatempi+preferiti+dagli+utenti+di+tutto+il+mondo%3B+l%E2%80%99alta+qualit%C3%A0+raggiunta+ultimamente+dai+giochi%2C+unita+alla+possibilit%C3%A0+di+giocare+ovunque...&amp;tags=giochi+android%2Cpoker+android%2Ctexas+hold%E2%80%99em%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2011/11/poker-per-android/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=poker-per-android</feedburner:origLink></item>
		<item>
		<title>Nokia è morta, Android ringrazia!</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/-OZBvrPIg98/</link>
		<comments>http://www.xoen.org/2011/02/nokia-morta-android-ringrazia/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 06:40:51 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[comic]]></category>
		<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1560</guid>
		<description><![CDATA[Nokia si allea con Microsoft a sorpresa uccidendo in un colpo solo il sistema operativo MeeGo e se stessa. Google ed il suo Android ringraziano.]]></description>
				<content:encoded><![CDATA[<h3 style="text-align: center;">Riassunto dell&#8217;articolo</h3>
<p>Cos&#8217;è successo? In effetti pochi se lo spiegano. Perchè questo gesto insano? Perchè questo <a title="Nokia + Microsoft. Here we go! Ecco andate, andate a fa..." href="http://conversations.nokia.com/nokia-strategy-2011/">suicidio</a> inatteso?</p>
<h3 style="text-align: center;">Riassunto delle puntate precedenti</h3>
<ul>
<li>Nokia non riesce a stare dietro ai bimbiminkia con iPhone e all&#8217;avanzata di Android, si allea con Intel e dalle ceneri di Maemo e Moblin nasce <a title="Nokia U and my thought about multiple OSs and MeeGo inclusive development" href="http://www.xoen.org/2010/09/nokia-multiple-os-meego-inclusive-development/">MeeGo che promette faville</a></li>
<li>Il famigerato primo terminale MeeGo subisce slittamenti vari e non arriva</li>
<li>Intanto Google corteggia Nokia e propone Android come sistema operativo per i terminali Nokia (almeno una parte)</li>
<li>Nokia continua con la strategia &#8220;il terminale è mio ed il sistema operativo me lo faccio io&#8221; (A.K.A. &#8220;col cacchio che usiamo Android&#8221;)</li>
<li>Intanto alcuni topi (senza offesa) abbandonano la nave e a bordo sale un tizio ex-Microsoft, niente panico (i vicini dicono di lui che è un tipo apposto).</li>
</ul>
<h3 style="text-align: center;">La strategia Nokia per il 2011</h3>
<p>Il simpaticissimo Stephen Elop ha raccontato<span id="more-1560"></span> una simpaticissima storiella per rendere bene l&#8217;idea della non troppo simpatica situazione in cui Nokia si trova, eccola: &#8220;Un tizio entra in un caffè&#8230;&#8221;, no aspè, quella non c&#8217;entra ha raccontato qualcosa del genere &#8220;un tipo si trova in una piattaforma petrolifera in fiamme, se resta sulla piattaforma muore bruciato, se si butta in acqua muore assiderato&#8221;. Ecco, <strong>questa è la strategia di Nokia: morire</strong>.</p>
<h3 style="text-align: center;">Perchè? Perchè Windows Phone e non Android a questo punto?</h3>
<p>OK, potevo capire che sviluppavano un sistema operativo tutto loro <a title="Mi costruirò un sistema operativo tutto mio con black jack e squillo di lusso!" href="http://it.wikiquote.org/wiki/Futurama#Episodio_2.2C_La_serie_.C3.A8_atterrata">con black jack e squillo di lusso</a>&#8230;ma se alla fine hanno optato per un sistema operativo di terzi&#8230;<strong>perchè non Android?!</strong> Aspettiamo con ansia la rivelazione del quarto segreto di Fatima per avere risposta a questa domanda/mistero.</p>
<h3 style="text-align: center;">Le reazioni del mondo KDE</h3>
<p>Per chi non lo sapesse <a title="Nokia Qt" href="http://www.xoen.org/2009/01/nokia-qt/">Nokia tempo fa ha aquistato Trolltech</a>, ovvero l&#8217;azienda dietro le librerie Qt, librerie alla base del desktop enviroment KDE.<br />
Nel suddetto ambiente c&#8217;era tralaltro molta eccitazione per quel futuro promesso da Nokia in cui si sarebbero dovute scrivere applicazioni in Qt per GNU/Linux, Mac OS X, Windows, Symbian, MeeGo, frigoriferi e compagnia bella. Futuro promesso ma a questo punto andato a farsi friggere (le applicazioni per WP7 si dovranno scrivere con le librerie Microsoft&#8230;).</p>
<p>Inoltre alcuni si stanno chiedendo <strong>cosa ne sarà delle Qt e quindi di KDE</strong> (visto che, come dicevamo poco sopra, Nokia s&#8217;è suicidata). Ecco di cosa è pieno Planet KDE in questo momento:</p>
<ul>
<li>
<h4><a href="http://whilos.blogsite.org/?p=203">Nokia + Microsoft WTF</a></h4>
</li>
<li>
<h4><a href="http://whilos.blogsite.org/?p=203">LULZ, M$ p0wns Nokia</a></h4>
</li>
</ul>
<ul>
<li>
<h4><a href="http://www.layt.net/john/blog/odysseus/disruptive_times">Disruptive Times</a></h4>
</li>
</ul>
<ul>
<li>
<h4><a href="http://kamikazow.wordpress.com/2011/02/11/nokia%e2%80%99s-risk-with-microsoft-and-the-%e2%80%9cmobile-computer%e2%80%9d-loophole/">The bomb has hit&#8230;</a></h4>
</li>
<li>
<h4><a href="http://aseigo.blogspot.com/2011/02/sizing-up-field.html">Nokia’s risk with Microsoft and the “Mobile computer” loophole</a></h4>
</li>
<li>
<h4><a href="http://blauzahl.livejournal.com/23537.html">sizing up the field</a></h4>
</li>
<li>
<h4><a href="http://www.time-shift.de/wordpress/?p=421">Nokia &amp; Qt? Don&#8217;t panic.</a></h4>
</li>
<li>
<h4><a href="http://greeneg.blogspot.com/2011/02/qt-nokia-and-internet-rambling.html">Surprised about the surprises (Or why nokias deal was a logic step)</a></h4>
</li>
<li>
<h4><a href="http://greeneg.blogspot.com/2011/02/qt-nokia-and-internet-rambling.html">Qt, Nokia, and the Internet Rambling&#8230;..</a></h4>
</li>
</ul>
<p>A questo punto un <a title="DON'T PANIC" href="http://en.wikipedia.org/wiki/Don%27t_Panic_%28The_Hitchhiker%27s_Guide_to_the_Galaxy%29#Don.27t_Panic"><strong>DON&#8217;T PANIC</strong></a> ci sta tutto!</p>
<h3 style="text-align: center;">La mia reazione</h3>
<p>Qualcuno vuole un Nokia 5800 XpressMusic, in ottime condizioni! (Il <a title="Prova Google Nexus S" href="http://www.telefonino.net/Samsung/prove/n1753/Samsung-Nexus-S.html">Google Nexus S</a> appare alla luce di questo nuovo evento ancora più figo&#8230;)</p>
<h3 style="text-align: center;">Quasi dimenticavo&#8230;</h3>
<p>&#8230;se per sbaglio avete <strong>azioni Nokia</strong> (titolo NOK) <a title="Alleanza tra Nokia e Microsoft. Tonfo in Borsa." href="http://www.ilsole24ore.com/art/finanza-e-mercati/2011-02-11/nokia-allea-microsoft-contrastare-085207.shtml?uuid=AaEcfM7C"><strong>vendetele</strong> finchè siete in tempo</a>. (questo genere di mosse vengono definite dagli esperti di finanza, in gergo tecnico, <strong>cazzate</strong>)</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 368px; width: 1px; height: 1px; overflow: hidden;">Nokia si allea con Microsoft a sorpresa uccidendo in un colpo solo il sistema operativo MeeGo e Nokia stessa. Google ed il suo Android ringraziano.</div>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2011/02/nokia-morta-android-ringrazia/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1560&amp;md5=9709e896394b8a8c894e28c3f0285127" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=-OZBvrPIg98:yMVtfuVxERY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=-OZBvrPIg98:yMVtfuVxERY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=-OZBvrPIg98:yMVtfuVxERY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=-OZBvrPIg98:yMVtfuVxERY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=-OZBvrPIg98:yMVtfuVxERY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=-OZBvrPIg98:yMVtfuVxERY:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=-OZBvrPIg98:yMVtfuVxERY:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=-OZBvrPIg98:yMVtfuVxERY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/-OZBvrPIg98" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2011/02/nokia-morta-android-ringrazia/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2011%2F02%2Fnokia-morta-android-ringrazia%2F&amp;language=it_IT&amp;category=text&amp;title=Nokia+%C3%A8+morta%2C+Android+ringrazia%21&amp;description=Riassunto+dell%26%238217%3Barticolo+Cos%26%238217%3B%C3%A8+successo%3F+In+effetti+pochi+se+lo+spiegano.+Perch%C3%A8+questo+gesto+insano%3F+Perch%C3%A8+questo+suicidio+inatteso%3F+Riassunto+delle+puntate+precedenti+Nokia+non+riesce+a+stare+dietro+ai+bimbiminkia...&amp;tags=android%2Cmeego%2Cnokia%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2011/02/nokia-morta-android-ringrazia/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nokia-morta-android-ringrazia</feedburner:origLink></item>
		<item>
		<title>Ancora su diaspora (serve un invito?)</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/9t0VvD64F_U/</link>
		<comments>http://www.xoen.org/2011/02/inviti-diaspora/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 21:52:17 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[diaspora]]></category>
		<category><![CDATA[invito diaspora]]></category>
		<category><![CDATA[social network]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1547</guid>
		<description><![CDATA[Diaspora, il progetto di un social network libero, decentralizzato e rispettoso della privacy cresce bene. Potete richiedere un invito qui (ne ho TANTI!)...]]></description>
				<content:encoded><![CDATA[<p>Avevo già <a title="Diaspora – The code is out" href="http://www.xoen.org/2010/09/diaspora-developer-release/">parlato qui di Diaspora</a>, riassumento si tratta di un nuovissimo social network in cui la privacy non è un optional per la quale si deve sudare ore su strane impostazioni&#8230;<strong>i contatti non sono tutti uguali</strong> (proprio come nella realtà, ma guarda un po&#8217;) ed i propri contatti non vedono tutto ma solo quel che noi vogliamo vedano.</p>
<p>Nonostante manchi ancora di alcune funzionalità di base (messaggi privati, chat, pulsante &#8220;like&#8221;) e sia ancora in alpha trovo il progetto molto interessante; Mi piace la sua <strong>semplicità</strong>, il fatto che sia <strong>software libero</strong> e la comparsa continua di <strong>tante piccole novità di giorno in giorno</strong>.</p>
<p>Attualmente l&#8217;iscrizione a <a title="Diaspora" href="https://joindiaspora.com">Diaspora</a> non è aperta a tutti e <strong>serve un invito</strong>&#8230;se qualcuno vorrebbe usare questo nuovo strumento e ne vuole uno chieda pure qui <strong><sup>1</sup></strong>. Do you want to join Diaspora <img src='http://www.xoen.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ?</p>
<p>Dimenticavo, mi trovate <a title="Il mio account Diaspora" href="https://joindiaspora.com/people/31739">qui</a>.</p>
<p><strong><sup>1</sup></strong> Spero che una volta ricevuto il vostro invito ricambiate il favore mettendone qualcuno a disposizione qui!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2011/02/inviti-diaspora/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1547&amp;md5=f97595e3369fcd69bf7126f0c1661c5c" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9t0VvD64F_U:HzbJDincE-Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9t0VvD64F_U:HzbJDincE-Y:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9t0VvD64F_U:HzbJDincE-Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9t0VvD64F_U:HzbJDincE-Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9t0VvD64F_U:HzbJDincE-Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9t0VvD64F_U:HzbJDincE-Y:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9t0VvD64F_U:HzbJDincE-Y:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9t0VvD64F_U:HzbJDincE-Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/9t0VvD64F_U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2011/02/inviti-diaspora/feed/</wfw:commentRss>
		<slash:comments>121</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2011%2F02%2Finviti-diaspora%2F&amp;language=it_IT&amp;category=text&amp;title=Ancora+su+diaspora+%28serve+un+invito%3F%29&amp;description=Avevo+gi%C3%A0+parlato+qui+di+Diaspora%2C+riassumento+si+tratta+di+un+nuovissimo+social+network+in+cui+la+privacy+non+%C3%A8+un+optional+per+la+quale+si+deve+sudare+ore+su...&amp;tags=diaspora%2Cinvito+diaspora%2Csocial+network%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2011/02/inviti-diaspora/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=inviti-diaspora</feedburner:origLink></item>
		<item>
		<title>AdSense vs. Flattr</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/b9Kkj1NpAlc/</link>
		<comments>http://www.xoen.org/2010/10/adsense-vs-flattr/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 20:14:05 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[flattr]]></category>
		<category><![CDATA[guadagnare con flattr]]></category>
		<category><![CDATA[guadagnare con internet]]></category>
		<category><![CDATA[valore click]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1508</guid>
		<description><![CDATA[Quanto è possibile guadagnare con Flattr? La si può considerare un'alternativa a Google AdSense? Va preso in considerazione? Secondo me SI.]]></description>
				<content:encoded><![CDATA[<p>Ho già <a title="Flattr: Funzionamento, utilizzo in ambito FOSS e diffusione" href="http://www.xoen.org/2010/09/flattr-foss-e-diffusione/">parlato</a> di Flattr qualche settimana fa, nel frattempo settembre è finito e i click che ho ricevuto si sono trasformati in soldi <img src='http://www.xoen.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://www.xoen.org/wp-content/uploads/2010/09/flattr1.png"><img class="size-full wp-image-1452  aligncenter" title="Il logo di Flattr" src="http://www.xoen.org/wp-content/uploads/2010/09/flattr1.png" alt="Flattr logo" width="300" height="83" /></a></p>
<p style="text-align: left;">Non vi parlerò delle implicazioni sociali/etiche di questo servizio perchè immagino che a molti freghi poco, non vi annoierò e vi prometto che questo sarà un articolo schifosamente venale <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .<br />
Voglio solo fare con voi quattro conti e (per quanto possibile) <strong>paragonare Flattr con Google AdSense</strong>.<span id="more-1508"></span></p>
<h3 style="text-align: center;">Quanto vale un click?</h3>
<p style="text-align: left;">Come avevo già scritto, in Flattr ogni utente mette a disposizione un budget mensile che viene suddiviso per il numero di click effettuati. Quindi il valore di ogni click dipende fortemente dagli utenti, dal loro budget e da quanto hanno cliccato.</p>
<p style="text-align: left;">Volete comunque un numero? OK sparo: <strong>0.30 €/click</strong>.</p>
<h3 style="text-align: center;">Le mie entrate di settembre</h3>
<p>Chiaro, quel numero non significa molto così ma volevate un numero e ve l&#8217;ho dato. Nonostante questo credo che resti comunque significativo, AdSense o altri sistemi vi permettono di ricevere un <strong>valore così alto per click?</strong></p>
<p style="text-align: left;">Ora un po&#8217; di dettagli. Nel mese di settembre le mie <em>cose</em> su Flattr hanno ricevuto <strong>10 click</strong>, per un totale di <strong>2.99 €</strong>. Una media di 0.30 €/click con un <strong>picco di ben 0.52 €</strong>.</p>
<p style="text-align: left;">Per chi volesse farsi un po&#8217; meglio i cazzi miei ecco il <a title="Flattr revenue - Settembre 2010 (CSV)" href="http://www.xoen.org/download/flattr/flattr-revenue-201009.csv">file CSV</a> <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<h3 style="text-align: center;">Consideriamo la mia quota mensile</h3>
<p>Ovviamente oltre a questi 2.99 € si deve considerare quanti soldi ho pagato a settembre, nel mio caso poichè mi sono iscritto a mese iniziato ho <strong>pagato 1.42 €</strong>, di conseguenza il valore di ogni click si abbassa a <strong>0.16 €/click</strong>, un valore comunque di tutto &#8220;rispetto&#8221;, anche se avessi pagato i 2 € standard si sarebbe scesi a 0.10 €/click.</p>
<h3 style="text-align: center;">Ed in generale quanto può cliccare un utente?</h3>
<p>Premesso che la quota mensile di un utente è minimo 2 €, in genere si tende a cliccare cose che veramente ci sono sembrate interessanti/utili e si evita di cliccare con troppa disinvoltura per non rendere &#8220;fette&#8221; troppo piccole e di poco valore.</p>
<p>Detto questo, quante cose degne di click può trovare un utente? Dipende, ma credo il numero cercato sia tra i 5 ed i 100 click al mese, un valore per click cioè che va dai 0.02 € ai 0.40 € ma ho letto di gente che ha ricevuto <strong>anche 0.80 € per un click</strong>.</p>
<h3 style="text-align: center;">La differenza con AdSense</h3>
<p>Innanzitutto tra le regole di Google AdSense c&#8217;è quella che vieta di divulgare l&#8217;entità dei propri &#8220;guadagni&#8221; (notare le virgolette <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), immagino che il valore di ogni click dipenda dal traffico del sito e da altri fattori ma credo che le cifre di Flattr restino comunque di tutto rispetto.</p>
<p>Piccola parentesi non-venale: un click AdSense non da&#8217; la stessa <strong>soddisfazione di un click Flattr</strong>. Un click Flattr rappresenta un grazie da un utente che ha apprezzato quel che hai fatto e l&#8217;ha voluto ripagare con una fetta della sua &#8220;torta&#8221; mensile.</p>
<h3 style="text-align: center;">Casi di successo</h3>
<p>Probabilmente queste cifre irrisorie vi faranno sorridere e non sto dicendo che diventerete ricchi, ma Flattr non va sottovalutato come sistema per monetizzare.</p>
<p>Come dicono in Svezia (patria di Flattr) &#8220;molti piccoli ruscelli danno vita a un grande <em>fiume</em>&#8221; e lo sanno bene quelli che hanno già ricevuto oltre mille click (il <a title="Cosa più cliccata in Flattr al momento" href="https://flattr.com/thing/159/Chaosradio-Express">record</a> al momento è di 3593).</p>
<h3 style="text-align: center;">Ehi tu blogger!</h3>
<p>Spero che con questo piccolo articolo sono riuscito a stimolare il tuo interesse in Flattr e di trovare sempre più contenuti di valore in italiano.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/10/adsense-vs-flattr/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1508&amp;md5=632ec4d97906d180a63211d3b48293bf" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=b9Kkj1NpAlc:7zkzhVJRsjk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=b9Kkj1NpAlc:7zkzhVJRsjk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=b9Kkj1NpAlc:7zkzhVJRsjk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=b9Kkj1NpAlc:7zkzhVJRsjk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=b9Kkj1NpAlc:7zkzhVJRsjk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=b9Kkj1NpAlc:7zkzhVJRsjk:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=b9Kkj1NpAlc:7zkzhVJRsjk:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=b9Kkj1NpAlc:7zkzhVJRsjk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/b9Kkj1NpAlc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/10/adsense-vs-flattr/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F10%2Fadsense-vs-flattr%2F&amp;language=it_IT&amp;category=text&amp;title=AdSense+vs.+Flattr&amp;description=Ho+gi%C3%A0+parlato+di+Flattr+qualche+settimana+fa%2C+nel+frattempo+settembre+%C3%A8+finito+e+i+click+che+ho+ricevuto+si+sono+trasformati+in+soldi+Non+vi+parler%C3%B2+delle+implicazioni+sociali%2Fetiche...&amp;tags=adsense%2Cflattr%2Cguadagnare+con+flattr%2Cguadagnare+con+internet%2Cvalore+click%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/10/adsense-vs-flattr/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=adsense-vs-flattr</feedburner:origLink></item>
		<item>
		<title>TicToc il player Samsung che suppota i formati liberi</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/Qte5Zhy9Qvs/</link>
		<comments>http://www.xoen.org/2010/09/samsung-player-formati-ogg-flac/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 19:27:10 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[flac]]></category>
		<category><![CDATA[ogg]]></category>
		<category><![CDATA[player musicale]]></category>
		<category><![CDATA[samsung tictoc]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1495</guid>
		<description><![CDATA[Ecco il nuovo player musicale Samsung che si controlla "scuotendolo", dimensioni compatte e supporto a formati liberi (OGG/FLAC).]]></description>
				<content:encoded><![CDATA[<p>Si chiama <a title="Samsung TicToc" href="http://www.samsung.com/it/consumer/tv-audio-video/mp3/mp3/YP-S1AP/EDC/index.idx?pagetype=prd_detail&amp;tab=feature">TicToc</a> ed è il nuovo player di Samsung, la sua particolarità sta nel fatto che si controlla &#8220;scuotendolo&#8221; (già immagino le facce della gente in treno ad ogni cambio traccia <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>L&#8217;aggeggio è molto compatto, ho visto il <a title="Samsung TicToc Tutorial" href="http://www.samsung.com/it/microsite/tictoc/">tutorial</a> che spiega come utilizzarlo e sinceramente mi ha un po&#8217; perplesso ma suppongo che una volta abituati diventi molto intuitivo.</p>
<div class="ebuzzing_box" style="text-align: center;"><script src="http://www.ebuzzing.com/player_blog/player.php?parametre=210755" type="text/javascript"></script><a class="wikio-widget-ebmini" href="http://www.wikio.it">Condividi su Wikio</a><script src="http://widgets.wikio.it/js/ext/ebmini?country=it" type="text/javascript"></script></div>
<p>Quello qui su è il video della testimonial, una certa Emma, qualcuno poi mi spiega chi è <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . Da notare l&#8217;agitatina stile ovetto Kinder/telecomando Wii.</p>
<p>Coooomuuuunque, per quanto ci riguarda la cosa interessante è il supporto ai <strong>formati liberi Ogg</strong> e &#8211; udite udite &#8211; <strong>Flac</strong>! Ebbene si, finalmente potrete mandare a quel paese gli MP3 e i famelici WMA.</p>
<p>Ufficalmente il coso necessita del sistema operativo più diffuso ma con buone probabilità una volta collegato ai nostri amati GNU/Linux si presenterà come un comunissimo disco da 2 o 4 GB e potrete trasferire la vostra musica con un semplice copia incolla (ma la mia è solo un ipotesi). Qui trovate le <a title="Specifiche Samsung TicToc" href="http://www.samsung.com/it/consumer/tv-audio-video/mp3/mp3/YP-S1AP/EDC/index.idx?pagetype=prd_detail&amp;tab=specification">specifiche</a>.</p>
<p>Insomma un aggeggio particolare (e secondo Samsung anche figo) che ad un prezzo di circa <strong>60 €</strong> vi permetterà di ascoltare la vostra musica preferita senza usare formati proprietari.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/09/samsung-player-formati-ogg-flac/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1495&amp;md5=7095a68ca49f7e7ec6ea479414513e15" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Qte5Zhy9Qvs:KgGveJv7EZM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Qte5Zhy9Qvs:KgGveJv7EZM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Qte5Zhy9Qvs:KgGveJv7EZM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Qte5Zhy9Qvs:KgGveJv7EZM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Qte5Zhy9Qvs:KgGveJv7EZM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Qte5Zhy9Qvs:KgGveJv7EZM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Qte5Zhy9Qvs:KgGveJv7EZM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Qte5Zhy9Qvs:KgGveJv7EZM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/Qte5Zhy9Qvs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/09/samsung-player-formati-ogg-flac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F09%2Fsamsung-player-formati-ogg-flac%2F&amp;language=it_IT&amp;category=text&amp;title=TicToc+il+player+Samsung+che+suppota+i+formati+liberi&amp;description=Si+chiama+TicToc+ed+%C3%A8+il+nuovo+player+di+Samsung%2C+la+sua+particolarit%C3%A0+sta+nel+fatto+che+si+controlla+%26%238220%3Bscuotendolo%26%238221%3B+%28gi%C3%A0+immagino+le+facce+della+gente+in+treno+ad+ogni...&amp;tags=flac%2Cogg%2Cplayer+musicale%2Csamsung+tictoc%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/09/samsung-player-formati-ogg-flac/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=samsung-player-formati-ogg-flac</feedburner:origLink></item>
		<item>
		<title>Diaspora – The code is out</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/cT8MxIRTM2k/</link>
		<comments>http://www.xoen.org/2010/09/diaspora-developer-release/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 21:00:32 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[diaspora]]></category>
		<category><![CDATA[FaceBook]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[social network]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1481</guid>
		<description><![CDATA[The first diaspora release is out in the wild, it's just a first developer release and can't compete with facebook today but it's already a good start.]]></description>
				<content:encoded><![CDATA[<p>Do you know there are 4 crazy guys that want to create an alternative to Facebook?</p>
<div id="attachment_1483" class="wp-caption aligncenter" style="width: 190px"><a href="http://www.flickr.com/photos/timpritlove/4832866072/"><img class="size-full wp-image-1483" title="Fuck you Facebook/Twitter" src="http://www.xoen.org/wp-content/uploads/2010/09/fuck_you_facebook_twitter1.jpg" alt="Fuck you Facebook/Twitter" width="180" height="240" /></a><p class="wp-caption-text">&quot;Fuck you&quot; by Tim Pritlove (CC BY)</p></div>
<p>Well, after a summer of coding last day a first developer version was <a title="Diaspora first developer release" href="http://www.joindiaspora.com/2010/09/15/developer-release.html">released</a>, sure it&#8217;s not perfect but it&#8217;s a start.</p>
<h3 style="text-align: center;">Social contexts</h3>
<p>A sentence can give you an hint about the main design difference between Facebook and Diaspora <span id="more-1481"></span>&#8220;We live our real <strong>lives in context</strong> [...]  Social tools should work the same  way.&#8221;, I agree, but I don&#8217;t know if Diaspora will give users the control, I hope so. For the moment the paranoid in me say &#8220;put less personal stuff possible on internet&#8221;.</p>
<p style="text-align: center;">
<div id="attachment_1485" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.xoen.org/wp-content/uploads/2010/09/diaspora_developer_release_screenshot.jpg"><img class="size-medium wp-image-1485 " title="Developer release screenshot" src="http://www.xoen.org/wp-content/uploads/2010/09/diaspora_developer_release_screenshot-300x226.jpg" alt="Developer release screenshot" width="300" height="226" /></a><p class="wp-caption-text">Developer release screenshot</p></div>
<h3 style="text-align: center;">Ruby on Rails = Fail?</h3>
<p>From the technical point of view is a Ruby on Rails application, I&#8217;m sure this has many pros but how <a title="Diaspora fail" href="http://the-gay-bar.com/2010/09/16/diaspora-fail/">someone said</a> the choice of RoR leave the cheap hosting out of the game.</p>
<p>In my opinion BTW this is not a fail because if an application is well written it will succeed and if they want to compete with a giant like Facebook they have to do the best they can, no matter if it will not be installable on every webserver.</p>
<h3 style="text-align: center;">Time to start the diaspora?</h3>
<p>This release is just the start, the code is not yet ready but I like the fact the code is <a title="Diaspora Code on GitHub" href="http://github.com/diaspora/diaspora">public</a> and everyone can collaborate, there is a bug tracker, mailing lists and even a way to make feature requests, all seems in place and I like the licence too (GNU Affero GPL), the only thing that not convince me is the <a title="Diaspora Contributor Agreement" href="https://spreadsheets.google.com/a/joindiaspora.com/viewform?formkey=dGI2cHA3ZnNHLTJvbm10LUhXRTJjR0E6MQ&amp;theme=0AX42CRMsmRFbUy1iOGYwN2U2Mi1hNWU0LTRlNjEtYWMyOC1lZmU4ODg1ODc1ODI&amp;ifq">&#8220;Diaspora Inc. Contributor Agreement&#8221;</a>&#8230;risky?</p>
<p>The diaspora will not start today but I wish these guys good luck (and of course I hope they will not close the code someday)!</p>
<p><strong>UPDATE (2010/09/18)</strong> : You can already test Diaspora <a title="Test Diaspora" href="http://pivots.joindiaspora.com">here</a>, I have to say the state of things is impressive considering the code was developed in just few months!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/09/diaspora-developer-release/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1481&amp;md5=eb02a452a10d586592a6e739a8d3d144" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=cT8MxIRTM2k:Eg0HfZdZNnM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=cT8MxIRTM2k:Eg0HfZdZNnM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=cT8MxIRTM2k:Eg0HfZdZNnM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=cT8MxIRTM2k:Eg0HfZdZNnM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=cT8MxIRTM2k:Eg0HfZdZNnM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=cT8MxIRTM2k:Eg0HfZdZNnM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=cT8MxIRTM2k:Eg0HfZdZNnM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=cT8MxIRTM2k:Eg0HfZdZNnM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/cT8MxIRTM2k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/09/diaspora-developer-release/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F09%2Fdiaspora-developer-release%2F&amp;language=en_GB&amp;category=text&amp;title=Diaspora+%26%238211%3B+The+code+is+out&amp;description=Do+you+know+there+are+4+crazy+guys+that+want+to+create+an+alternative+to+Facebook%3F+Well%2C+after+a+summer+of+coding+last+day+a+first+developer+version+was+released%2C...&amp;tags=diaspora%2CFaceBook%2Cruby+on+rails%2Csocial+network%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/09/diaspora-developer-release/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=diaspora-developer-release</feedburner:origLink></item>
		<item>
		<title>Nokia U and my thought about multiple OSs and MeeGo inclusive development</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/tccJaTou72s/</link>
		<comments>http://www.xoen.org/2010/09/nokia-multiple-os-meego-inclusive-development/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 18:30:41 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[design by community]]></category>
		<category><![CDATA[inclusive development]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1454</guid>
		<description><![CDATA[Nokia "Design by Community" give birth to Nokia U. My thought about the multiple OS thing, MeeGo/Android inclusive development and the future of the market.]]></description>
				<content:encoded><![CDATA[<p>Some time ago <a title="Nokia, il cellulare lo progetti tu! (italian language)" href="http://www.xoen.org/2010/03/nokia-progetta-tuo-cellulare/">I written about</a> the &#8220;Design by community&#8221; idea from Nokia, it was march, 6 months passed, what happened with the input from the community?</p>
<h3 style="text-align: center;">Schetches</h3>
<p>After all the steps was completed users choosen the specs and the Nokia designers made 3 sketches and <a title="3D Render Poll - Design By Community" href="http://conversations.nokia.com/2010/07/26/design-by-community-sketches-poll/">asked users</a> to vote which one will be 3D rendered. I liked the third but I have to admit after seeing the sketches again I prefer the first, the sketch 3 looks like too rounded, the second too squared <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<div id="attachment_1458" class="wp-caption aligncenter" style="width: 310px"><a href="http://188.65.36.70/wp-content/uploads/2010/07/sketch1_dbc.jpg"><img class="size-medium wp-image-1458" title="The first Nokia sketch" src="http://www.xoen.org/wp-content/uploads/2010/09/design_by_community_sketch1-300x212.jpg" alt="design by community - first sketch" width="300" height="212" /></a><p class="wp-caption-text">Sketch 1</p></div>
<p style="text-align: left;">Long story short a lot of people like me liked the sketch one, it was the end of july and after more than 2 months the 3D render is here (It seems machines used to render at Nokia are not so powerful <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).<span id="more-1454"></span></p>
<div id="attachment_1455" class="wp-caption aligncenter" style="width: 310px"><a title="Nokia U Concept - Design by Community" href="http://conversations.nokia.com/2010/09/07/design-by-community-the-finished-concept/"><img class="size-medium wp-image-1455" title="Nokia U" src="http://www.xoen.org/wp-content/uploads/2010/09/NokiaU005-300x187.jpg" alt="Nokia U" width="300" height="187" /></a><p class="wp-caption-text">Say hello to Nokia U</p></div>
<h3 style="text-align: center;">Have you said specs?</h3>
<p>Yes specs, as you can see from the render the <strong>display is huge</strong>, it&#8217;s a 4&#8243; capacitive display, screen ratio is 16:9. It&#8217;s good to see also with a so big display the phone is more compact than the <a title="HTC Desire Specifications" href="http://www.htc.com/europe/product/desire/specification.html">HTC Desire</a> (3.7&#8243;). <strong>Sizes</strong> are supposed to be 60 x 110 x 6-10 mm.</p>
<p>Other specs choosen from users are: Wi-Fi, <strong>HDMI</strong>, USB 3, Surround Speakers and even <strong>kinetic power</strong> booster. Sci-Fi? Will see.</p>
<h3 style="text-align: center;">Operating system<span style="text-decoration: underline;">S</span></h3>
<p>The most interesting point in my opinion is the operating system, Nokia and Intel (<span style="text-decoration: underline;">with the community</span>) are developing <a title="MeeGo" href="http://meego.com/">MeeGo</a> (an OS born from the fusion of Maemo and Moblin), it&#8217;s a new OS and there is no phones on the market yet,  the first should be launched before the end of the year.</p>
<p>As you can see in the specs there is something really interesting: <strong>Multiple OS support</strong>. What does this could mean?</p>
<p><strong>Dual boot OS</strong> &#8211; Ugly choice, fragmentation in the same device? Please put just one OS in the phone so people will not kill themselves <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<p><strong>Leave user free to install an alternative OS</strong> &#8211; This could be really really interesting, normal user will use the pre-installed OS (e.g. MeeGo) and will live happy but advanced users will not be forced to choose if buy an Android/MeeGo/Bada/WebOS/Symbian Phone. <strong>Just choose the phone</strong> (hardware), and be free to install what do you want.</p>
<p>This second option is in my humble opinion the future, I understand at the moment manufactures are scaried about people getting hands in this stuff but it&#8217;s sad to buy a 500€ phone and not be free to upgrade/change the software just because it&#8217;s needed to wait for the producer to update&#8230;Not considering <strong>phones abandoned to their fate</strong> just because there are newest things on the market, I understand this is progress but leave people who spent a lot of money <strong>free to install whatever they want on their phones</strong>.</p>
<p>Returning to Nokia (sorry for the digression), it was liberal with his N900, it shipped with Maemo but you can already install MeeGo on it and in fact is one of the officially <a title="Handset Supported Hardware - MeeGo" href="http://meego.com/devices/handset/handset-supported-hardware">supported phones</a> for MeeGo.<br />
So it will not be so strange if in future will see more Nokia devices on which you can install what you want. I will love to see Nokia selling good hardware with MeeGo but leave user free to use other OSs.</p>
<p>Note, another big player on the market understood this: The Google Nexus One phone is shipped with Android but unlocked.</p>
<h3 style="text-align: center;">Inclusive development</h3>
<p>One of the main criticism to Google about Android it the way it develops it, the new versions are developed in house and no one can see the code and/or know about the new features, it&#8217;s a Google Choice and I will not complain here.</p>
<p>BTW I have to say, I prefer the way Intel and Nokia do the things: There are mailing lists, there are blogs where developers meet users, there is a bug tracking system and of course the <strong>code is public</strong> (there are <a title="MeeGo Code" href="http://meego.gitorious.org/">repositories</a> on Gitorious) and you can see and change it if you want/can (and the Gitorious &#8220;merge request&#8221; feature is wonderful in these cases).</p>
<p>Not only this, Nokia with the &#8220;Design by Community&#8221; experiment is going far behind the software, users can also drive the design of a new phone.</p>
<p>(Sorry for my english)</p>
<h3 style="text-align: center;">Conclusion</h3>
<p>I don&#8217;t know if the Nokia U will be real one day, if the &#8220;Design by Community&#8221; experiment will be repeated a day, I don&#8217;t know if the future Nokia will leave users free to change OS (even Android) if they want but I know a thing: IT WILL BE GREAT, don&#8217;t you agree?</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/09/nokia-multiple-os-meego-inclusive-development/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1454&amp;md5=b07786894100573012f018b2b6dccc2e" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=tccJaTou72s:tknsok_td3k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=tccJaTou72s:tknsok_td3k:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=tccJaTou72s:tknsok_td3k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=tccJaTou72s:tknsok_td3k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=tccJaTou72s:tknsok_td3k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=tccJaTou72s:tknsok_td3k:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=tccJaTou72s:tknsok_td3k:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=tccJaTou72s:tknsok_td3k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/tccJaTou72s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/09/nokia-multiple-os-meego-inclusive-development/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F09%2Fnokia-multiple-os-meego-inclusive-development%2F&amp;language=en_GB&amp;category=text&amp;title=Nokia+U+and+my+thought+about+multiple+OSs+and+MeeGo+inclusive+development&amp;description=Some+time+ago+I+written+about+the+%26%238220%3BDesign+by+community%26%238221%3B+idea+from+Nokia%2C+it+was+march%2C+6+months+passed%2C+what+happened+with+the+input+from+the+community%3F+Schetches+After+all...&amp;tags=android%2Cdesign+by+community%2Cinclusive+development%2Cmeego%2Cnokia%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/09/nokia-multiple-os-meego-inclusive-development/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nokia-multiple-os-meego-inclusive-development</feedburner:origLink></item>
		<item>
		<title>Flattr: Funzionamento, utilizzo in ambito FOSS e diffusione</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/hCSDkVkjadU/</link>
		<comments>http://www.xoen.org/2010/09/flattr-foss-e-diffusione/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 19:21:55 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[diffusione flattr]]></category>
		<category><![CDATA[flattr]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[software libero]]></category>
		<category><![CDATA[ubuntu software center]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1429</guid>
		<description><![CDATA[Cos'è Flattr, come funziona, perchè è migliore di PayPal per effettuare piccole donazioni, come può essere usato in ambito FOSS e qual'è la sua diffusione.]]></description>
				<content:encoded><![CDATA[<h3 style="text-align: center;">Che cavolo è Flattr?</h3>
<p>Avete sentito parlare di <a title="Flattr - Pagina introduttiva" href="https://flattr.com/support/intro">Flattr</a>? Se dovessi sintetizzare al massimo lo definirei <strong>un digg paypallizzato</strong>, lo so è una definizione orrenda, ma se volete una definizione di 3 parole accontentatevi.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1452" title="Il logo di Flattr" src="http://www.xoen.org/wp-content/uploads/2010/09/flattr1.png" alt="Flattr logo" width="300" height="83" /></p>
<p>Credo comunque che renda bene l&#8217;idea, prendete un sistema che permette con un click di esprimere il vostro apprezzamento per <em>qualcosa</em> e aggiungete il fatto che <strong>i vostri click corrispondono ad una micro-donazione</strong>.</p>
<h3 style="text-align: center;">Principio di funzionamento</h3>
<p>Il sistema è secondo me è tanto semplice quanto geniale<span id="more-1429"></span>:</p>
<ol>
<li> Ogni utente mette a disposizione una <em>quota mensile</em>, quota che può essere anche molto bassa (2 € al mese, non sono tanti)</li>
<li>Durante l&#8217;arco del mese quando si trova qualcosa che vale la pena sponsorizzare semplicemente si clicca sul pulsante Flattr</li>
<li>Alla fine del mese la nostra quota mensile viene divisa per il numero di click e donata ai rispettivi proprietari del pulsante.</li>
</ol>
<h3 style="text-align: center;">Un alternativa alle donazioni via PayPal</h3>
<p>PayPal è un sistema di pagamento elettronico che ha molti pregi, molti progetti lo utilizzano per ricevere donazioni e quindi finanziarsi ma ha un grosso limite: Non va bene per effettuare micro-donazioni.<br />
Le commissioni sono troppo alte per pagamenti di piccole somme di denaro, quindi donazioni nell&#8217;ordine dei centesimi/pochi euro non hanno senso.</p>
<p>Usare PayPal significa dover <strong><em>scegliere quanto donare e a chi</em></strong> (cioè non puoi donare a tutti quelli che se lo meriterebbero), con Flattr è tutto più semplice: decidi a chi donare cliccando e il <em>quanto</em> è determinato dalla quota mensile che scegli di donare.</p>
<h3 style="text-align: center;">Possibili utilizzi in ambito Free Software</h3>
<p>È chiaro che un sistema che permette con un click di donare piccole quantità di denaro è l&#8217;ideale per supportare tutte quelle persone che ogni giorno rilasciano codice, creano grafica, scrivono o traducono documentazione, forniscono supporto agli utenti, etc etc&#8230;spesso gratis.</p>
<p>Flattr è abbastanza versatile da permettere di essere usato per qualsiasi cosa, alcuni hanno già inserito il pulsante Flattr nei repository Gitorious o nella propria firma sui forum, c&#8217;è chi pensa ad <a title="Flattr in Ubuntu Software Center" href="http://brainstorm.ubuntu.com/idea/25383/">integrarlo nel Software Center</a> di Ubuntu (ottima idea secondo me), c&#8217;è chi lo vorrebbe come sistema per finanziare chi sviluppa estensioni per Firefox o WordPress e chi più ne ha più ne metta.</p>
<p>Qualcuno ha già messo su una newsletter mensile per essere aggiornati sul software libero/open source che è possibile Flattr-are : <a title="Flattr FOSS" href="http://raphaelhertzog.com/flattr-foss">Flattr FOSS</a>&#8230;</p>
<h3 style="text-align: center;">Diffusione</h3>
<p>La beta è disponibile da 7 mesi (10 febbraio), il progetto è quindi giovane ma nonostante questo c&#8217;è molto interesse attorno a Flattr, sono diversi mesi già che vedo pulsanti Flattr in giro per internet, adesso (dal 12 agosto) che chiunque può iscriversi senza invito sono sicuro che il servizio si diffonderà molto.</p>
<p>Usando Flattr non si può fare a meno di notare la sua diffusione in Germania.<br />
In Italia siamo ancora pochini ma spero che con questo articolo abbia contribuito alla sua diffusione, se produci contenuti (blogger, musicista, grafico, sviluppatore, etc&#8230;) <strong>usalo anche tu!</strong> (potresti guadagnare qualcosa se quel che produci piace)<strong><br />
</strong></p>
<p>PS: Quasi dimenticavo, ho già integrato Flattr negli articoli (come avrete notato) e scritto una <a title="Lasciare una mancia con Flattr" href="http://www.xoen.org/flattr-lascia-una-mancia/">pagina</a> per chi volesse dimostrare il suo apprezzamento così.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/09/flattr-foss-e-diffusione/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1429&amp;md5=1296219d5b5786e4a8ddb5f5ca733cb0" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=hCSDkVkjadU:TzQ1gtezDdM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=hCSDkVkjadU:TzQ1gtezDdM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=hCSDkVkjadU:TzQ1gtezDdM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=hCSDkVkjadU:TzQ1gtezDdM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=hCSDkVkjadU:TzQ1gtezDdM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=hCSDkVkjadU:TzQ1gtezDdM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=hCSDkVkjadU:TzQ1gtezDdM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=hCSDkVkjadU:TzQ1gtezDdM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/hCSDkVkjadU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/09/flattr-foss-e-diffusione/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F09%2Fflattr-foss-e-diffusione%2F&amp;language=it_IT&amp;category=text&amp;title=Flattr%3A+Funzionamento%2C+utilizzo+in+ambito+FOSS+e+diffusione&amp;description=Che+cavolo+%C3%A8+Flattr%3F+Avete+sentito+parlare+di+Flattr%3F+Se+dovessi+sintetizzare+al+massimo+lo+definirei+un+digg+paypallizzato%2C+lo+so+%C3%A8+una+definizione+orrenda%2C+ma+se+volete+una+definizione...&amp;tags=diffusione+flattr%2Cflattr%2Cfoss%2Csoftware+libero%2Cubuntu+software+center%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/09/flattr-foss-e-diffusione/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=flattr-foss-e-diffusione</feedburner:origLink></item>
		<item>
		<title>Feeds, aggregatori, produttività e…Google Reader!</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/2Ik4iM6KVdU/</link>
		<comments>http://www.xoen.org/2010/09/produttivita-e-google-reader/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 15:49:57 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[aggregatore]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google reader]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1386</guid>
		<description><![CDATA[Qualche consiglio per evitare di venire sommersi dalle informazioni, aumentare la vostra produttività usando Google Reader e qualche altro strumento.]]></description>
				<content:encoded><![CDATA[<p>I feed RSS/Atom si sa, sono una risorsa preziosa se si vuole che le notizie che ci interessano arrivino direttamente a noi piuttosto che perdere tempo per cercarle. Ma quale aggregatore usare?</p>
<h3 style="text-align: center;">Soluzione 1: Applicazione classica</h3>
<p>OK ci sono alcune applicazioni valide, ad esempio io di recente ho <em>provato</em> ad usare <a title="Calibre - eBook Manager" href="http://calibre-ebook.com/">calibre</a>, devo anche dire che ha alcune caratteristiche interessanti.</p>
<p>Il problema è che è un programma pensato sopratutto per la gestione di eBook. L&#8217;idea di fare come delle &#8220;istantanee&#8221; periodiche delle fonti significa ritrovarsi sommersi da questi snapshot. La cosa è un po&#8217; stressante e di certo l&#8217;interfaccia del programma non aiuta.</p>
<p><strong>Contro</strong>: Al di là dello specifico esempio di calibre resta un problema di fondo: comunque spessimo si finisce sul sito d&#8217;origine della notizia quindi comunque <strong>si utilizza anche un browser</strong>.<br />
<strong>Pro</strong>: Il lato positivo di questa soluzione è che potrete consultare le vostre notizie anche senza una connessione ad internet nella maggior parte dei casi.</p>
<h3 style="text-align: center;">Soluzione 2: Browser web</h3>
<p>La soluzione più grezza è quella di utilizzare i preferiti del vostro browser, alcuni browser invece hanno un <strong>lettore di feed integrato</strong>.</p>
<p>Ho provato ad usare quello di <a title="Articoli su Firefox" href="http://www.xoen.org/tag/firefox">Firefox</a> ma<span id="more-1386"></span> non ci sono molti vantaggi rispetto all&#8217;utilizzare direttamente i preferiti.</p>
<p>Questo non è necessariamente un difetto, <strong>un browser non è un aggregatore</strong> di notizie, anche se uno integrato degno di questo nome sarebbe comodo (comunque esistono estensioni per Firefox scritte per questo).</p>
<p><strong>Contro</strong>: Sarete costretti ad usare pesantemente il menu dei segnalibri, ed esiste il rischio tangibile di diventare dei bestemmiatori incalliti.<br />
<strong>Pro</strong>: Se riuscite ad usarlo potrete andare in giro a vantarvene e le donne penseranno che <strong>siete proprio fighi</strong>!</p>
<h3 style="text-align: center;">Soluzione 3: Google Reader</h3>
<p>Google Reader è un aggregatore di notizie, un applicazione web per la precisione, anzi, <strong>una signora applicazione web</strong>. Ne avevo sentito parlare ma solo provandolo per qualche ora ho potuto capire quanto può essere utile.</p>
<p>Innanzitutto è un applicazione web e quindi passare da Google Reader ad una delle notizie che si sta leggendo è un operazione indolore.</p>
<p>Una cosa che mi ha colpito molto e che me ne ha fatto innamorare e la <strong>possibilità di usare la tastiera</strong>, non parlo solo di usarla per operazioni più semplici:</p>
<ul>
<li>con J/K si passa rispettivamente all&#8217;articolo successivo ed a quello precedente</li>
<li>con O si apre/chiude l&#8217;articolo per vedere/nascondere il testo</li>
<li>premendo il tasto V si aprirà la notizia nel sito d&#8217;origine</li>
<li>con T si può taggare la notizia. Per <strong>vedere le notizie con una specifica etichetta</strong> si dovranno premere in sequenza G e T e poi scrivere il nome del tag (la G sta per go mentre la T per tag).</li>
<li>con S si marca come speciale una notizia. Per vedere le notizie speciali si può premere in successione G e poi S (la S sta per special)</li>
<li>Per la <strong>lista completa delle scorciatoie</strong> potete premere ?.</li>
</ul>
<p>Infine un&#8217;altra cosa estremamente interessante è la possibilità di condividere le notizie che secondo noi vale la pena di consigliare con molta semplicità. La cosa che trovo interessante è che queste notizie vanno a confluire tutte in un proprio <strong>canale di notizie condivise</strong>, ad esempio <a title="Articoli condivisi" href="http://www.google.com/reader/shared/xoen.gnu">questo è il mio</a> (lo trovate anche qui a lato sotto &#8220;Articoli consigliati&#8221;) e che è possibile aggiungere delle note. Insomma un modo veloce per segnalare articoli interessanti.</p>
<p><strong>Contro</strong>: Applicazione web chiusa (o mi sbaglio?)<br />
<strong>Pro</strong>: Gli standard web in tutto il loro splendore, AJAX a volontà, utilizzo di scorciatoie da tastiera che rendono le cose molto veloci, possibilità di creare un proprio canale di notizie interessanti senza dover mettere su un blog, produttività assicurata!</p>
<h3 style="text-align: center;">Bonus Point: Readability e Adblock plus</h3>
<p>Se a questo punto volete raggiungere il <strong>nirvana</strong> allora vi consiglio di utilizzare:</p>
<ul>
<li><a title="Readability" href="http://lab.arc90.com/experiments/readability/"><strong>Readability</strong></a> &#8211; Permette di aumentare la <strong>leggibilità</strong> del testo e di <strong>eliminare il superfluo</strong>. Potete scegliere le impostanzio sul sito e poi aggiungere il bookmarklet ai vostri preferiti, fatto questo quando siete su una pagina e volete usare readability basterà scegliere questo preferito. Esiste anche come estensione per Firefox (e forse altri browser).</li>
<li><a title="Adblock Plus" href="https://addons.mozilla.org/it/firefox/addon/1865/">Adblock Plus</a> &#8211; Questa estensione invece <strong>blocca la pubblicità</strong> facendovi <strong>risparmiare banda</strong> ed <strong>evitare distrazioni</strong> (potete però disabilitarla per alcuni siti che volete supportare tramite la pubblicità)</li>
</ul>
<h3 style="text-align: center;">Conclusioni</h3>
<p>L&#8217;articolo finisce qui, queste sono alcune delle considerazioni e delle esperienze che ho fatto per cercare di contrastare l&#8217;<strong>information overload</strong> che ormai impazza.</p>
<p>Voi cosa ne pensate? Sono veramente curioso di capire <strong>quali sono le vostre abitudini</strong> e come vi tenete aggiornati senza perdere ore e/o stressarvi, avete qualche consiglio da darmi?</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/09/produttivita-e-google-reader/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1386&amp;md5=af6ddf63531296af4e1e699a4d2c7810" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=2Ik4iM6KVdU:dR8nFRlE95A:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=2Ik4iM6KVdU:dR8nFRlE95A:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=2Ik4iM6KVdU:dR8nFRlE95A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=2Ik4iM6KVdU:dR8nFRlE95A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=2Ik4iM6KVdU:dR8nFRlE95A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=2Ik4iM6KVdU:dR8nFRlE95A:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=2Ik4iM6KVdU:dR8nFRlE95A:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=2Ik4iM6KVdU:dR8nFRlE95A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/2Ik4iM6KVdU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/09/produttivita-e-google-reader/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F09%2Fproduttivita-e-google-reader%2F&amp;language=it_IT&amp;category=text&amp;title=Feeds%2C+aggregatori%2C+produttivit%C3%A0+e%26%238230%3BGoogle+Reader%21&amp;description=I+feed+RSS%2FAtom+si+sa%2C+sono+una+risorsa+preziosa+se+si+vuole+che+le+notizie+che+ci+interessano+arrivino+direttamente+a+noi+piuttosto+che+perdere+tempo+per+cercarle.+Ma+quale...&amp;tags=aggregatore%2Cfeed%2Cfirefox%2Cgoogle+reader%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/09/produttivita-e-google-reader/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=produttivita-e-google-reader</feedburner:origLink></item>
		<item>
		<title>[Comic]  Stallman è pazzo?</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/V3gYVsHC2_k/</link>
		<comments>http://www.xoen.org/2010/08/comic-domanda-stallman-pazzo/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 09:33:05 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[comic]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[stallman]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1361</guid>
		<description><![CDATA[Per anni Stallman (l'uomo dietro l'idea di software libero) è stato visto come un estremista, un esagerato, paranoico e pazzo. Ma è veramente così?]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1369" title="Stallman è pazzo?" src="http://www.xoen.org/wp-content/uploads/2010/08/xoen.org-domanda-stallman-è-pazzo.png" alt="" width="500" height="237" /></p>
<p><strong>Sorgente</strong> : <a title="Sorgente SVG - Stallman è pazzo?" href="http://www.xoen.org/download/comics/xoen.org-domanda-stallman-e-pazzo.svg">SVG</a></p>
<pre style="text-align: right;"><strong>Licenza</strong>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.it"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" alt="Licenza Creative Commons" /></a></pre>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/08/comic-domanda-stallman-pazzo/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1361&amp;md5=19a10c91cba9344ef22bede0cfb1cb24" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=V3gYVsHC2_k:nHE01qHsZFc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=V3gYVsHC2_k:nHE01qHsZFc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=V3gYVsHC2_k:nHE01qHsZFc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=V3gYVsHC2_k:nHE01qHsZFc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=V3gYVsHC2_k:nHE01qHsZFc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=V3gYVsHC2_k:nHE01qHsZFc:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=V3gYVsHC2_k:nHE01qHsZFc:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=V3gYVsHC2_k:nHE01qHsZFc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/V3gYVsHC2_k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/08/comic-domanda-stallman-pazzo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F08%2Fcomic-domanda-stallman-pazzo%2F&amp;language=it_IT&amp;category=images&amp;title=%5BComic%5D++Stallman+%C3%A8+pazzo%3F&amp;description=Sorgente+%3A+SVG+Licenza+%7Blang%3A+%27it%27%7D&amp;tags=android%2Ccomic%2Cfree+software%2Cgoogle%2CiPhone%2Coracle%2Cstallman%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/08/comic-domanda-stallman-pazzo/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=comic-domanda-stallman-pazzo</feedburner:origLink></item>
		<item>
		<title>L’anno di Linux su…</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/8uENAfLAxfo/</link>
		<comments>http://www.xoen.org/2010/08/2011-anno-di-linux-su-tutto/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 16:52:18 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[diffusione linux]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[smartphone linux]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1342</guid>
		<description><![CDATA[Il sistema operativo free/open per eccellenza si sta sempre di più diffondendo non tanto sui desktop ma su tutto il resto (smartphone, televisori, etc...)]]></description>
				<content:encoded><![CDATA[<p>Lo so, non è ancora natale, sono un po&#8217; in anticipo, non sono impazzito (o almeno non più del solito), vorrei solo consigliare la lettura di questa interessante <a title="The Year Of The Linux… Everything Else" href="http://www.linux-mag.com/id/7817">analizi sull&#8217;attuale e futuro stato di diffuzione di Linux</a>.</p>
<div id="attachment_1353" class="wp-caption aligncenter" style="width: 197px"><a href="http://www.xoen.org/wp-content/uploads/2010/08/tux.jpeg"><img class="size-full wp-image-1353" title="Tux" src="http://www.xoen.org/wp-content/uploads/2010/08/tux.jpeg" alt="" width="187" height="200" /></a><p class="wp-caption-text">Tux, stupito di tutto questo successo!</p></div>
<p>Già il titolo la dice lunga: <em>L&#8217;anno di Linux&#8230;su qualunque altra cosa</em>. Ogni anno si spera <span id="more-1342"></span>che GNU/Linux conquisti i desktop di una buona fetta di utenti ed ogni anno le nostre aspettative vengono deluse (termine un po&#8217; esagerato in effetti).</p>
<p>La sintesi è che mentre si spera sempre nella <strong>diffusione del nostro amato sistema operativo</strong>/kernel sui desktop in realtà su altre piattaforme la sua diffusione è <strong>già avvenuta</strong>.</p>
<p>Tralasciando il settore server in cui ormai è diffuso da anni, le piattaforme in questione sono quelle in cui i <em>problemi di driver</em> e di <em>conoscenze pregresse</em> degli utenti non sono un problema ed in cui <em>non c&#8217;è ancora un monopolista</em> (e si spera non ci sarà mai): <strong>cellulari</strong> <sup>[1]</sup>, televisori, <strong>automobili</strong>, NAS, set top box, ricevitori satellitari, media box, router, orologi, e qualunque altra cosa sia anche lontanamente somigliante ad un computer.</p>
<p>In particolare il settore dei cellulari/smartphone ultimamente è in fermento grazie ad Android e all&#8217;imminente MeeGo. Quest&#8217;ultimo sembra aver scelto la strada delle diverse edizioni per diverse tipologie di dispositivi, l&#8217;ultima nata è IVI, <a title="Meego - In Vehicle Infotainment" href="http://meego.com/devices/in-vehicle">edizione per veicoli</a> (auto, camion, aerei e suppongo anche navi a questo punto <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ). Aspettiamo con ansia i primi device MeeGo che dovrebbero cominciare ad essere venduti tra qualche mese&#8230;</p>
<p>Quindi, la diffusione di GNU/Linux non avverrà forse come tutti ci aspettavamo (server &gt; desktop &gt; altro) ma forse la conquista dei desktop sarà solo l&#8217;ultimo tassello. <strong>Voi che ne dite?</strong></p>
<p><sup>[1]</sup> E già che ci sono vi consiglio anche quest&#8217;altra lettura sull&#8217;<a title="Apple and the war of mobile market" href="http://arstechnica.com/staff/fatbits/2010/08/can-you-buy-me-now.ars">imparare dagli errori</a> del passato e sulla storia che (forse) si ripete. Quello che io &#8220;prevedo&#8221; o comunque m&#8217;aspetto è che la chiusura (caso iPhone in questo caso) possa dare un vantaggio iniziale ma che alla lunga gli altri si adeguino e le soluzioni più aperte hanno la meglio.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/08/2011-anno-di-linux-su-tutto/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1342&amp;md5=a097eba93f57e4f1d342fc6b346ad045" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=8uENAfLAxfo:8Qrij_75BmM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=8uENAfLAxfo:8Qrij_75BmM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=8uENAfLAxfo:8Qrij_75BmM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=8uENAfLAxfo:8Qrij_75BmM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=8uENAfLAxfo:8Qrij_75BmM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=8uENAfLAxfo:8Qrij_75BmM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=8uENAfLAxfo:8Qrij_75BmM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=8uENAfLAxfo:8Qrij_75BmM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/8uENAfLAxfo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/08/2011-anno-di-linux-su-tutto/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F08%2F2011-anno-di-linux-su-tutto%2F&amp;language=it_IT&amp;category=text&amp;title=L%26%238217%3Banno+di+Linux+su%26%238230%3B&amp;description=Lo+so%2C+non+%C3%A8+ancora+natale%2C+sono+un+po%26%238217%3B+in+anticipo%2C+non+sono+impazzito+%28o+almeno+non+pi%C3%B9+del+solito%29%2C+vorrei+solo+consigliare+la+lettura+di+questa+interessante+analizi+sull%26%238217%3Battuale...&amp;tags=android%2Cdiffusione+linux%2Cmeego%2Csmartphone+linux%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/08/2011-anno-di-linux-su-tutto/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=2011-anno-di-linux-su-tutto</feedburner:origLink></item>
		<item>
		<title>3D Mania: YouTube 3D e Nintendo 3DS</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/Zvvx-Mv4z4M/</link>
		<comments>http://www.xoen.org/2010/08/youtube-3d-nintendo-3ds/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 00:43:01 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[films 3d]]></category>
		<category><![CDATA[nintendo 3ds]]></category>
		<category><![CDATA[youtube 3d]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1315</guid>
		<description><![CDATA[Il 3D è tornato di moda...di nuovo! Su YouTube sono presenti molti filmati in 3D. Il nuovissimo Nintento 3DS invece vi permette di giocare in 3D senza occhialini!]]></description>
				<content:encoded><![CDATA[<p>&#8230;è tornato di moda il 3D! Sembra che <a title="Cinema tridimensionale" href="http://it.wikipedia.org/wiki/Cinema_tridimensionale">periodicamente torni di moda</a>, vi parlerò di una &#8220;scoperta&#8221; che ho fatto in questi giorni e del nuovissimo Nintendo 3DS, cosa li accomuna? Come utilizzano la terza dimensione ovviamente!</p>
<p style="text-align: center;"><img class="size-full wp-image-1316  aligncenter" title="Youtube 3D Gallery" src="http://www.xoen.org/wp-content/uploads/2010/08/youtube_3d_gallery.jpg" alt="Youtube 3D Gallery" width="400" height="56" /></p>
<h3 style="text-align: center;">YouTube ed i video in 3D</h3>
<p>Ebbene si, ogni giorno si sente parlare dell&#8217;uscita dell&#8217;ennesimo film in 3D, ma la conferma che il 3D sia diventato un fenomeno di massa è data dalla nuova (o almeno per me) funzionalità di YouTube, ovvero la possibilità di guardare alcuni <strong>video in 3D</strong>.</p>
<p style="text-align: center;"><img class="size-full wp-image-1317  aligncenter" title="YouTube 3D Menu" src="http://www.xoen.org/wp-content/uploads/2010/08/youtube_3d_videos.jpg" alt="YouTube 3D Menu" width="400" height="241" /></p>
<p style="text-align: left;">Come potete notare<span id="more-1315"></span>, nel caso di filmati in 3D, sarà presente un menu dov&#8217;è possibile scegliere il tipo di visualizzazione.<br />
Oltre alla sempre (rosso/)verde tecnica dell&#8217;anaglifo (quella degli occhiali bicolore anni &#8217;80 per intenderci) sono degne di nota la visualizzazione &#8220;cross-eyed&#8221;, questa permette di <strong>vedere il video senza occhialini</strong>, come? guardandolo con gli occhi torti <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  (TM), per capire come fare potete leggere questa <a title="3D senza occhialini facendo gli occhi torti" href="http://www.neilcreek.com/blog/2008/02/28/how-to-see-3d-photos/">guida</a>.</p>
<p style="text-align: left;">M&#8217;incuriosiscono invece le modalità interlacciate, credo che l&#8217;idea sia quella di vedere i video in 3D su monitor con frequenze di refresh alte, chissà&#8230;invece non sono supportati occhialini con lenti polarizzate diversamente (tipo i tamarrissimi RealD ad esempio), ma questo è abbastanza naturale visto che queste tecniche richiedano hardware dedicato.</p>
<p style="text-align: left;">Dove <strong>trovare i video in 3D su YouTube</strong>? Semplice, potete cominciare da <a title="YouTube 3D Channel" href="http://www.youtube.com/user/3D">questo canale</a>. Ci sono già numerosi video&#8230;come <a title="Coke+Mentos Rocket Car " href="http://www.youtube.com/watch?v=YuxqPuhLBZg">questo</a> o <a title="Mosquito Highway" href="http://www.youtube.com/watch?v=6RFuRY7azgA">questo</a> (Google mi perdoni per questi &#8220;anchor text&#8221; <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p style="text-align: left;">Anche voi vorreste avere un paio di occhialini 3D a portata di mano eh <img src='http://www.xoen.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ?</p>
<h2 style="text-align: center;">Nintendo 3DS</h2>
<p style="text-align: left;">Non sono un grande videogiocatore (tuttaltro) ma ho trovato interessante la nuova console portatile Nintendo: <a title="Nintendo 3DS - Anteprima" href="http://www.nintendo3dsitalia.it/giochi/anteprima-nintendo-3ds">3DS</a></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.xoen.org/wp-content/uploads/2010/08/nintendo-3ds.jpg"><img class="size-full wp-image-1318    aligncenter" title="Nintendo 3DS" src="http://www.xoen.org/wp-content/uploads/2010/08/nintendo-3ds.jpg" alt="Nintendo 3DS" width="400" height="360" /></a></p>
<p style="text-align: left;">La caratteristica innovativa di questa console è che i giochi saranno in 3D ma <strong>non sarà necessario indossare gli occhialini</strong>, avete letto bene, potrete giocare in treno/autobus senza essere presi per idioti, forse&#8230;</p>
<p style="text-align: left;">Senza scendere troppo nei particolari, quello che avviene è che il display guardato frontalmente visualizzerà immagini in 3D. L&#8217;idea non è proprio una novità targata nintendo (avevo già letto di un monitor che utilizzava una tecnologia simile) ma è comunque interessante e sarà ancora più interessante vedere come sarà usata dagli sviluppatori di videogame (sono già in cantiere diversi titoli molto promettenti, &#8220;Resident Evil&#8221; e &#8220;Kid Icarus: Uprising&#8221; in primis).</p>
<p style="text-align: left;">Altre due cosette interessanti saranno la possibilità di vedere film in 3D (non ho ben capito in che formato) e <strong>scattare foto in 3D</strong> (grazie alle due fotocamere presenti sul retro).</p>
<p style="text-align: left;">Potete farvi un idea (ma credo si debba provare per scoprirne le potenzialità) guardando questo video su YouTube&#8230;in 3D (avete trovato gli occhialini in cantina <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ?)</p>
<p style="text-align: center;"><a title="Nintendo 3DS - Hands On" href="http://www.youtube.com/watch?v=1vyFZOgYNPc"><img class="size-full wp-image-1319  aligncenter" title="Nintendo 3DS" src="http://www.xoen.org/wp-content/uploads/2010/08/nintendo-3ds-hands-on.jpg" alt="Nintendo 3DS" width="400" height="244" /></a></p>
<p style="text-align: left;">Sicuramente, come da tradizione Nintendo, sarà un successo e ne venderanno a camionate, povere Sony e Microsoft. Voi che ne dite? E <strong>la comprereste?</strong></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/08/youtube-3d-nintendo-3ds/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1315&amp;md5=466ba279a786ba46b340e1646bff52f5" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Zvvx-Mv4z4M:q-ivCd6q-vU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Zvvx-Mv4z4M:q-ivCd6q-vU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Zvvx-Mv4z4M:q-ivCd6q-vU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Zvvx-Mv4z4M:q-ivCd6q-vU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Zvvx-Mv4z4M:q-ivCd6q-vU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Zvvx-Mv4z4M:q-ivCd6q-vU:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=Zvvx-Mv4z4M:q-ivCd6q-vU:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=Zvvx-Mv4z4M:q-ivCd6q-vU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/Zvvx-Mv4z4M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/08/youtube-3d-nintendo-3ds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F08%2Fyoutube-3d-nintendo-3ds%2F&amp;language=it_IT&amp;category=text&amp;title=3D+Mania%3A+YouTube+3D+e+Nintendo+3DS&amp;description=%26%238230%3B%C3%A8+tornato+di+moda+il+3D%21+Sembra+che+periodicamente+torni+di+moda%2C+vi+parler%C3%B2+di+una+%26%238220%3Bscoperta%26%238221%3B+che+ho+fatto+in+questi+giorni+e+del+nuovissimo+Nintendo+3DS%2C+cosa+li...&amp;tags=films+3d%2Cnintendo+3ds%2Cyoutube+3d%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/08/youtube-3d-nintendo-3ds/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=youtube-3d-nintendo-3ds</feedburner:origLink></item>
		<item>
		<title>(Feed)Burn burn baby!</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/M4MrRq7zouc/</link>
		<comments>http://www.xoen.org/2010/07/nuovo-feed-blog/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 09:10:41 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1311</guid>
		<description><![CDATA[Sono finalmente passato a FeedBurner per il feed del blog dopo mesi di procrastinazione, cosa aspetti? ABBONATI!]]></description>
				<content:encoded><![CDATA[<p>Informazione di servizio, il feed del blog è stato spostato su FeedBurn, e più precisamente <a title="Nuovo feed del blog" href="http://feeds.feedburner.com/xoen-blog">qui</a>.</p>
<p>*Dovreste* essere in grado di abbonarvi anche <strong>cliccando sull&#8217;icona</strong> nella sidebar (quella con l&#8217;omino che legge il giornale per intenderci, non ho trovato quella dell&#8217;omino seduto al bagno, mi spiace <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), o comunque tramite l&#8217;icona che in qualche modo il vostro browser preferito vi presenta.</p>
<p>Se sei già abbonato, per favore <strong>aggiorna il feed</strong> ed utilizza quello nuovo, se invece non sei ancora abbonato ed il mio blog ti piace cosa aspetti? <strong>ABBONATI!</strong></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/07/nuovo-feed-blog/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1311&amp;md5=fffe10721fc2470ed10a7c673d4aebf1" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=M4MrRq7zouc:tRwz8sqrEzo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=M4MrRq7zouc:tRwz8sqrEzo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=M4MrRq7zouc:tRwz8sqrEzo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=M4MrRq7zouc:tRwz8sqrEzo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=M4MrRq7zouc:tRwz8sqrEzo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=M4MrRq7zouc:tRwz8sqrEzo:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=M4MrRq7zouc:tRwz8sqrEzo:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=M4MrRq7zouc:tRwz8sqrEzo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/M4MrRq7zouc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/07/nuovo-feed-blog/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F07%2Fnuovo-feed-blog%2F&amp;language=it_IT&amp;category=text&amp;title=%28Feed%29Burn+burn+baby%21&amp;description=Informazione+di+servizio%2C+il+feed+del+blog+%C3%A8+stato+spostato+su+FeedBurn%2C+e+pi%C3%B9+precisamente+qui.+%2ADovreste%2A+essere+in+grado+di+abbonarvi+anche+cliccando+sull%26%238217%3Bicona+nella+sidebar+%28quella+con+l%26%238217%3Bomino...&amp;tags=feed%2Cfeedburner%2Crss%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/07/nuovo-feed-blog/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nuovo-feed-blog</feedburner:origLink></item>
		<item>
		<title>Introduzione a Git (sistema controllo versione)</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/gY2NBrK2Jf8/</link>
		<comments>http://www.xoen.org/2010/07/introduzione-a-git-sistema-controllo-versione/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 00:28:19 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[controllo versione]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[sviluppo]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1285</guid>
		<description><![CDATA[Git è uno strumento che vi permette di tenere traccia delle modifiche apportate al codice. Imparare ad usarlo è molto semplice.]]></description>
				<content:encoded><![CDATA[<h3 style="text-align: center;">Back to the future</h3>
<p>Non sarebbe bello poter <strong>viaggiare nel tempo</strong>? Specie in caso di disastri?</p>
<p>I VCS (Version Control System) sono dei software che permettono di <strong>tenere traccia delle modifiche</strong> al codice sorgente. In un qualunque momento è possibile tornare ad una qualunque versione precedente, è possibile vedere le differenze che abbiamo introdotto, etc&#8230;in pratica ci permettono di lavorare in tutta tranquillità senza preoccuparci, sicuri d&#8217;avere sempre la possibilità di tornare ad uno stato precedente.<span id="more-1285"></span></p>
<h3 style="text-align: center;">Distribuiti</h3>
<p>I VCS di ultima generazione ormai sono addirittura indipendenti da un server centrale rendendoli di fatto strumenti che possono essere utilizzati a qualsiasi livello, anche in locale e per i nostri progetti personali di tutti i giorni.</p>
<p>La potenza dei DVCS è quella di essere indipendenti da un server/repository centrale. Immaginate d&#8217;avere un idea per il vostro software preferito, basterà clonare il repository e modificare il codice a vostro piacimento, quando avrete fatto potrete richiedere che le vostre modifiche vengano applicate al ramo principale di sviluppo, è questa una delle caratteristiche principali di Git (e dei DVCS in generale): indipendenza e libertà di movimento che permettono uno sviluppo altamente parallelo e non-linerare.</p>
<h3 style="text-align: center;">Imparare Git</h3>
<p>Sono anni che sento parlare di <a title="Git website" href="http://git-scm.com">Git</a> e avevo sempre pensato che fosse uno strumento per guru e dalla curva d&#8217;apprendimento ripidissima, secondo me invece non è assolutamente così, anzi una volta che si cominciano a capire i meccanismi di base tutto sembra coerente e naturale.</p>
<p>Il materiale disponibile per Git è infinito ma se volete risparmiare tempo le letture che vi consiglio sono le seguenti:</p>
<ul>
<li><a title="The Git Parable" href="http://tom.preston-werner.com/2009/05/19/the-git-parable.html">The Git Parable</a> &#8211; Un articolo che vi cercherà di far capire le basi di Git e come più o meno &#8220;ragiona&#8221;, senza sovraccaricarvi di dettagli sui comandi e la loro sintassi.</li>
<li><a title="Git Reference" href="http://gitref.org/">Git Reference</a> &#8211; Questo è un vero è proprio capolavoro secondo me, una guida di base a Git, <strong>concisa</strong>, <strong>semplice</strong>, una volta letta Git non vi sembrerà più quel mostro incomprensibile che credevate.</li>
</ul>
<p>Chiaramente queste sono solo letture introduttive e successivamente potreste voler approfondire alcuni aspetti di Git, niente paura esistono altre risorse come ad esempio <a title="Pro Git" href="http://progit.org/book/">Pro Git</a> per questo.</p>
<h3 style="text-align: center;">L&#8217;ultimo miglio</h3>
<p style="text-align: left;">Una cosa fantastica di Git non è tanto Git in se ma i vari servizi disponibili che permettono di <strong>ospitare i propri progetti/repository</strong>, e che creano vere e proprie <strong>community di sviluppatori</strong>.</p>
<p style="text-align: left;">Sto parlando di <a title="Gitorious" href="http://gitorious.org">Gitorious</a> e soci (inutile elencarli tutti, sul wiki di Git trovate una <a title="Free Git hosting" href="https://git.wiki.kernel.org/index.php/GitHosting">lista</a> più o meno completa), non solo vi offrono la possibilità di ospitare i vostri progetti/repository ma hanno diverse caratteristiche che li rendono interessanti:</p>
<ul>
<li><strong>I</strong><strong>nterfaccia web</strong> per eseguire tutta una serie di operazioni in maniera molto semplice come visionare le modifiche apportate da un commit ad esempio</li>
<li>Creazione di <strong>copie personali</strong> di un qualsiasi repository per poter apportare le proprie modifiche</li>
<li><strong>Merge-request</strong>, cioè richiedere che le modifiche apportate in un nostro repository vengano applicate al repository originario. La potenza di questo strumento sta nella semplicità con cui è possibilità contribuire ad un progetto senza per forza far parte del team di sviluppo.</li>
</ul>
<h3 style="text-align: center;">Conclusioni</h3>
<p>Git è uno strumento che in pochissimo tempo è riuscito ad ottenere un <strong>incredibile diffusione</strong> ed oggi è <a title="Progetti che usano Git" href="https://git.wiki.kernel.org/index.php/GitProjects">utilizzato da moltissimi progetti</a> di software libero come il kernel Linux, KDE, GNOME, Android, FreeDesktop, Wine, GCC, Qt, VLC, etc, etc, etc&#8230;conoscere uno strumento così diffuso di certo non dispiace, specie se si ha intenzione di contribuire ad uno dei progetti che lo utilizzano.</p>
<p>Git resta comunque uno strumento utilissimo a prescindere che si voglia o meno contribuire ad un progetto altrui, inoltre una volta imparate le sue basi (cosa che richiede davvero poco tempo) lo amerete e lo troverete davvero naturale, piacevole e divertente da usare.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/07/introduzione-a-git-sistema-controllo-versione/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1285&amp;md5=6e2b1268130dc3197cbc4f3ff8387ffa" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=gY2NBrK2Jf8:qSZqt4B25gY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=gY2NBrK2Jf8:qSZqt4B25gY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=gY2NBrK2Jf8:qSZqt4B25gY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=gY2NBrK2Jf8:qSZqt4B25gY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=gY2NBrK2Jf8:qSZqt4B25gY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=gY2NBrK2Jf8:qSZqt4B25gY:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=gY2NBrK2Jf8:qSZqt4B25gY:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=gY2NBrK2Jf8:qSZqt4B25gY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/gY2NBrK2Jf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/07/introduzione-a-git-sistema-controllo-versione/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F07%2Fintroduzione-a-git-sistema-controllo-versione%2F&amp;language=it_IT&amp;category=text&amp;title=Introduzione+a+Git+%28sistema+controllo+versione%29&amp;description=Back+to+the+future+Non+sarebbe+bello+poter+viaggiare+nel+tempo%3F+Specie+in+caso+di+disastri%3F+I+VCS+%28Version+Control+System%29+sono+dei+software+che+permettono+di+tenere+traccia+delle...&amp;tags=controllo+versione%2Cgit%2Csviluppo%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/07/introduzione-a-git-sistema-controllo-versione/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=introduzione-a-git-sistema-controllo-versione</feedburner:origLink></item>
		<item>
		<title>GNU/Linux – Aumentare l’autonomia del portatile</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/GJiK5crN6tE/</link>
		<comments>http://www.xoen.org/2010/07/linux-aumentare-autonomia-portatile/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 12:05:48 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[autonomia]]></category>
		<category><![CDATA[durata batteria]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1280</guid>
		<description><![CDATA[Scopriamo come un piccolo programma può allungare l'autonomia dei nostri amati portatili. Inoltre ha anche altre piccole funzionalità che possono essere comode]]></description>
				<content:encoded><![CDATA[<p>Vorrei condividere con voi una piccola chicca, non mi dilungherò molto perchè sono in una fase haiku della mia vita&#8230;insomma, m&#8217;abbutta scrivere.</p>
<p>Bando alle ciance che già ho usato un paragrafo.(questo è un haiku? Boh!).</p>
<p>In questi giorni sto provando un piccolo programmino, il suo nome è <a title="E Sailor Mars dov'è?" href="http://sourceforge.net/projects/jupiter/">Jupiter</a>, si posa nelle vostre notification area e promette di allungare l&#8217;autonomia dei vostri portatili (per altro mi spiace cercate tra lo SPAM). Non l&#8217;ho provato approfonditamente ma ad occhio e croce direi che <strong>funziona</strong>, sembrerebbe.</p>
<p>Inoltre permette di accendere/spegnere bluetooth, e altra roba, ruotare l&#8217;orientamento del display, e ottenere qualcosa in più anche sul piano delle <strong>performance</strong> (in modalità &#8220;Maximum Performance&#8221; riesco  a vedere i video a 720p su YouTube con un Intel SU7300).</p>
<p>Provatelo e <strong>fatemi sapere</strong>.</p>
<p><a title="Squeeze More Battery Life from Your Linux Laptop with Jupiter" href="http://www.linux-magazine.com/Online/Blogs/Productivity-Sauce-Dmitri-s-open-source-blend-of-productive-computing/Squeeze-More-Battery-Life-from-Your-Linux-Netbook-with-Jupiter"></a></p>
<pre style="text-align: right;">[<strong>FONTE</strong> : <a title="Squeeze More Battery Life from Your Linux Laptop with Jupiter" href="http://www.linux-magazine.com/Online/Blogs/Productivity-Sauce-Dmitri-s-open-source-blend-of-productive-computing/Squeeze-More-Battery-Life-from-Your-Linux-Netbook-with-Jupiter">Linux  Magazine</a>]</pre>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/07/linux-aumentare-autonomia-portatile/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1280&amp;md5=cec26ce9b16c2ff34b325d1b5f6f4f53" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=GJiK5crN6tE:Lo-XR2foeOg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=GJiK5crN6tE:Lo-XR2foeOg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=GJiK5crN6tE:Lo-XR2foeOg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=GJiK5crN6tE:Lo-XR2foeOg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=GJiK5crN6tE:Lo-XR2foeOg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=GJiK5crN6tE:Lo-XR2foeOg:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=GJiK5crN6tE:Lo-XR2foeOg:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=GJiK5crN6tE:Lo-XR2foeOg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/GJiK5crN6tE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/07/linux-aumentare-autonomia-portatile/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F07%2Flinux-aumentare-autonomia-portatile%2F&amp;language=it_IT&amp;category=text&amp;title=GNU%2FLinux+%26%238211%3B+Aumentare+l%26%238217%3Bautonomia+del+portatile&amp;description=Vorrei+condividere+con+voi+una+piccola+chicca%2C+non+mi+dilungher%C3%B2+molto+perch%C3%A8+sono+in+una+fase+haiku+della+mia+vita%26%238230%3Binsomma%2C+m%26%238217%3Babbutta+scrivere.+Bando+alle+ciance+che+gi%C3%A0+ho+usato+un...&amp;tags=autonomia%2Cdurata+batteria%2Claptop%2Cperformance%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/07/linux-aumentare-autonomia-portatile/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=linux-aumentare-autonomia-portatile</feedburner:origLink></item>
		<item>
		<title>Firefox 3.6.6 arriva nei repository Ubuntu</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/RXtIp3DHtgY/</link>
		<comments>http://www.xoen.org/2010/06/firefox-3-6-6-in-ubuntu/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 15:28:12 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[processi separati]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1273</guid>
		<description><![CDATA[Firefox 3.6.6 arriva nei repository di Ubuntu GNU/Linux. Stabilità migliorata grazie ai plugin in processi separati.]]></description>
				<content:encoded><![CDATA[<p>Firefox 3.6.6 è arrivato nei repository Ubuntu. Si tratta in pratica della versione 3.6.4 di cui <a title="Firefox 3.6.4 - Processi separati per i plugin" href="http://www.xoen.org/2010/04/firefox-processi-separati-plugin/">vi avevo già parlato</a>, che dovrebbe evitare che crash ai famigerati plugin flash/silverlight portino al crash dell&#8217;intero Firefox.</p>
<h2 style="text-align: center;">E le versioni 3.6.4 e 3.6.5 che fine hanno fatto??</h2>
<p>Tranquilli non siete stati rapiti dagli alieni (o si?)<span id="more-1273"></span>, non avete visto la versione 3.6.4 perchè neanche il tempo di rilasciarla hanno rilasciato un ulteriore versione (3.6.6 appunto) per risolvere un <a title="Bug #574905  - Increase hang detector timeout" href="https://bugzilla.mozilla.org/show_bug.cgi?id=574905">piccolo problema</a>, la versione 3.6.5 invece è stata saltata per allineare il numero di versione con quello di Firefox Mobile.</p>
<h2 style="text-align: center;">Tutto qui?</h2>
<p>Si tutto qui, buon aggiornamento e buona navigazione libera da crash dovuti a flash.</p>
<p>PS: Si lo so probabilmente siete più eccitati dall&#8217;uscita di Eclipse al cinema.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/06/firefox-3-6-6-in-ubuntu/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1273&amp;md5=c562096b76d7af6ab5dc7b15cc638589" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=RXtIp3DHtgY:aymhS7fmgYc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=RXtIp3DHtgY:aymhS7fmgYc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=RXtIp3DHtgY:aymhS7fmgYc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=RXtIp3DHtgY:aymhS7fmgYc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=RXtIp3DHtgY:aymhS7fmgYc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=RXtIp3DHtgY:aymhS7fmgYc:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=RXtIp3DHtgY:aymhS7fmgYc:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=RXtIp3DHtgY:aymhS7fmgYc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/RXtIp3DHtgY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/06/firefox-3-6-6-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F06%2Ffirefox-3-6-6-in-ubuntu%2F&amp;language=it_IT&amp;category=text&amp;title=Firefox+3.6.6+arriva+nei+repository+Ubuntu&amp;description=Firefox+3.6.6+%C3%A8+arrivato+nei+repository+Ubuntu.+Si+tratta+in+pratica+della+versione+3.6.4+di+cui+vi+avevo+gi%C3%A0+parlato%2C+che+dovrebbe+evitare+che+crash+ai+famigerati+plugin+flash%2Fsilverlight+portino...&amp;tags=firefox%2Cplugin%2Cprocessi+separati%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/06/firefox-3-6-6-in-ubuntu/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=firefox-3-6-6-in-ubuntu</feedburner:origLink></item>
		<item>
		<title>Create a vhost in Ubuntu GNU/Linux</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/_9UAM3LRDGw/</link>
		<comments>http://www.xoen.org/2010/05/create-vhost-in-ubuntu/#comments</comments>
		<pubDate>Fri, 28 May 2010 07:31:50 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[develop]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[osys]]></category>
		<category><![CDATA[vhost]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1239</guid>
		<description><![CDATA[In this simple article I will explain you how to create a virtual host in Ubuntu GNU/Linux (are you reading the Zend Framework quickstart tutorial :P?)]]></description>
				<content:encoded><![CDATA[<p>Are you reading the Zend Framework quickstart tutorial and you are blocked at &#8220;<a title="Zend Framework Quickstart Tutorial" href="http://framework.zend.com/manual/en/learning.quickstart.create-project.html#learning.quickstart.create-project.vhost">Create a virtual host</a>&#8220;?</p>
<p>It&#8217;s really simple, here I explain how to do it in <a title="Ubuntu GNU/Linux - Server Edition" href="http://www.ubuntu.com/server">Ubuntu GNU/Linux</a> (versione 10.04 LTS).<span id="more-1239"></span></p>
<h2 style="text-align: center;">Hostname</h2>
<p>First you have to choose the hostname for you virtual host. It&#8217;s the first part of the URL you use to access the vhost. For example you can choose <em><strong>myapp.mycomputer</strong></em>. You have to add this row to <strong>/etc/hosts</strong> :</p>
<pre class="brush: plain; title: ; notranslate">127.0.0.1       myapp.mycomputer</pre>
<p>In this way you say &#8220;myapp.mycomputer  domain is mapped to 127.0.0.1, the local host&#8221;.</p>
<h2 style="text-align: center;">Add a virtual host</h2>
<p>Now you create the vhost directory where files for your application goes</p>
<pre class="brush: bash; title: ; notranslate">$ sudo mkdir /var/www/myapp</pre>
<p>And now create the file where you define the vhost (The one with &#8230; in the tutorial), create the file <strong>/etc/apache2/sites-available/myapp.mycomputer</strong> with this content :</p>
<pre class="brush: plain; title: ; notranslate">&lt;VirtualHost *:80&gt;
    ServerName myapp.mycomputer
    DocumentRoot /var/www/myapp
    SetEnv APPLICATION_ENV &quot;development&quot;

    &lt;Directory /var/www/myapp&gt;
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p>In particular note the lines with <strong>ServerName</strong>, <strong>DocumentRoot</strong> and <strong>&lt;Directory &#8230;&gt;</strong> (In case of a Zend Framework application DocumentRoot and &lt;Directory &#8230;&gt; should point to the public directory of it)<strong>.<br />
</strong></p>
<h2 style="text-align: center;">Enable the vhost and enjoy it!</h2>
<p>Now you have to do the last few little things:</p>
<h3 style="text-align: center;">Enable the vhost</h3>
<pre class="brush: bash; title: ; notranslate">$ sudo ln -s /etc/apache2/sites-available/myapp.mycomputer /etc/apache2/sites-enabled/myapp.mycomputer</pre>
<p><strong>UPDATE (2010/09/04)</strong> : The right way to enable it is use the e2ensite command that will create that link for you:</p>
<pre class="brush: bash; title: ; notranslate">$ sudo a2ensite myapp.mycomputer</pre>
<h3 style="text-align: center;">Restart Apache</h3>
<pre class="brush: bash; title: ; notranslate">$ sudo /etc/init.d/apache2 restart</pre>
<h3 style="text-align: center;">Enjoy it!</h3>
<p>Open your favourite browser and go to <a title="The URL of your vhost" href="http://myapp.mycomputer">http://myapp.mycomputer/</a></p>
<h2 style="text-align: center;">Acknowledgement</h2>
<p>This knowledge comes from the <a title="OSys - Where ideas meet technology!" href="http://www.osys.it">OSys</a> R&amp;D department <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/05/create-vhost-in-ubuntu/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1239&amp;md5=852e46a182b35790422812546eb948d0" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_9UAM3LRDGw:aggFcI3ux2E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_9UAM3LRDGw:aggFcI3ux2E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_9UAM3LRDGw:aggFcI3ux2E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_9UAM3LRDGw:aggFcI3ux2E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_9UAM3LRDGw:aggFcI3ux2E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_9UAM3LRDGw:aggFcI3ux2E:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=_9UAM3LRDGw:aggFcI3ux2E:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=_9UAM3LRDGw:aggFcI3ux2E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/_9UAM3LRDGw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/05/create-vhost-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F05%2Fcreate-vhost-in-ubuntu%2F&amp;language=en_GB&amp;category=text&amp;title=Create+a+vhost+in+Ubuntu+GNU%2FLinux&amp;description=Are+you+reading+the+Zend+Framework+quickstart+tutorial+and+you+are+blocked+at+%26%238220%3BCreate+a+virtual+host%26%238220%3B%3F+It%26%238217%3Bs+really+simple%2C+here+I+explain+how+to+do+it+in+Ubuntu+GNU%2FLinux...&amp;tags=apache%2Cosys%2Cvhost%2Czend%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/05/create-vhost-in-ubuntu/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=create-vhost-in-ubuntu</feedburner:origLink></item>
		<item>
		<title>OMMIODDDIO È CAMBIATO GOOOGLE!!</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/9ytjQKaNqgM/</link>
		<comments>http://www.xoen.org/2010/04/omg-cambiato-google/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 17:25:50 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[GNU/linux]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[cambiamenti]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[migrare]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1229</guid>
		<description><![CDATA[Hanno cambiato l'interfaccia del famoso motore di ricerca Google, sicurmante un sacco di gente avrà difficoltà ad usarlo!]]></description>
				<content:encoded><![CDATA[<p>E adesso come faranno i milioni/miliardi di utenti del famoso motore di ricerca? <strong>Ma sono pazzi</strong>? Cioè fanno queste modifiche, e poi la povera gente che deve usare il computer e non vuole <strong>cambiare le proprie abitudini</strong> come fa??</p>
<div id="attachment_1231" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.xoen.org/wp-content/uploads/2010/04/google_201004131.jpeg"><img class="size-full wp-image-1231" title="La nuova interfaccia di Google" src="http://www.xoen.org/wp-content/uploads/2010/04/google_201004131.jpeg" alt="La nuova interfaccia di Google" width="550" height="227" /></a><p class="wp-caption-text">Ecco la nuova interfaccia di Google che sicuramente metterà in serie difficoltà numerosi utenti windows</p></div>
<p>Cioè stiamo scherzando? Ma se le persone usano ancora Windows XP (un <strong>sistema operativo vecchio di NOVE anni</strong>) e figuriamoci migrare a GNU/Linux. La stessa gente che quando gli dici d&#8217;usare <a title="OpenOffice, la suite per l'ufficio che non devi crackare!" href="http://it.openoffice.org/">OpenOffice</a> s&#8217;incazza perchè <strong>preferiscono usare Office crackato</strong>! E quando gli proponi d&#8217;usare <a title="Browser con interfaccia difficile da usare :P" href="http://www.firefox.com">Firefox</a> ti rispondono &#8220;<strong>Ma poi io lo so usare?!</strong>&#8220;????</p>
<p>A Google si drogano (<a title="Che sotto la &quot;nuova&quot; interfaccia si nasconda caffeine?" href="http://googlewebmastercentral.blogspot.com/2009/08/help-test-some-next-generation.html">caffeina</a>?!), sono pazzi&#8230;sicuramente un sacco di gente comincerà ad usare <a title="Bingo!" href="http://www.bing.com">SPONG</a> (il motore di ricerca che ti rincoglionisce con le immagini sullo sfondo) come proprio motore di ricerca!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/04/omg-cambiato-google/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1229&amp;md5=b2d0ab089607a229a661d35b8b99f6a8" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9ytjQKaNqgM:-f9PjJfKiD8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9ytjQKaNqgM:-f9PjJfKiD8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9ytjQKaNqgM:-f9PjJfKiD8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9ytjQKaNqgM:-f9PjJfKiD8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9ytjQKaNqgM:-f9PjJfKiD8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9ytjQKaNqgM:-f9PjJfKiD8:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=9ytjQKaNqgM:-f9PjJfKiD8:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=9ytjQKaNqgM:-f9PjJfKiD8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/9ytjQKaNqgM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/04/omg-cambiato-google/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F04%2Fomg-cambiato-google%2F&amp;language=it_IT&amp;category=text&amp;title=OMMIODDDIO+%C3%88+CAMBIATO+GOOOGLE%21%21&amp;description=E+adesso+come+faranno+i+milioni%2Fmiliardi+di+utenti+del+famoso+motore+di+ricerca%3F+Ma+sono+pazzi%3F+Cio%C3%A8+fanno+queste+modifiche%2C+e+poi+la+povera+gente+che+deve+usare+il+computer...&amp;tags=bing%2Ccambiamenti%2Cgoogle%2Cmigrare%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/04/omg-cambiato-google/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=omg-cambiato-google</feedburner:origLink></item>
		<item>
		<title>La prossima release “minore” di Firefox avrà i processi separati per i plugin</title>
		<link>http://feedproxy.google.com/~r/xoen-blog/~3/btlUWtVv6l4/</link>
		<comments>http://www.xoen.org/2010/04/firefox-processi-separati-plugin/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 14:11:46 +0000</pubDate>
		<dc:creator>xoen</dc:creator>
				<category><![CDATA[italiano]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash fa schifo]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[processi separati]]></category>

		<guid isPermaLink="false">http://www.xoen.org/?p=1215</guid>
		<description><![CDATA[Firefox 3.6.4 porterà presto nelle case di tutti noi processi separati per i plugin migliorando stabilità e performance.]]></description>
				<content:encoded><![CDATA[<p><strong>NOTA</strong>: Ti consiglio di <a title="Lode all'ipnorospo!" href="http://www.tapper-ware.net/stable/web.dom.stresstest.transform/"><strong>andare qui</strong></a> prima di leggere l&#8217;articolo, in questo modo tutto ti sembrerà più convincente.</p>
<p>Ebbene si, come <a title="Firefox plans for 2010" href="http://mozillalinks.org/wp/2009/12/next-firefox-major-update-lorentz-could-be-a-minor/">già anticipato</a> a dicembre e addirittura senza troppi ritardi, il prossimo aggiornamento &#8220;minore&#8221; di Firefox ovvero la versione 3.6.4 non sarà poi così tanto minore.</p>
<h2 style="text-align: center;">OOP significa programmazione ad oggetti?</h2>
<p>No, OOP sta per &#8220;<strong>Out of Process</strong>&#8221; e cioè che i plugin adesso staranno in un processo a parte e che quindi non causeranno tutti i problemi di stabilità che causano adesso. (E considerate che già adesso <strong><a title="Firefox 3.6 più stabile di Firefox 3.5" href="http://mozillalinks.org/wp/2010/04/firefox-3-6-about-30-more-stable-than-firefox-3-5/">Firefox 3.6 è più stabile di Firefox 3.5</a></strong> del ~30%!)</p>
<div id="attachment_1220" class="wp-caption aligncenter" style="width: 345px"><a href="http://www.xoen.org/wp-content/uploads/2010/04/flash_fa_schifo.png"><img class="size-full wp-image-1220" title="Il plugin flash crasha senza portarsi tutto Firefox" src="http://www.xoen.org/wp-content/uploads/2010/04/flash_fa_schifo.png" alt="Firefox 3.6.4 e come gestisce i crash dei plugin" width="335" height="254" /></a><p class="wp-caption-text">Ecco una immagine che mostra Adobe Flash fallire miseramente, ho l&#39;impressione che vedrete spesso quest&#39;immagine (perchè Flash fa...?)</p></div>
<p>In pratica <strong>Adobe Flash</strong>, che vi ricordo <strong>FA SCHIFO</strong>, darà meno problemi e se vuole morire lo farà da solo senza portare Firefox con se all&#8217;altro mondo. A proposito visto che flash fa schifo (l&#8217;ho già detto?) potreste prendere in considerazione l&#8217;idea di <strong>non installare flash</strong> ed <a title="Guardare i video senza usare flash grazie a TinyOgg" href="http://www.xoen.org/2010/04/tinyogg-video-senza-flash/">utilizzare TinyOgg</a> per guardare i video presenti su YouTube &amp; company.<span id="more-1215"></span></p>
<h2 style="text-align: center;"><strong>Ma gli aggiornamenti minori non dovrebbere solo risolvere problemi di stabilità/sicurezza?</strong></h2>
<p>Infatti questa è la prima volta che una versione minore di Firefox aggiunge nuove funzionalità, questo è stato fatto per evitare di dover aspettare Firefox 3.7/4.0 per rendere disponibili a tutti caratteristiche già abbastanza mature e collaudate.</p>
<p>In questo modo questa caratteristica sarà disponibile in <strong>Firefox 3.6.4</strong> che dovrebbe essere rilasciato ad <strong>inizio maggio</strong> <img src='http://www.xoen.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<h2 style="text-align: center;"><strong>Come funziona &#8216;sta cosa?</strong></h2>
<p>Bene al è molto semplice, innanzitutto dovrete <strong>aspettare il rilascio della versione 3.6.4</strong> oppure installare <a title="Firefox 3.6.4 beta aka &quot;Lorentz&quot;" href="http://www.mozilla.com/en-US/firefox/lorentz/">la beta</a> <img src='http://www.xoen.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<p>Fatto ciò &#8220;la cosa&#8221; <strong>funziona già senza</strong> dover toccare nulla per i plugin Flash, QuickTime, e Silverlight. <strong>State pensando al male?</strong> Chissà come mai!! Adobe, Apple, Microsoft&#8230;</p>
<p>Se invece volete che sia creato un processo separato anche per altri plugin dovrete modificare about:config (<a title="Procedura per mettere in sicurezza altri plugin" href="http://mozillalinks.org/wp/2010/04/multi-process-firefox-lorentz-beta-now-available-for-download/">qui spiega come</a>, io non l&#8217;ho provato).</p>
<h2 style="text-align: center;"><strong>Conclusioni</strong></h2>
<p>Usare un processo separato per i plugin è il primo passo per l&#8217;attuazione del <strong>progetto &#8220;<a title="Progetto &quot;Electrolysis&quot;" href="https://wiki.mozilla.org/Content_Processes">Electrolysis</a>&#8220;</strong> per la creazione di un browser in cui interfaccia principale, tab, plugin, etc stiano in <strong>processi separati</strong> per offrire una maggiore stabilità evitando che un crash in uno di questi componenti faccia crashare l&#8217;intero Firefox. Inoltre <strong>su sistemi multicore</strong>/processore processi diversi potranno girare <em>contemporaneamente</em> (e non concorrentemente!) ottenendo così <strong>migliori performance</strong>.</p>
<p>Ancora più interessante questa nuova tipologia di rilasci che permetterà di aggiungere caratteristiche nuove a Firefox senza dover aspettare la nuova release maggiore (<a title="Note di rilascio della prossima versione di Firefox" href="http://www.mozilla.org/projects/devpreview/releasenotes/">Firefox 3.7/4.0</a>), in questo modo potremo avere un browser al passo coi tempi senza aspettare tempi biblici, una mossa molto furba da parte di Mozilla.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="standard" count="1" href="http://www.xoen.org/2010/04/firefox-processi-separati-plugin/">{lang: 'it'}</g:plusone></div> <p><a href="http://www.xoen.org/?flattrss_redirect&amp;id=1215&amp;md5=15d23e5749cad2f7cbbe693beb53569f" title="Flattr" target="_blank"><img src="http://www.xoen.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/xoen-blog?a=btlUWtVv6l4:pB-moFYiHEs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=btlUWtVv6l4:pB-moFYiHEs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=btlUWtVv6l4:pB-moFYiHEs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=btlUWtVv6l4:pB-moFYiHEs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=btlUWtVv6l4:pB-moFYiHEs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=btlUWtVv6l4:pB-moFYiHEs:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/xoen-blog?i=btlUWtVv6l4:pB-moFYiHEs:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/xoen-blog?a=btlUWtVv6l4:pB-moFYiHEs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/xoen-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/xoen-blog/~4/btlUWtVv6l4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.xoen.org/2010/04/firefox-processi-separati-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=xoen&amp;popout=1&amp;url=http%3A%2F%2Fwww.xoen.org%2F2010%2F04%2Ffirefox-processi-separati-plugin%2F&amp;language=it_IT&amp;category=text&amp;title=La+prossima+release+%26%238220%3Bminore%26%238221%3B+di+Firefox+avr%C3%A0+i+processi+separati+per+i+plugin&amp;description=NOTA%3A+Ti+consiglio+di+andare+qui+prima+di+leggere+l%26%238217%3Barticolo%2C+in+questo+modo+tutto+ti+sembrer%C3%A0+pi%C3%B9+convincente.+Ebbene+si%2C+come+gi%C3%A0+anticipato+a+dicembre+e+addirittura+senza+troppi+ritardi%2C...&amp;tags=firefox%2Cflash+fa+schifo%2Cplugin%2Cprocessi+separati%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.xoen.org/2010/04/firefox-processi-separati-plugin/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=firefox-processi-separati-plugin</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using n/a

 Served from: www.xoen.org @ 2013-05-21 12:33:23 by W3 Total Cache -->
