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

<channel>
	<title></title>
	<atom:link href="http://discoverylinux.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://discoverylinux.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 May 2013 08:13:20 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='discoverylinux.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1787cff96479faec1ef737787ec1f8d6?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title></title>
		<link>http://discoverylinux.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://discoverylinux.wordpress.com/osd.xml" title="" />
	<atom:link rel='hub' href='http://discoverylinux.wordpress.com/?pushpress=hub'/>
		<item>
		<title>[GUIDA] Error(22) in mount di filesystem SMB-CIFS con fstab in Ubuntu 12.10-13.04</title>
		<link>http://discoverylinux.wordpress.com/2012/11/15/guida-error22-in-mount-di-filesystem-smb-cifs-con-fstab-in-ubuntu-12-10-13-04/</link>
		<comments>http://discoverylinux.wordpress.com/2012/11/15/guida-error22-in-mount-di-filesystem-smb-cifs-con-fstab-in-ubuntu-12-10-13-04/#comments</comments>
		<pubDate>Thu, 15 Nov 2012 15:45:49 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[cifs]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[errore]]></category>
		<category><![CDATA[filesyste]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[partizione]]></category>
		<category><![CDATA[precise]]></category>
		<category><![CDATA[problema]]></category>
		<category><![CDATA[quantal]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=978</guid>
		<description><![CDATA[ Rieccoci con l&#8217;ennesima guida per risolvere i miei e, non che io ci speri, anche vostri problemi. In questo breve howto vedremo come risolvere i più comuni problemi di montaggio di filesystem SMB &#8211; CIFS mediante modifica del file fstab. In particolare il mio problema riguarda l&#8217;errore di mount: sudo mount -a Per vedermi rispondere [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=978&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-979" title="problemi filesystem SMB - CIFS" alt="" src="http://discoverylinux.files.wordpress.com/2012/11/original_suicide-computer-animation-blood.gif?w=450"   /> Rieccoci con l&#8217;ennesima guida per risolvere i <strong>miei</strong> e, non che io ci speri, <strong>anche vostri</strong> problemi.<span id="more-978"></span></p>
<p>In questo breve howto vedremo come risolvere i più comuni <strong>problemi di montaggio di filesystem SMB &#8211; CIFS</strong> mediante modifica del file <strong>fstab</strong>. In particolare il mio problema riguarda l&#8217;errore di mount:</p>
<pre>sudo mount -a</pre>
<p>Per vedermi rispondere dal sistema:</p>
<blockquote><p>mount error(22): Invalid argument<br />
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)</p></blockquote>
<p>Tutto questo sta ad indicare<strong> errori di mounting dei filesystem</strong> contenuti dentro al file /etc/fstab, presente nei nostri sistemi linux</p>
<p>Il problema è sorto a seguito di un aggiornamento da Ubuntu 12.04 al fiammante Ubuntu Quantal 12.10. Dopo alcune ricerche ho scoperto che altri presentavano problemi simili ed ho trovato un modo per indagare sul log di mount da parte del kernel dai commenti presenti <a href="https://bugs.launchpad.net/ubuntu/+source/cifs-utils/+bug/1001680" target="_blank">qui</a> e <a href="https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/995535" target="_blank">qui</a></p>
<p>A questo punto mi sono armato di terminale ed ho scoperto come risolvere, innanzitutto <strong>apriamo il nostro fstab</strong>:</p>
<pre>sudo gedit /etc/fstab</pre>
<p>E controlliamo la linea del filesystem che non ne vuole saperne di montarsi, ad esempio:</p>
<blockquote>
<pre>//filesystem/dati /mnt/DATI cifs auto,users,umask=007,user=Workgroup/********,password=******,uid=1000,rw 0 0</pre>
</blockquote>
<p>Ora proviamo a dare un mount mediante:</p>
<pre>sudo mount -a</pre>
<p>e di seguito apriamo il file di<strong> log degli eventi del kernel</strong> con:</p>
<pre> gedit /var/log/kern.log</pre>
<p>Qui, alla fine del documento, possiamo notare come ogni riga presenta la data e l&#8217;evento memorizzato</p>
<blockquote>
<pre>Nov 15 15:25:00 NOMEPC kernel: [73667.083371] CIFS: Unknown mount option "umask=007"</pre>
</blockquote>
<p>Da qui ho scoperto che nel mio caso dovevo eliminare l&#8217;opzione  &#8221;umask=007&#8243; dalla riga di mount del file fstab (riga che ho ricopiato chissà dove e chissà quanto tempo fa). A questo punto effettuando il mount delle periferiche mediante:</p>
<pre>sudo mount -a</pre>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/cifs/'>cifs</a>, <a href='http://discoverylinux.wordpress.com/tag/error/'>error</a>, <a href='http://discoverylinux.wordpress.com/tag/errore/'>errore</a>, <a href='http://discoverylinux.wordpress.com/tag/filesyste/'>filesyste</a>, <a href='http://discoverylinux.wordpress.com/tag/fstab/'>fstab</a>, <a href='http://discoverylinux.wordpress.com/tag/mount/'>mount</a>, <a href='http://discoverylinux.wordpress.com/tag/network/'>network</a>, <a href='http://discoverylinux.wordpress.com/tag/partizione/'>partizione</a>, <a href='http://discoverylinux.wordpress.com/tag/precise/'>precise</a>, <a href='http://discoverylinux.wordpress.com/tag/problema/'>problema</a>, <a href='http://discoverylinux.wordpress.com/tag/quantal/'>quantal</a>, <a href='http://discoverylinux.wordpress.com/tag/samba/'>Samba</a>, <a href='http://discoverylinux.wordpress.com/tag/smb/'>smb</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=978&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/11/15/guida-error22-in-mount-di-filesystem-smb-cifs-con-fstab-in-ubuntu-12-10-13-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/11/original_suicide-computer-animation-blood.gif" medium="image">
			<media:title type="html">problemi filesystem SMB - CIFS</media:title>
		</media:content>
	</item>
		<item>
		<title>[GUIDA] Problemi con wifi Atheros e Ubuntu 12.04 LTS Pengolin</title>
		<link>http://discoverylinux.wordpress.com/2012/06/02/guida-problemi-con-wifi-atheros-e-ubuntu-12-04-lts-pengolin/</link>
		<comments>http://discoverylinux.wordpress.com/2012/06/02/guida-problemi-con-wifi-atheros-e-ubuntu-12-04-lts-pengolin/#comments</comments>
		<pubDate>Sat, 02 Jun 2012 17:50:49 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[AR2413]]></category>
		<category><![CDATA[AR2414]]></category>
		<category><![CDATA[AR5005G]]></category>
		<category><![CDATA[ath5k]]></category>
		<category><![CDATA[atheros]]></category>
		<category><![CDATA[connessione]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[modprobe]]></category>
		<category><![CDATA[pangolin]]></category>
		<category><![CDATA[senza fili]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=965</guid>
		<description><![CDATA[Questo mini articolo è dovuto, almeno a me stesso, perchè posso definire chiuso un bug che ha afflitto la mia postazione pc sin dalla prima ubuntu che vi ho installato sopra  (la 10.10 se non vado errato). Il problema è meglio descritto nella pagina launchpad alla quale sono giunto per puro caso (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/568090): Basically I [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=965&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft" title="qualcomm atheros wifi su ubuntu" src="http://www.atheros.com/images/format/atheros_top_logo.gif" alt="" width="212" height="62" />Questo mini articolo è <strong>dovuto</strong>, almeno a me stesso, perchè posso definire chiuso un <strong>bug</strong> che ha afflitto la mia postazione pc sin dalla prima ubuntu che vi ho installato sopra  (la 10.10 se non vado errato).</p>
<p>Il problema è meglio descritto nella pagina <strong>launchpad</strong> alla quale sono giunto per puro caso<br />
(<a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/568090">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/568090</a>):</p>
<blockquote><p>Basically I kept gettng the &#8220;Waiting for &lt;insert site here&gt;&#8230;&#8221; status on whatever browser I used. Pages would load after a really long time, or sometimes not at all. My laptop uses the AR2413 chipset, which utilizes the ath5k wireless module.</p></blockquote>
<h2>Sintomi</h2>
<p>In soldoni, i <strong>sintomi</strong> del suddetto bug sono i seguenti:</p>
<ol>
<li><strong>Connessione lenta</strong>: tutto internet va a rilento ed a volte non carica per niente le pagine</li>
<li><strong>Alcune</strong> <strong>pagine</strong> web vengono <strong>caricate</strong> ed <strong>altre</strong> <strong>no</strong>, questo in maniera apparentemente aleatoria</li>
<li>La <strong>wifi</strong> <strong>non</strong> è <strong>stabile</strong></li>
</ol>
<h2>Configurazione</h2>
<p>Il <strong>modulo</strong> Wifi incriminato sembra essere l&#8217;<strong>ath5k</strong> della atheros, che governa la mia<strong> scheda wifi PCI</strong>:</p>
<blockquote><p>Ethernet controller: <strong>Atheros</strong> Communications Inc. <strong>AR2413/AR2414</strong> Wireless Network Adapter [AR5005G(S) 802.11bg]</p></blockquote>
<p>Il bug sembra affliggere <strong>Ubuntu 10.04 LTS e successivi</strong>. Attualmente posso confermare che il problema si presenta su tutte le versioni di Ubuntu  intermedie, avendolo riscontrato sulla mia configurazione.</p>
<p><span id="more-965"></span></p>
<p>Se il vostro pc presenta problematiche simili in wifi, potreste essere affetti dal medesimo bug.</p>
<h2>Soluzione</h2>
<h3>Rimuovere il modulo</h3>
<p>Per testare velocemente una soluzione <strong>rimuovete</strong> il <strong>modulo</strong> <strong>ath5k</strong>. Aprite un terminale ed incollate al suo interno:</p>
<pre> sudo rmmod ath5k</pre>
<h3>Caricare il modulo</h3>
<p>e ricaricatelo con il parametro <strong>nohwcrypt</strong> (come viene descritto nel bug):</p>
<pre> sudo modprobe  ath5k nohwcrypt</pre>
<h3>Rendere permanenti le modifiche</h3>
<p>La connessione finalmente non dovrebbe più singhiozzare o bloccarsi durante i maledetti pagamenti online ( Serata interessante quella, non provate a farlo a casa vostra&#8230;) .</p>
<p>Se tutto funziona meglio di prima, occorre <strong>rendere permanenti le modifiche</strong> effettuate mediante il comando:</p>
<pre>sudo sh -c "echo 'options ath5k nohwcrypt' &gt;/etc/modprobe.d/custom-wireless.conf"</pre>
<p>Se la soluzione presentata funziona alche nel vostro caso, lasciate un commento descrivendo la vostra configurazione:</p>
<ul>
<li>Versione di <strong>Ubuntu</strong> sul quale riscontrate il bug</li>
<li>Hardware problematico, rintracciabile con il comando <strong>lspci</strong> da terminale</li>
</ul>
<p>Alla prossima!</p>
<p>Fonte: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/568090">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/568090</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/hardware/'>hardware</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/ar2413/'>AR2413</a>, <a href='http://discoverylinux.wordpress.com/tag/ar2414/'>AR2414</a>, <a href='http://discoverylinux.wordpress.com/tag/ar5005g/'>AR5005G</a>, <a href='http://discoverylinux.wordpress.com/tag/ath5k/'>ath5k</a>, <a href='http://discoverylinux.wordpress.com/tag/atheros/'>atheros</a>, <a href='http://discoverylinux.wordpress.com/tag/connessione/'>connessione</a>, <a href='http://discoverylinux.wordpress.com/tag/internet/'>internet</a>, <a href='http://discoverylinux.wordpress.com/tag/modprobe/'>modprobe</a>, <a href='http://discoverylinux.wordpress.com/tag/pangolin/'>pangolin</a>, <a href='http://discoverylinux.wordpress.com/tag/senza-fili/'>senza fili</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a>, <a href='http://discoverylinux.wordpress.com/tag/wifi/'>wifi</a>, <a href='http://discoverylinux.wordpress.com/tag/wireless/'>wireless</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=965&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/06/02/guida-problemi-con-wifi-atheros-e-ubuntu-12-04-lts-pengolin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://www.atheros.com/images/format/atheros_top_logo.gif" medium="image">
			<media:title type="html">qualcomm atheros wifi su ubuntu</media:title>
		</media:content>
	</item>
		<item>
		<title>[GUIDA] Installare LibreCAD 2.0.0 alpha su Ubuntu</title>
		<link>http://discoverylinux.wordpress.com/2012/05/28/guida-installare-librecad-2-0-0-alpha-su-ubuntu/</link>
		<comments>http://discoverylinux.wordpress.com/2012/05/28/guida-installare-librecad-2-0-0-alpha-su-ubuntu/#comments</comments>
		<pubDate>Mon, 28 May 2012 10:13:53 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[progetto]]></category>
		<category><![CDATA[segnalazioni]]></category>
		<category><![CDATA[sperimentale]]></category>
		<category><![CDATA[2d]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[CAD]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[librecad]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[testing alpha]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=953</guid>
		<description><![CDATA[Oggi mi sono imbattuto in  LibreCAD, un CAD open source, multipiattaforma, con il supporto alle maggiori funzionalità e che quest&#8217;anno è stato largamente adottato anche nel Google Summer Of Code 2012. About Questo potente tool è rinato dalle ceneri di Qcad, CAD completo basato su Qt3. Per qualche mese si chiamò CADuntu e, praise the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=953&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft" title="LibraCAD logo" src="http://librecad.org/files/live/sites/lc/files/WebImages/LogoLibrecad_logo.png" alt="" width="229" height="50" />Oggi mi sono imbattuto in  <a title="libreCAD, free 2D CAD" href="http://librecad.org/" target="_blank">LibreCAD</a>, un<strong> CAD open source</strong>, <strong>multipiattaforma</strong>, con il supporto alle maggiori <strong>funzionalità</strong> e che quest&#8217;anno è stato largamente adottato anche nel <a title="libre cad google summer of code 2012" href="http://wiki.librecad.org/index.php/GSoC_2012" target="_blank">Google Summer Of Code 2012</a>.<span id="more-953"></span></p>
<h2>About</h2>
<p>Questo potente tool è rinato dalle ceneri di <strong>Qcad</strong>, CAD completo basato su Qt3. Per qualche mese si chiamò <strong>CADuntu</strong> e, praise the Lord, venne modificato il nome in qualcosa di maggiormente orecchiabile, era nato <strong>LibreCAD.</strong></p>
<p>Dal sito del progetto:</p>
<blockquote><p>LibreCAD started as a project to build CAM capabilities into the community version of QCad for use with a Mechmate CNC router.</p>
<p>Since QCad CE was built around the outdated Qt3 library, it had to be ported to Qt4 before additional enhancements. This gave rise to CADuntu.</p>
<p>The project was known as CADuntu only for a couple of months before the community decided that the name was inappropriate. After some discussion within the community and research on existing names, CADuntu was renamed to LibreCAD.</p>
<p>Porting the rendering engine to Qt4 proved to be a large task, so LibreCAD initially still depended on the Qt3 support library. The Qt4 porting was completed eventually during the development of 2.0.0 series, thanks to our master developer Rallaz, and LibreCAD has become Qt3 free except in the 1.0.0 series.</p></blockquote>
<h2>Installazione</h2>
<p>La versione 2.0.0 è ancora in via di sviluppo e ad oggi siamo arrivati alla <strong>2.0.0 alpha 3. </strong>Per installare e testare il software nell&#8217;ultima versione disponibile,</p>
<ol>
<li>Aprire un terminale</li>
<li><em>sudo apt-add-repository ppa:librecad-dev/librecad-daily</em><br />
<img class="aligncenter size-full wp-image-954" title="install ppa librecad" src="http://discoverylinux.files.wordpress.com/2012/05/ddelucadddeluca0203161-_001.jpeg?w=450&#038;h=287" alt="" width="450" height="287" /></li>
<li>Inserire la password e  premere ENTER se richiesto</li>
<li><em>sudo apt-get update</em></li>
<li><em>sudo apt-get install librecad</em></li>
</ol>
<h2><em><br />
</em>Screenshots</h2>
<p><a href="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg"><img class="aligncenter size-full wp-image-956" title="Librecad 2.0.0 alpha3" src="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg?w=450&#038;h=253" alt="" width="450" height="253" /></a></p>
<p><a href="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg"><img class="aligncenter size-full wp-image-956" title="Librecad 2.0.0 alpha3 open" src="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg?w=450&#038;h=253" alt="" width="450" height="253" /></a></p>
<p>Vi ricordo che il software è inoltre presente nel <strong>repository ufficiale di Ubuntu</strong>, quindi installabile nell&#8217;ultima versione stabile mediante <strong>Ubuntu Software Center</strong></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/news/'>news</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/'>progetto</a>, <a href='http://discoverylinux.wordpress.com/category/segnalazioni/'>segnalazioni</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/sperimentale/'>sperimentale</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/2d/'>2d</a>, <a href='http://discoverylinux.wordpress.com/tag/3d/'>3d</a>, <a href='http://discoverylinux.wordpress.com/tag/cad/'>CAD</a>, <a href='http://discoverylinux.wordpress.com/tag/graphic/'>graphic</a>, <a href='http://discoverylinux.wordpress.com/tag/librecad/'>librecad</a>, <a href='http://discoverylinux.wordpress.com/tag/ppa/'>ppa</a>, <a href='http://discoverylinux.wordpress.com/tag/testing-alpha/'>testing alpha</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=953&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/05/28/guida-installare-librecad-2-0-0-alpha-su-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://librecad.org/files/live/sites/lc/files/WebImages/LogoLibrecad_logo.png" medium="image">
			<media:title type="html">LibraCAD logo</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/ddelucadddeluca0203161-_001.jpeg" medium="image">
			<media:title type="html">install ppa librecad</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg" medium="image">
			<media:title type="html">Librecad 2.0.0 alpha3</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_006.jpeg" medium="image">
			<media:title type="html">Librecad 2.0.0 alpha3 open</media:title>
		</media:content>
	</item>
		<item>
		<title>Rilasciato Gimp 2.8: download e tutte le novità!</title>
		<link>http://discoverylinux.wordpress.com/2012/05/07/rilasciato-gimp-2-8-download-e-tutte-le-novita-parte-1/</link>
		<comments>http://discoverylinux.wordpress.com/2012/05/07/rilasciato-gimp-2-8-download-e-tutte-le-novita-parte-1/#comments</comments>
		<pubDate>Mon, 07 May 2012 10:30:00 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[arts]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[finestra singola]]></category>
		<category><![CDATA[gimp 2.8]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[single window]]></category>
		<category><![CDATA[Single-Window Mode]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=913</guid>
		<description><![CDATA[Dopo 3 anni di lavoro e sviluppo nella &#8220;versione di mezzo&#8221; 2.7.x, ecco finalmente rilasciato alla luce del sole il nuovo fiammante GIMP 2.8 con tutte le novità attese per l&#8217;occasione Link per il download per la gran parte dei sistemi operativi: http://www.gimp.org/downloads/ Ecco alcune delle novità principali di questa attesissima release: Finestra singola: &#8220;finalmente!&#8221; esclameranno [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=913&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-915" title="Gimp 2.8.0 splash screen logo" alt="Gimp 2.8.0 splash screen logo" src="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_007.jpeg?w=450&#038;h=291" height="291" width="450" />Dopo 3 anni di lavoro e sviluppo nella &#8220;versione di mezzo&#8221; 2.7.x, ecco finalmente <strong>rilasciato</strong> alla luce del sole il nuovo fiammante<strong> GIMP 2.8</strong> con tutte le <strong>novità</strong> attese per l&#8217;occasione</p>
<p><span id="more-913"></span></p>
<p>Link per il <strong>download</strong> per la gran parte dei sistemi operativi: <a href="http://www.gimp.org/downloads/">http://www.gimp.org/downloads/</a></p>
<p>Ecco alcune delle <strong>novità</strong> principali di questa attesissima release:</p>
<p><a href="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_013.jpeg"><img class="aligncenter size-full wp-image-920" title="Gimp finestra singola - abilitare disabilitare - enable disable" alt="Gimp finestra singola - abilitare disabilitare - enable disable" src="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_013.jpeg?w=450&#038;h=253" height="253" width="450" /></a></p>
<p><strong>Finestra singola: &#8220;</strong><em>finalmente</em>!&#8221; esclameranno in molti.. &#8220;<em>Alleluja!</em>&#8221; grideranno gli altri!&#8230; Diciamo che la UI di GIMP non è mai piaciuta molto anche se, personalmente, trovavo interessante e molto personalizzabile l&#8217;interfaccia a finestre multiple (soprattutto con utilizzo multi monitor). Per i nuovi utenti compresi coloro abituati a software di fotoritocco come photoshop o paint shop pro, questo tipo di interfaccia decisamente non convenzionale risultava di difficile gestione. Da qui lo sviluppo di una interfaccia parallele a Finestra singola,<br />
Si abilita da <em>Finestre -&gt; Modalità Finestra singola</em></p>
<p><img class="aligncenter size-full wp-image-924" title="GIMP pannelli modalità colonna - column panel" alt="" src="http://discoverylinux.files.wordpress.com/2012/05/selezione_014.jpeg?w=450&#038;h=718" height="718" width="450" /></p>
<p><strong>Pannelli in modalità &#8220;Colonna&#8221;: </strong>Nuova disposizione opzionale dei <strong>pannelli</strong>, ora posizionabili anche in <strong>colonna.</strong><br />
Si abilita <em>trascinando l&#8217;icona di un pannello </em>(pennelli, canali, tracciati, livelli ecc)<em> al lato di un altro pannello finchè una riga colorata non indica l&#8217;ancoraggio, a questo punto lasciare la finestra per affiancarla in colonna ai pannelli esistenti</em></p>
<p><img class="aligncenter" title="gimp salva ed exporta" alt="" src="http://www.gimp.org/release-notes/images/2.8-save-and-export.png" height="188" width="316" /></p>
<p><strong>&#8220;Salva&#8221; ed &#8220;Esporta&#8221;: </strong>Cambiamento molto concettuale quello del<strong> Salva</strong> != (diverso da) <strong>Esporta.<br />
Prima</strong> un utente <strong>sceglieva</strong> se salvare in JPG,PNG e altri formati comuni, oppure in XCF, formato di GIMP che mantiene più informazioni come livelli, canali tracciati maschere. <strong>Ora</strong> con la nuova versione viene distinto il <strong>salvataggio</strong>, che crea file XCF, dall&#8217;<strong>esportazione</strong>, che converte i file in JPG, PNG, GIF, TIFF, TGA ed altre decine di formati di immagini.<br />
Si abilita dal menù <em>File -&gt; Salva/Esporta</em> oppure mediante le scorciatoie <em>CTRL+S</em> e <em>CTRL+E</em></p>
<p>Fonte: <a href="http://www.gimp.org/release-notes/gimp-2.8.html">http://www.gimp.org/release-notes/gimp-2.8.html</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/arts/'>arts</a>, <a href='http://discoverylinux.wordpress.com/category/guide/gimp-guide/'>gimp</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/news/'>news</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/finestra-singola/'>finestra singola</a>, <a href='http://discoverylinux.wordpress.com/tag/gimp/'>gimp</a>, <a href='http://discoverylinux.wordpress.com/tag/gimp-2-8/'>gimp 2.8</a>, <a href='http://discoverylinux.wordpress.com/tag/linux/'>linux</a>, <a href='http://discoverylinux.wordpress.com/tag/single-window/'>single window</a>, <a href='http://discoverylinux.wordpress.com/tag/single-window-mode/'>Single-Window Mode</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=913&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/05/07/rilasciato-gimp-2-8-download-e-tutte-le-novita-parte-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_007.jpeg" medium="image">
			<media:title type="html">Gimp 2.8.0 splash screen logo</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/spazio-di-lavoro-1_013.jpeg" medium="image">
			<media:title type="html">Gimp finestra singola - abilitare disabilitare - enable disable</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/05/selezione_014.jpeg" medium="image">
			<media:title type="html">GIMP pannelli modalità colonna - column panel</media:title>
		</media:content>

		<media:content url="http://www.gimp.org/release-notes/images/2.8-save-and-export.png" medium="image">
			<media:title type="html">gimp salva ed exporta</media:title>
		</media:content>
	</item>
		<item>
		<title>[How-To] Restore packages after upgrade from a ppa with ppa-purge</title>
		<link>http://discoverylinux.wordpress.com/2012/04/12/how-to-restore-packages-after-upgrade-from-a-ppa-with-ppa-purge/</link>
		<comments>http://discoverylinux.wordpress.com/2012/04/12/how-to-restore-packages-after-upgrade-from-a-ppa-with-ppa-purge/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 10:34:39 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=905</guid>
		<description><![CDATA[Today I&#8217;ve found this interesting software that allows you to literally undo any upgrade done adding a ppa (launchpad repository) and doing an apt-get update plus upgrade. It&#8217;s name is PPA-PURGE! The first thing to do is to install ppa-purge through apt-get: sudo apt-get install ppa-purge After that, you can undo any change of an installed [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=905&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I&#8217;ve found this interesting software that allows you to literally <strong>undo any upgrade done adding a ppa</strong> (launchpad repository) and doing an apt-get update plus upgrade.</p>
<p>It&#8217;s name is <strong>PPA-PURGE</strong>!</p>
<p>The first thing to do is to <strong>install ppa-purge</strong> through apt-get:</p>
<pre> sudo apt-get install ppa-purge</pre>
<p>After that, you can undo any change of an <strong>installed</strong> repository (if you have removed a ppa, then re-add it) by entering:</p>
<pre>sudo ppa-purge ppa:PPA_NAME</pre>
<p>As an example, if you added the testing ppa for <strong>gimp 2.7.5 (<a href="https://launchpad.net/~matthaeus123/+archive/mrw-gimp-svn">https://launchpad.net/~matthaeus123/+archive/mrw-gimp-svn</a>) </strong>and the other<strong> suggested and required </strong>repos, like:</p>
<blockquote><p><a href="http://ppa.launchpad.net/gnome3-team/gnome3/ubuntu" rel="nofollow">http://ppa.launchpad.net/gnome3-team/gnome3/ubuntu</a></p>
<p><a href="http://ppa.launchpad.net/ricotz/testing/ubuntu" rel="nofollow">http://ppa.launchpad.net/ricotz/testing/ubuntu</a></p></blockquote>
<p>&#8230;and that returned to you like a terrible<strong> self inflicted pain </strong>because (as an example) the gtk update broke your Unity UI and you are like:</p>
<p style="text-align:center;"><strong>&#8220;NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO!!!!&#8221;</strong></p>
<p><a href="http://cdn.leganerd.com/wp-content/uploads/LEGANERD_037003.jpg"><img class="aligncenter" title="darth vader noooo" src="http://cdn.leganerd.com/wp-content/uploads/LEGANERD_037003.jpg" alt="" width="521" height="621" /></a></p>
<p>Well.. ppa-purge could<strong> save your life </strong>(or mine) , just enter the command:</p>
<pre>sudo ppa-purge<strong> ppa:matthaeus123/mrw-gimp-svn</strong></pre>
<p>and follow the on screen instructions.</p>
<p><strong><br />
</strong></p>
<p><strong>Happy recovery!</strong></p>
<pre><strong>
</strong></pre>
<p>source: <a href="http://hackedbellini.org/applications/ppa-purge-the-best-friend-for-people-who-lives-on-bleeding-edge/">http://hackedbellini.org/applications/ppa-purge-the-best-friend-for-people-who-lives-on-bleeding-edge/</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/gnome/'>gnome</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/apt-get/'>apt-get</a>, <a href='http://discoverylinux.wordpress.com/tag/ppa/'>ppa</a>, <a href='http://discoverylinux.wordpress.com/tag/repository/'>repository</a>, <a href='http://discoverylinux.wordpress.com/tag/update/'>update</a>, <a href='http://discoverylinux.wordpress.com/tag/upgrade/'>upgrade</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=905&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/04/12/how-to-restore-packages-after-upgrade-from-a-ppa-with-ppa-purge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://cdn.leganerd.com/wp-content/uploads/LEGANERD_037003.jpg" medium="image">
			<media:title type="html">darth vader noooo</media:title>
		</media:content>
	</item>
		<item>
		<title>Vinci un HTC EVO su androidiani.com!</title>
		<link>http://discoverylinux.wordpress.com/2012/04/09/vinci-un-htc-evo-su-androidiani-com/</link>
		<comments>http://discoverylinux.wordpress.com/2012/04/09/vinci-un-htc-evo-su-androidiani-com/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 01:16:21 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[concorso]]></category>
		<category><![CDATA[htc]]></category>

		<guid isPermaLink="false">https://discoverylinux.wordpress.com/?p=903</guid>
		<description><![CDATA[Da ieri 8 aprile fino al 15 aprile é possibile vicere un HTC Evo 3d su Androidiani.com! Link alla notizia: http://www.androidiani.com/il-meglio-della-settimana-android/vinci-un-htc-evo-3d-con-androidiani-com-94230 In bocca al lupo a tutti! Archiviato in:Android Tagged: android, concorso, htc<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=903&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Da ieri 8 aprile fino al 15 aprile é possibile vicere un HTC Evo 3d su Androidiani.com!<br />
Link alla notizia:</p>
<p><a href="http://www.androidiani.com/il-meglio-della-settimana-android/vinci-un-htc-evo-3d-con-androidiani-com-94230" rel="nofollow">http://www.androidiani.com/il-meglio-della-settimana-android/vinci-un-htc-evo-3d-con-androidiani-com-94230</a></p>
<p>In bocca al lupo a tutti!</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/google/android-google/'>Android</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/android/'>android</a>, <a href='http://discoverylinux.wordpress.com/tag/concorso/'>concorso</a>, <a href='http://discoverylinux.wordpress.com/tag/htc/'>htc</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=903&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/04/09/vinci-un-htc-evo-su-androidiani-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>
	</item>
		<item>
		<title>Blender 2.61 Cycles: Where is Cuda/OpenCL device option?</title>
		<link>http://discoverylinux.wordpress.com/2012/01/25/blender-2-61-cycles-where-is-cudaopencl-device-option/</link>
		<comments>http://discoverylinux.wordpress.com/2012/01/25/blender-2-61-cycles-where-is-cudaopencl-device-option/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 14:37:58 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[2.6]]></category>
		<category><![CDATA[configuration panel]]></category>
		<category><![CDATA[cuda]]></category>
		<category><![CDATA[cycles]]></category>
		<category><![CDATA[experimental]]></category>
		<category><![CDATA[experimental feature]]></category>
		<category><![CDATA[gpu rendering]]></category>
		<category><![CDATA[gpu/cpu]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[opencl]]></category>
		<category><![CDATA[rendering system]]></category>
		<category><![CDATA[supported]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=891</guid>
		<description><![CDATA[With the new Blender release (2.61.4 in date 2012-01-25), the Cycles rendering system has been integrated inside the main branch, but i&#8217;ve been disappointed because i can&#8217;t find any of the existing device options (Device and GPU Type in case of a GPU device) like it was until now, as viewable in the picture: Instead of [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=891&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>With the new Blender release (2.61.4 in date 2012-01-25), the <strong>Cycles rendering</strong> system has been integrated inside the main branch, but i&#8217;ve been disappointed because i can&#8217;t find any of the existing <strong>device</strong> options (Device and GPU Type in case of a GPU device) like it was until now, as viewable in the picture:</p>
<p><a href="http://discoverylinux.files.wordpress.com/2012/01/cudaold.png"><img class="aligncenter size-full wp-image-894" title="BlenderCyclesCudaOpenCL_Old" src="http://discoverylinux.files.wordpress.com/2012/01/cudaold.png?w=450" alt=""   /><span id="more-891"></span></a></p>
<p>Instead of it, in the last few days i&#8217;ve found this panel, with a confusing <strong>Feature Set </strong> menu that lets you choose from <strong>Supported</strong> or <strong>Experimental</strong> feature:</p>
<p><a href="http://discoverylinux.files.wordpress.com/2012/01/cudapanelnew.jpg"><img class="aligncenter size-full wp-image-895" title="CyclesPanelNew" src="http://discoverylinux.files.wordpress.com/2012/01/cudapanelnew.jpg?w=450" alt=""   /></a></p>
<p>But <span style="text-decoration:underline;"><strong>where the hell are the CUDA and OpenCL panels</strong></span>? And the</p>
<p><span style="text-decoration:underline;"><strong>Here it is</strong></span> the <strong>new</strong> (orrible!) <strong>position</strong> of the CUDA and OpenCL <strong>configuration panel, </strong>where now you can choose the rendering method and also the dedicated <strong>video card</strong>(multiple video card aren&#8217;t supported yet &#8211; 2012-01-25):</p>
<p><a href="http://discoverylinux.files.wordpress.com/2012/01/cyclespref.jpg"><img class="aligncenter size-full wp-image-896" title="BlenderCyclesPreferences" src="http://discoverylinux.files.wordpress.com/2012/01/cyclespref.jpg?w=450&#038;h=283" alt="" width="450" height="283" /></a></p>
<p>You can view it by pressing <strong>Ctrl+Alt+U</strong> (or going into File&#8211;&gt;<strong>Preferences</strong>) and going to the <strong>System</strong> Panel, here look for the <strong>Compute Device settings</strong>.</p>
<p>&nbsp;</p>
<p>Happy Blending</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/hardware/'>hardware</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/2-6/'>2.6</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/configuration-panel/'>configuration panel</a>, <a href='http://discoverylinux.wordpress.com/tag/cuda/'>cuda</a>, <a href='http://discoverylinux.wordpress.com/tag/cycles/'>cycles</a>, <a href='http://discoverylinux.wordpress.com/tag/experimental/'>experimental</a>, <a href='http://discoverylinux.wordpress.com/tag/experimental-feature/'>experimental feature</a>, <a href='http://discoverylinux.wordpress.com/tag/gpu-rendering/'>gpu rendering</a>, <a href='http://discoverylinux.wordpress.com/tag/gpucpu/'>gpu/cpu</a>, <a href='http://discoverylinux.wordpress.com/tag/nvidia/'>nvidia</a>, <a href='http://discoverylinux.wordpress.com/tag/opencl/'>opencl</a>, <a href='http://discoverylinux.wordpress.com/tag/rendering-system/'>rendering system</a>, <a href='http://discoverylinux.wordpress.com/tag/supported/'>supported</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=891&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/01/25/blender-2-61-cycles-where-is-cudaopencl-device-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/01/cudaold.png" medium="image">
			<media:title type="html">BlenderCyclesCudaOpenCL_Old</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/01/cudapanelnew.jpg" medium="image">
			<media:title type="html">CyclesPanelNew</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2012/01/cyclespref.jpg" medium="image">
			<media:title type="html">BlenderCyclesPreferences</media:title>
		</media:content>
	</item>
		<item>
		<title>[Guida] Kinect su Ubuntu Oneiric 11.10: Nite e User Tracking</title>
		<link>http://discoverylinux.wordpress.com/2012/01/05/guida-kinect-su-ubuntu-oneiric-11-10-nite-e-user-tracking/</link>
		<comments>http://discoverylinux.wordpress.com/2012/01/05/guida-kinect-su-ubuntu-oneiric-11-10-nite-e-user-tracking/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 11:41:33 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[Kinect]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mouse pointer]]></category>
		<category><![CDATA[natural interaction]]></category>
		<category><![CDATA[nite]]></category>
		<category><![CDATA[openni]]></category>
		<category><![CDATA[primesense]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[sensor kinect]]></category>
		<category><![CDATA[simple viewer]]></category>
		<category><![CDATA[user tracking]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=875</guid>
		<description><![CDATA[Nell&#8217;articolo precedente abbiamo visto come installare tutto il necessario (OpenNi e SensorKinect) per collegare il kinect alla nostra workstation Ubuntu così da testare la periferica e le sue funzionalità. Qui vedremo come implementare il riconoscimento scheletrico (Tracker) mediante l&#8217;installazione del middleware NITE. Ciò ci permetterà di sfruttare le caratteristiche più avanzate del dispositivo kinect. Prepariamo il necessario Il [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=875&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a title="[Guida] Kinect su Ubuntu Oneirc 11.10: OpenNi e SensorKinect" href="http://discoverylinux.wordpress.com/2011/12/30/guida-kinect-su-ubuntu-oneirc-11-10-openni-e-sensorkinect/" target="_blank"><img class="alignleft" title="OpenNiSkeleton tracker" src="http://tech.integrate.biz/Images/mocap1.jpg" alt="" width="210" height="240" />Nell&#8217;articolo precedente</a> abbiamo visto come installare tutto il necessario (OpenNi e SensorKinect) per <strong>collegare</strong> il kinect alla nostra workstation Ubuntu così da testare la periferica e le sue funzionalità.</p>
<p>Qui vedremo come implementare il <strong>riconoscimento scheletrico (Tracker)</strong> mediante l&#8217;installazione del middleware NITE. Ciò ci permetterà di sfruttare le caratteristiche più avanzate del dispositivo kinect.</p>
<p><span id="more-875"></span></p>
<h2>Prepariamo il necessario</h2>
<p>Il prerequisito per questa guida è quello di aver già installato OpenNi ed i driver SensorKinect, se non l&#8217;avete già fatto, seguite <a title="[Guida] Kinect su Ubuntu Oneirc 11.10: OpenNi e SensorKinect" href="http://discoverylinux.wordpress.com/2011/12/30/guida-kinect-su-ubuntu-oneirc-11-10-openni-e-sensorkinect/" target="_blank">questa guida</a></p>
<h3>Scarichiamo i sorgenti</h3>
<p>Andiamo nella pagina di download di OpenNi</p>
<p><a href="http://www.openni.org/Downloads/OpenNIModules.aspx">http://www.openni.org/Downloads/OpenNIModules.aspx</a></p>
<p>E qui scarichiamo:</p>
<blockquote><p><strong>1- OpenNi Complian Middleware Binaries</strong></p>
<p><strong>2- Stable</strong></p>
<p><strong>3- Primesense NITE Stable Build for Ubuntu 10.10 </strong></p></blockquote>
<p>Estraiamo il file nella nostra home all&#8217;interno della sottocartella <strong>Nite </strong>che a sua volta è nella cartella <strong>kinect</strong>. Path completo:</p>
<blockquote><p>~/kinect/Nite</p></blockquote>
<p>se necessario creiamo queste cartelle prima di estrarre i file</p>
<h3>Modifichiamo i sorgenti</h3>
<p>Per far si che il sistema Nite si installi, occorre inserire una chiave di licenza in alcuni suoi file, per fare ciò dobbiamo rendere questi file modificabili, aprirli e modificarli:</p>
<pre>cd ~/kinect/Nite/Data
chmod 777 Sample-Scene.xml Sample-Tracking.xml Sample-User.xml
gedit Sample-Scene.xml Sample-Tracking.xml Sample-User.xml</pre>
<p>E sostituire dove vi è scritto</p>
<blockquote><p>&lt;License vendor=&#8221;PrimeSense&#8221; key=&#8221;insert key here&#8221;/&gt;</p></blockquote>
<p>la <strong>chiave</strong> &#8220;0KOIk2JeIBYClPWVnMoRKn5cdY4=&#8221; a posto di &#8221;insert key here&#8221; così che la riga appaia come la seguente:</p>
<blockquote><p>&lt;License vendor=&#8221;PrimeSense&#8221; key=&#8221;0KOIk2JeIBYClPWVnMoRKn5cdY4=&#8221;/&gt;</p></blockquote>
<p>Tale operazione deve essere fatta per tutti e tre i file</p>
<h2>Installiamo Nite</h2>
<pre>cd ~/kinect/Nite/
sudo ./install.sh</pre>
<p>Se ci viene chiesta la <strong>chiave</strong>, incolliamola 0KOIk2JeIBYClPWVnMoRKn5cdY4=</p>
<h3>Testiamo Nite</h3>
<p>Per testare quanto fino ad ora installato possiamo lanciare alcune <strong>dimostrazioni</strong> presenti nel pacchetto <strong>Nite</strong>, oppure quelle già possedute, incluse nel pacchetto di <strong>OpenNi</strong></p>
<p>Per le demo di <strong>Nite</strong>:</p>
<pre>cd ~/kinect/Nite/Samples/Bin/Release</pre>
<p>e lanciamo le demo eseguendole con il prefisso <strong>./</strong></p>
<p>Per le demo di <strong>OpenNi</strong>:</p>
<pre>cd ~/kinect/OpenNI/Platform/Linux/Bin/x64-Release</pre>
<p>e lanciamo le demo eseguendole con il prefisso <strong>./</strong></p>
<p>Problema:</p>
<blockquote><p>Error initializing: Failed to set USB interface!</p></blockquote>
<p>L&#8217;errore viene dal conflitto con il modulo gspca_kinect, per eliminare l&#8217;errore eseguiamo:</p>
<pre>sudo rmmod gspca_kinect</pre>
<p>Ecco uno screenshot <em>pornografico</em></p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/12/track.jpeg"><img class="aligncenter size-full wp-image-880" title="Track" src="http://discoverylinux.files.wordpress.com/2011/12/track.jpeg?w=450&#038;h=281" alt="" width="450" height="281" /></a></p>
<p>Source: <a href="http://forum.ubuntu-it.org/index.php?PHPSESSID=m39lumspa8pfldv4ccgjtdah30&amp;/topic,447789.msg3501185.html#msg3501185">http://forum.ubuntu-it.org/index.php?PHPSESSID=m39lumspa8pfldv4ccgjtdah30&amp;/topic,447789.msg3501185.html#msg3501185</a></p>
<div><span style="font-family:'courier new', 'times new roman', monospace;font-size:10px;line-height:13px;white-space:nowrap;background-color:#bdb67c;"><br />
</span></div>
<div><span style="font-family:'courier new', 'times new roman', monospace;font-size:10px;line-height:13px;white-space:nowrap;background-color:#bdb67c;"><br />
</span></div>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/hardware/'>hardware</a>, <a href='http://discoverylinux.wordpress.com/category/guide/kinect/'>Kinect</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/kinect-2/'>kinect</a>, <a href='http://discoverylinux.wordpress.com/tag/microsoft/'>microsoft</a>, <a href='http://discoverylinux.wordpress.com/tag/mouse-pointer/'>mouse pointer</a>, <a href='http://discoverylinux.wordpress.com/tag/natural-interaction/'>natural interaction</a>, <a href='http://discoverylinux.wordpress.com/tag/nite/'>nite</a>, <a href='http://discoverylinux.wordpress.com/tag/openni/'>openni</a>, <a href='http://discoverylinux.wordpress.com/tag/primesense/'>primesense</a>, <a href='http://discoverylinux.wordpress.com/tag/sdk/'>sdk</a>, <a href='http://discoverylinux.wordpress.com/tag/sensor-kinect/'>sensor kinect</a>, <a href='http://discoverylinux.wordpress.com/tag/simple-viewer/'>simple viewer</a>, <a href='http://discoverylinux.wordpress.com/tag/user-tracking/'>user tracking</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=875&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2012/01/05/guida-kinect-su-ubuntu-oneiric-11-10-nite-e-user-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://tech.integrate.biz/Images/mocap1.jpg" medium="image">
			<media:title type="html">OpenNiSkeleton tracker</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/12/track.jpeg" medium="image">
			<media:title type="html">Track</media:title>
		</media:content>
	</item>
		<item>
		<title>[Guida] Kinect su Ubuntu Oneiric 11.10: OpenNi e SensorKinect</title>
		<link>http://discoverylinux.wordpress.com/2011/12/30/guida-kinect-su-ubuntu-oneirc-11-10-openni-e-sensorkinect/</link>
		<comments>http://discoverylinux.wordpress.com/2011/12/30/guida-kinect-su-ubuntu-oneirc-11-10-openni-e-sensorkinect/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 22:00:18 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[Kinect]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[natural interface]]></category>
		<category><![CDATA[nite]]></category>
		<category><![CDATA[openni]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[sensor kinect]]></category>
		<category><![CDATA[zdepth]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=858</guid>
		<description><![CDATA[In questa guida vedremo come installare OpenNi ed annesso SensorKinect per far funzionare la periferica Kinect su Ubuntu Oneiric 11.10 e, salvo grossi stravolgimenti, anche su versioni successive. Installazione di OpenNi &#8220;The OpenNI Framework provides the interface for physical devices and for middleware components. The API enables modules to be registered in the OpenNI framework [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=858&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft" title="Openni" src="http://www.kinecthacks.com/wp-content/uploads/2011/03/openni.jpg" alt="" width="317" height="117" /></p>
<p>In questa guida vedremo come installare <strong>OpenNi</strong> ed annesso <strong>SensorKinect</strong> per far funzionare la periferica Kinect su Ubuntu Oneiric 11.10 e, salvo grossi stravolgimenti, anche su versioni successive.</p>
<p><strong><strong>Installazione di OpenNi</strong></strong></p>
<blockquote><p><em>&#8220;The OpenNI Framework provides the interface for physical devices and for middleware components. The API enables modules to be registered in the OpenNI framework and used to produce sensory data. Selecting the hardware or middleware module is easy and flexible.&#8221;</em></p></blockquote>
<p><span style="color:#777777;">&#8230;&#8230;..Altro</span></p>
<p><strong>Prepariamo tutto il necessario</strong></p>
<p><strong>Installiamo le dipendenze</strong></p>
<p>Inseriamo in un terminale:</p>
<pre>sudo apt-get install git-core cmake libglut3-dev pkg-config gcc g++ build-essential libxmu-dev libxi-dev libusb-1.0-0-dev doxygen graphviz git</pre>
<p><strong>Problema</strong>: &#8220;libglut3-dev cannot be installed&#8221;</p>
<p>Il sistema potrebbe dirci che è impossibile installare libglut3-dev</p>
<p>In tal risolviamo installando a suo posto &#8220;freeglut&#8221; con il seguente comando:</p>
<pre>sudo apt-get install git-core cmake freeglut3-dev pkg-config gcc g++ build-essential libxmu-dev libxi-dev libusb-1.0-0-dev doxygen graphviz git</pre>
<p><strong>Creiamo ora la directory di lavoro:</strong></p>
<pre>mkdir ~/kinect</pre>
<p>cd ~/kinect</p>
<p><strong>Scarichiamo L&#8217;ultima versione di OpenNi</strong></p>
<p>Consiglio di utilizzare la versione <strong>unstable</strong>, attualmente aggiornata alla 1.5.2.7 piuttosto che la versione stable che, con la mia configurazione, non funziona.</p>
<pre>git clone https://github.com/OpenNI/OpenNI.git</pre>
<p>Per passare alla versione unstable, una volta eseguito il comando precedente, inserire:</p>
<pre>cd OpenNI</pre>
<p>git checkout unstable</p>
<p>Se tutto va per il verso giusto dovreste vedere due righe di <strong>conferma</strong></p>
<blockquote><p>Branch unstable set up to track remote branch unstable from origin.</p>
<p>Switched to a new branch &#8216;unstable&#8217;</p></blockquote>
<p>Se altrimenti non ha funzionato, provate con:</p>
<pre>cd OpenNI</pre>
<p>git branch unstable</p>
<p>git checkout unstable</p>
<p>git pull origin unstable</p>
<p><strong>Installiamo</strong></p>
<pre>cd Platform/Linux/Build</pre>
<p>make &amp;&amp; sudo make install</p>
<p><strong>Problema:</strong> Si potrebbero verificare<strong> errori nella compilazione</strong>, se questi errori riguardano mancanze di file <strong>.dll</strong> (Cannot find the metadata file “system.windows.forms.dll”) o altre &#8220;menate&#8221; che richiamano il mondo Winzozziano, dovremo installare <em>Mono</em> con il seguente comando</p>
<pre>sudo apt-get install mono-complete</pre>
<p>Dopo di che occorre rilanciare</p>
<pre>make &amp;&amp; sudo make install</pre>
<p><strong>Problema:</strong> nel caso in cui il sistema dia errore dicendoci che javac non è stato trovato:</p>
<blockquote><p>javac -d x64-Release ../../../../../Wrappers/OpenNI.java/src/org/OpenNI/*.java</p>
<p>/bin/sh: javac: not found</p>
<p>make[1]: *** [../../../Bin/x64-Release/org.OpenNI.jar] Errore 127</p>
<p>make[1]: uscita dalla directory &#8220;/home/sparazza/kinect/OpenNI/Platform/Linux/Build/Wrappers/OpenNI.java&#8221;</p>
<p>make: *** [Wrappers/OpenNI.java] Errore 2</p></blockquote>
<p>risolveremo installando la seguente dipendenza</p>
<pre>sudo apt-get install openjdk-7-jdk</pre>
<p>Dopo di che occorre rilanciare</p>
<pre>make &amp;&amp; sudo make install</pre>
<p><strong>Problema</strong>: nel caso in cui il sistema ci neghi il permesso di accedere al file install.sh e RedistMaker</p>
<blockquote><p>/bin/sh: ./RedistMaker: Permission denied</p>
<p>/home/sparazza/kinect/OpenNI/Platform/Linux/Build</p>
<p>cd ../Redist; ./install.sh; cd -</p>
<p>cd: 1: can&#8217;t cd to ../Redist</p>
<p>/bin/sh: ./install.sh: not found</p>
<p>/home/sparazza/kinect/OpenNI/Platform/Linux/Build</p></blockquote>
<p>Risolviamo quindi con</p>
<pre>cd ../CreateRedist</pre>
<p>sudo chmod +x install.sh RedistMaker</p>
<p>cd ../Build</p>
<p>Dopo di che occorre rilanciare</p>
<pre>make &amp;&amp; sudo make install</pre>
<p>Se così non dovesse andare e dovessimo continuare ad avere problemi con install.sh, possiamo <strong>spostare</strong> i file che ci servono:</p>
<pre>sudo cp  -r  ../Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.7/*  ../Redist/</pre>
<p><strong>Sostituendo</strong> <em>OpenNI-Bin-Dev-Linux-x64-v1.5.2.7</em> con la versione presente dentro la cartella Redist.</p>
<p>Quando finalmente vedremo</p>
<p><strong>*** DONE ***</strong></p>
<p>L&#8217;installazione sarà finalmente <strong>completa</strong>.</p>
<p>Se incappate in altre problematiche potete fare riferimento alle fonti, alla fine dell&#8217;articolo, per cercare ulteriori soluzioni oppure lasciare un commento</p>
<p><strong>Installazione dei Driver Sensor Kinect</strong></p>
<p>Maggiori informazioni sui driver SensorKinect qui: <a href="http://www.primesense.com/">http://www.primesense.com</a></p>
<p><strong>Prepariamo tutto il necessario</strong></p>
<p><strong>Scarichiamo L&#8217;ultima versione di SensorKinect</strong></p>
<pre>cd ~/kinect/</pre>
<p>git clone <a href="https://github.com/avin2/SensorKinect">https://github.com/avin2/SensorKinect</a></p>
<p>cd SensorKinect</p>
<p>git checkout kinect</p>
<p><strong>Installiamo i driver</strong></p>
<pre>cd Platform/Linux/Build/</pre>
<p>make &amp;&amp; sudo make install</p>
<p><strong>Problema: </strong></p>
<blockquote><p>cd ../CreateRedist; ./RedistMaker; cd -</p>
<p>/bin/sh: ./RedistMaker: Permission denied</p>
<p>/home/sparazza/kinect/SensorKinect/Platform/Linux/Build</p>
<p>cd ../Redist; ./install.sh; cd -</p>
<p>cd: 1: can&#8217;t cd to ../Redist</p>
<p>/bin/sh: ./install.sh: not found</p></blockquote>
<p>Inserire i seguenti comandi</p>
<pre>cd ../CreateRedist</pre>
<p>sudo chmod +x install.sh RedistMaker</p>
<p>cd ../Build</p>
<p>e rieseguire</p>
<pre>make &amp;&amp; sudo make install</pre>
<p>Se dopo la creazione della cartella redist, segnalata dalle seguenti righe</p>
<blockquote><p>Creating redist folder&#8230;</p>
<p>Creating tar&#8230;</p>
<p>Done!</p></blockquote>
<p>&#8230;incappiamo di nuovo nel <strong>problema</strong>:</p>
<blockquote><p>cd ../Redist; ./install.sh; cd -</p>
<p>/bin/sh: ./install.sh: <strong>not found</strong></p></blockquote>
<p>Possiamo <strong>spostare</strong> i file che ci servono</p>
<pre>sudo cp  -r  ../Redist/Sensor-Bin-Linux-x64-v5.1.0.25/*  ../Redist/</pre>
<p>Sostituendo Sensor-Bin-Linux-x64-v5.1.0.25 con la versione installata</p>
<p>Quando vedremo finalmente</p>
<blockquote><p><strong>*** DONE ***</strong></p></blockquote>
<p>L&#8217;installazione del <strong>driver</strong> sarà <strong>completa</strong>!</p>
<p><strong>Testiamo il Kinect!</strong></p>
<p><strong>Collegare la periferica</strong></p>
<p>Colleghiamo la periferica al pc mediante l&#8217;adattatore USB che vedete in figura:</p>
<p style="text-align:center;"><img class="size-full wp-image-974 aligncenter" title="xbox-360-kinect-power-supply-adapter-" src="http://discoverylinux.files.wordpress.com/2011/12/xbox-360-kinect-power-supply-adapter.jpg?w=450" alt=""   /></p>
<p>Quando il kinect verrà collegato avrà sul <strong>led</strong> frontale un&#8217;intermittenza <strong>verde</strong>.</p>
<p>A questo punto i più curiosi possono inserire il comando:</p>
<pre>dmesg</pre>
<p>che mostra <strong>l&#8217;evento</strong> che il pc ha generato al collegamento della  periferica:</p>
<blockquote><p>[16111.870698] usb 1-1.2: new high speed USB device number 3 using ehci_hcd</p>
<p>[16111.963074] hub 1-1.2:1.0: USB hub found</p>
<p>[16111.963269] hub 1-1.2:1.0: 3 ports detected</p>
<p>[16112.907721] usb 1-1.2.2: new full speed USB device number 4 using ehci_hcd</p>
<p>[16114.439331] usb 1-1.2.1: new high speed USB device number 5 using ehci_hcd</p>
<p>[16115.548125] usb 1-1.2.1: usbfs: USBDEVFS_CONTROL failed cmd mtp-probe rqt 128 rq 6 len 1024 ret -110</p>
<p>[16115.970934] usb 1-1.2.3: new high speed USB device number 6 using ehci_hcd</p>
<p>[16116.161338] Linux<strong> video capture interface</strong>: v2.00</p>
<p>[16116.176331] <strong>gspca</strong>: v2.13.0 registered</p>
<p>[16116.176980] usbcore: registered new interface <strong>driver kinect</strong></p></blockquote>
<p><strong>Testare il kinect</strong></p>
<pre>cd ~/kinect/OpenNI/Platform/Linux/Bin/x64-Release/</pre>
<p>./NiViewer</p>
<p><strong>Problema</strong>:</p>
<blockquote><p>Open failed: Failed to set USB interface!</p></blockquote>
<p>per risolvere, rimuoviamo dai moduli caricati il gspca, che in questo caso va in <strong>conflitto</strong> con il driver corretto:</p>
<pre>sudo rmmod gspca_kinect</pre>
<p>E rilanciamo il comando</p>
<pre>./NiViewer</pre>
<p>A questo punto la demo dovrebbe partire: potrete vedere <strong>due output video</strong>, uno <strong>rgb</strong> e l&#8217;altro <strong>z-depth</strong>, forniti dalle due/tre camere della kinect</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/12/ventilatore.jpg"><img class="aligncenter size-full wp-image-867" title="Kinect fan niviewer" src="http://discoverylinux.files.wordpress.com/2011/12/ventilatore.jpg?w=450&#038;h=281" alt="" width="450" height="281" /></a></p>
<p>Nella <strong>prossima guida</strong> vedremo come installare il necessario per effettuare il <strong>track di uno(o più) scheletri, </strong>così  da poter utilizzare le altre demo fornite con OpenNI (ad esempio UserTracker)</p>
<p>Questa guida è stata <strong>testata</strong> su Ubuntu Oneiric 11.10, se qualcuno è riuscito ad applicarla con successo ad altre versioni di Ubuntu o altre distro, può scriverlo in un commento e provvederò ad aggiornare la guida!</p>
<p>Source:</p>
<p><a href="http://youngindiafellowship.academia.edu/JatinSharma/Blog/48864/OpenNI-on-Beagle-Board-XM">http://youngindiafellowship.academia.edu/JatinSharma/Blog/48864/OpenNI-on-Beagle-Board-XM<br />
</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/hardware/'>hardware</a>, <a href='http://discoverylinux.wordpress.com/category/guide/kinect/'>Kinect</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/console/'>console</a>, <a href='http://discoverylinux.wordpress.com/tag/kinect-2/'>kinect</a>, <a href='http://discoverylinux.wordpress.com/tag/microsoft/'>microsoft</a>, <a href='http://discoverylinux.wordpress.com/tag/natural-interface/'>natural interface</a>, <a href='http://discoverylinux.wordpress.com/tag/nite/'>nite</a>, <a href='http://discoverylinux.wordpress.com/tag/openni/'>openni</a>, <a href='http://discoverylinux.wordpress.com/tag/sdk/'>sdk</a>, <a href='http://discoverylinux.wordpress.com/tag/sensor-kinect/'>sensor kinect</a>, <a href='http://discoverylinux.wordpress.com/tag/zdepth/'>zdepth</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=858&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/12/30/guida-kinect-su-ubuntu-oneirc-11-10-openni-e-sensorkinect/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://www.kinecthacks.com/wp-content/uploads/2011/03/openni.jpg" medium="image">
			<media:title type="html">Openni</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/12/xbox-360-kinect-power-supply-adapter.jpg" medium="image">
			<media:title type="html">xbox-360-kinect-power-supply-adapter-</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/12/ventilatore.jpg" medium="image">
			<media:title type="html">Kinect fan niviewer</media:title>
		</media:content>
	</item>
		<item>
		<title>[Tutorial] The best-tutorial for texturing a Realistic Wall</title>
		<link>http://discoverylinux.wordpress.com/2011/12/09/tutorial-the-best-tutorial-for-texturing-a-realistic-wall/</link>
		<comments>http://discoverylinux.wordpress.com/2011/12/09/tutorial-the-best-tutorial-for-texturing-a-realistic-wall/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 09:10:31 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[arts]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[3d studio max]]></category>
		<category><![CDATA[cinema 4d]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[lightwave]]></category>
		<category><![CDATA[materiali]]></category>
		<category><![CDATA[maya]]></category>
		<category><![CDATA[muro]]></category>
		<category><![CDATA[normal map]]></category>
		<category><![CDATA[photo manipulation]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[softimage]]></category>
		<category><![CDATA[specularity]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[texturing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wall]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=852</guid>
		<description><![CDATA[Here it is the best tutorial i&#8217;ve found that explains how to achieve, in any 2d editing program, how to obtain a hyper-realistic wall to use in your 3D scene (with every 3d software). http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks.html Prerequisites A medium knowledge of 2d image editor: The GIMP or Photoshop are just fine In case you are using [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=852&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks_01_result.jpg"><img class="alignleft" title="realistic 3d wall" src="http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks_01_result.jpg" alt="" width="480" height="384" /></a></p>
<p>Here it is the best <strong>tutorial</strong> i&#8217;ve found that explains how to achieve, in any 2d editing program, how to obtain a <strong>hyper-realistic wall</strong> to use in your 3D scene (with every 3d software).</p>
<p><a href="http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks.html">http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks.html</a></p>
<p><strong>Prerequisites</strong></p>
<ul>
<li>A medium knowledge of <strong>2d image editor</strong>: The GIMP or Photoshop are just fine</li>
<li>In case you are using The GIMP, you need to install the <a title="normal map plugin" href="http://registry.gimp.org/node/69" target="_blank"><strong>Normal Map</strong> plugin</a></li>
<li>Passion for the <strong>seams</strong>&#8230;</li>
</ul>
<p>The tutorial also link a <strong>downloadable</strong> <strong>PSD</strong> (GIMP compatible) with 30 layer in it!</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/arts/'>arts</a>, <a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/3d-studio-max/'>3d studio max</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/cinema-4d/'>cinema 4d</a>, <a href='http://discoverylinux.wordpress.com/tag/gimp/'>gimp</a>, <a href='http://discoverylinux.wordpress.com/tag/guida/'>guida</a>, <a href='http://discoverylinux.wordpress.com/tag/how-to/'>how to</a>, <a href='http://discoverylinux.wordpress.com/tag/lightwave/'>lightwave</a>, <a href='http://discoverylinux.wordpress.com/tag/materiali/'>materiali</a>, <a href='http://discoverylinux.wordpress.com/tag/maya/'>maya</a>, <a href='http://discoverylinux.wordpress.com/tag/muro/'>muro</a>, <a href='http://discoverylinux.wordpress.com/tag/normal-map/'>normal map</a>, <a href='http://discoverylinux.wordpress.com/tag/photo-manipulation/'>photo manipulation</a>, <a href='http://discoverylinux.wordpress.com/tag/photoshop/'>photoshop</a>, <a href='http://discoverylinux.wordpress.com/tag/softimage/'>softimage</a>, <a href='http://discoverylinux.wordpress.com/tag/specularity/'>specularity</a>, <a href='http://discoverylinux.wordpress.com/tag/texture/'>texture</a>, <a href='http://discoverylinux.wordpress.com/tag/texturing/'>texturing</a>, <a href='http://discoverylinux.wordpress.com/tag/tutorial/'>tutorial</a>, <a href='http://discoverylinux.wordpress.com/tag/wall/'>wall</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=852&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/12/09/tutorial-the-best-tutorial-for-texturing-a-realistic-wall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://www.philipk.net/tutorials/materials/tilesbricks/tilesbricks_01_result.jpg" medium="image">
			<media:title type="html">realistic 3d wall</media:title>
		</media:content>
	</item>
		<item>
		<title>[Guida] Eliminare il flickering in Blender 2.5</title>
		<link>http://discoverylinux.wordpress.com/2011/10/08/guida-eliminare-il-flickering-in-blender-2-5/</link>
		<comments>http://discoverylinux.wordpress.com/2011/10/08/guida-eliminare-il-flickering-in-blender-2-5/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 22:01:18 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[arts]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[antialias]]></category>
		<category><![CDATA[blender 2.5]]></category>
		<category><![CDATA[clipping]]></category>
		<category><![CDATA[flicker]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[remove doubles]]></category>
		<category><![CDATA[smooth face]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=823</guid>
		<description><![CDATA[In questo breve post proverò a svelarvi tutti i trucchi ed i metodi da me conosciuti per far scomparire (o comparire , de gustibus&#8230;) il flickering dalle scene 3D modellate in Blender 2.5 (e non solo) e renderizzate con il motore di rendering interno a Blender (e non solo) Non utilizzare mai la visualizzazione Smooth [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=823&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In questo breve post proverò a svelarvi tutti i trucchi ed i metodi da me conosciuti per far <strong>scomparire</strong> (o comparire , de gustibus&#8230;) il <strong>flickering</strong> dalle scene 3D modellate in<strong> Blender 2.5</strong> (e non solo) e renderizzate con il motore di rendering interno a Blender (e non solo)<span id="more-823"></span></p>
<p>Non utilizzare <strong>mai</strong> la visualizzazione <strong>Smooth</strong> per mesh e porzioni di mesh.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/10/smooth.png"><img class="aligncenter size-full wp-image-845" title="SMOOTH SHADERS BLENDER" src="http://discoverylinux.files.wordpress.com/2011/10/smooth.png?w=450" alt=""   /></a></p>
<p>In caso di acquisizioni da altri tools o per pulire il vostro modello 3d dopo una modellazione e poligonazione <em>selvaggia, </em>utilizzate la funzione  <strong>remove doubles</strong> richiamabile con il tasto <strong>specials  (w)</strong></p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/10/removedoubles.png"><img class="aligncenter size-full wp-image-846" title="REMOVEDOUBLES" src="http://discoverylinux.files.wordpress.com/2011/10/removedoubles.png?w=450" alt=""   /></a></p>
<p>Nella View 3D, per controllare eventuali possibilità di flickering in anteprima (ad esempio senza aspettare il rendering di un&#8217;animazione ), impostare il<strong> clip della view 3D</strong> stessa con uno <strong>start</strong> molto <strong>piccolo</strong> ed un <strong>end</strong> molto <strong>grande</strong>, tutto ciò potrebbe evidenziare incongruenze da correggere nei modelli della scena.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/10/view-3d-clipping.png"><img class="aligncenter size-full wp-image-847" title="VIEW 3D CLIPPING" src="http://discoverylinux.files.wordpress.com/2011/10/view-3d-clipping.png?w=450" alt=""   /></a></p>
<p>Per evitare che in fase di rendering si generino flickering il <strong>sistema basilare</strong> è quello di <strong>limitare</strong> il <strong>clipping della camera</strong> affinchè <strong>contenga  la scena visualizzata</strong>.</p>
<p>Lo Start deve iniziare dal primo oggetto che volete visualizzare, e l&#8217;end deve permettervi di vedere gli oggetti più lontani, ma senza andare esageratamente oltre. Se necessario potete anche <strong>animare</strong> questi parametri (premendo i sopra di essi) per gestire animazioni complesse che ad esempio alternano spazi chiusi a scene all&#8217;aperto.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/10/clippingcamera.png"><img class="aligncenter size-full wp-image-848" title="CLIPPINGCAMERA" src="http://discoverylinux.files.wordpress.com/2011/10/clippingcamera.png?w=450" alt=""   /></a></p>
<p>Una ulteriore causa di flicker poterbbe essere la <strong>mancanza</strong> o <strong>l&#8217;eccedenza</strong> di <strong>Anti-Aliasing</strong>, soprattutto quando trattiamo oggetti molto piccoli o molto vicini nello spazio, perciò vi consiglio di modificare questo parametri finchè la scena non arriva alla definizione desiderata, ma senza esagerare, sia per i tempi di rendering che crescerebbero esponenzialmente, sia perchè in alcune configurazioni 3D l&#8217;AA se troppo alto potrebbe addirittura <strong>causare</strong>  flicker a sua volta. Le <strong>tipologie</strong> di AA possono inoltre permettervi di trattare la limatura subpixel in modi differenti e quindi di adattare maggiormente questo filtro alle vostre scene.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/10/aa.png"><img class="aligncenter size-full wp-image-849" title="aa" src="http://discoverylinux.files.wordpress.com/2011/10/aa.png?w=450" alt=""   /></a></p>
<p>Spero che questi pochi consigli vi siano stati utili</p>
<p>Alla prossima</p>
<p>Sparazza</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/arts/'>arts</a>, <a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/antialias/'>antialias</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/blender-2-5/'>blender 2.5</a>, <a href='http://discoverylinux.wordpress.com/tag/clipping/'>clipping</a>, <a href='http://discoverylinux.wordpress.com/tag/flicker/'>flicker</a>, <a href='http://discoverylinux.wordpress.com/tag/guida/'>guida</a>, <a href='http://discoverylinux.wordpress.com/tag/remove-doubles/'>remove doubles</a>, <a href='http://discoverylinux.wordpress.com/tag/smooth-face/'>smooth face</a>, <a href='http://discoverylinux.wordpress.com/tag/tutorial/'>tutorial</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=823&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/10/08/guida-eliminare-il-flickering-in-blender-2-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/10/smooth.png" medium="image">
			<media:title type="html">SMOOTH SHADERS BLENDER</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/10/removedoubles.png" medium="image">
			<media:title type="html">REMOVEDOUBLES</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/10/view-3d-clipping.png" medium="image">
			<media:title type="html">VIEW 3D CLIPPING</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/10/clippingcamera.png" medium="image">
			<media:title type="html">CLIPPINGCAMERA</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/10/aa.png" medium="image">
			<media:title type="html">aa</media:title>
		</media:content>
	</item>
		<item>
		<title>[Android] Google Maps su Android: mappe off-line ufficiali!</title>
		<link>http://discoverylinux.wordpress.com/2011/08/24/android-google-maps-su-android-mappe-off-line-ufficiali/</link>
		<comments>http://discoverylinux.wordpress.com/2011/08/24/android-google-maps-su-android-mappe-off-line-ufficiali/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 09:15:45 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[sperimentale]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[labs]]></category>
		<category><![CDATA[mappe offline]]></category>
		<category><![CDATA[navigator]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[precaching]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=831</guid>
		<description><![CDATA[Ne è passato di tempo da quando ho pubblicato questo articolo che spiegava come utilizzare Google Maps su Android per avere le mappe ed il navigatore anche offline.  Era il 2010 e la comunità si era attrezzata, in particolare mediante gli attivissimi xda-developers, per rilasciare una versione modificata di Google Maps, che andasse di pari [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=831&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft" title="google maps logo png ico" src="http://www.novachemicals.it/immagini/google_maps_logo.png" alt="" width="240" height="180" />Ne è passato di tempo da quando ho pubblicato <a title="[Android] Google Maps e navigator anche Offline!" href="http://discoverylinux.wordpress.com/2010/06/10/android-google-maps-e-navigator-anche-offline/" target="_blank">questo articolo</a> che spiegava come utilizzare <strong>Google Maps</strong> su Android per avere le mappe ed il navigatore anche<strong> offline. </strong></p>
<p>Era il 2010 e la <strong>comunità</strong> si era attrezzata, in particolare mediante gli attivissimi <a title="xda developers android e windows phone" href="http://www.xda-developers.com/" target="_blank">xda-developers</a>, per rilasciare una <strong>versione modificata</strong> di Google Maps, che andasse di pari passo con quella rilasciata da Google, e che permettesse il precaricamento in cache delle mappe al fine di poterle riaprire anche quando lo smartphone non risultava connesso a reti dati o wifi.</p>
<p>Tale versione modificata prendeva il nome di Brut, dal suo sviluppatore, ed è stata dismessa o comunque è rimasta alla versione <strong>[07.11.10] Brut Google Maps 4.6.0.4686-brut17.</strong></p>
<p>Da allora gli <strong>sviluppatori</strong> Google hanno ascoltato, almeno in parte, le preghiere della comunità android, ed hanno aggiunto una <strong>funzionalità</strong>, attivabile tramite i<strong> labs di Google Maps&#8230; </strong>vediamo come!</p>
<p><span id="more-831"></span></p>
<p>Innanzitutto <strong>aprite il vostro Google Maps</strong> su Android, <strong>aggiornato</strong> se possibile all&#8217;ultima versione, assicuratevi magari di essere collegati ad una rete <strong>wifi</strong> o ad una flat dati. A questo punto mediante il tasto <strong>menù </strong>selezionate <strong>Altro</strong> e poi <strong>Labs</strong></p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/08/1.png"><img class="aligncenter size-full wp-image-836" title="menu-altro-labs" src="http://discoverylinux.files.wordpress.com/2011/08/1.png?w=450&#038;h=396" alt="" width="450" height="396" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>A questo punto si aprirà il pannello Labs, qui dovete scorrere fino alla feature <strong>Prememorizza nella cache area della mappa</strong> ed attivarla semplicemente toccandola. Fatto ciò tornate indietro alla mappa.</p>
<p style="text-align:center;"><a href="http://discoverylinux.files.wordpress.com/2011/08/2.jpg"><img class="aligncenter size-full wp-image-837" title="Prememorizza nella cache area della mappa" src="http://discoverylinux.files.wordpress.com/2011/08/2.jpg?w=450" alt=""   /></a></p>
<p style="text-align:left;">Da questo momento dovreste poter <strong>memorizzare</strong> le mappe per usufruirne anche offline semplicemente andando in un luogo, toccando il <strong>baloon</strong> del luogo desiderato e selezionando la funzione <strong>Prememorizza area della mappa</strong>, questa dovrebbe essere nella vista appena aperta oppure nel sottomenù <strong>Altre opzioni </strong>visibile qui sotto.</p>
<p style="text-align:left;">
<p style="text-align:left;"><a href="http://discoverylinux.files.wordpress.com/2011/08/3.png"><img class="aligncenter size-full wp-image-838" title="altre opzioni- download area mappa" src="http://discoverylinux.files.wordpress.com/2011/08/3.png?w=450" alt=""   /></a></p>
<p style="text-align:left;">A questo punto il sistema inizierà a <strong>precaricare</strong> le mappe nella memoria del telefono, al termine del caricamento, che potrebbe impiegare anche alcuni minuti, avrete una vista riassuntiva della zona precaricata, corrispondente ad un <strong>quadrato di lato 10 miglia</strong> con centro nel punto selezionato.</p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;"><a href="http://discoverylinux.files.wordpress.com/2011/08/4.png"><img class="aligncenter size-full wp-image-839" title="Mappa precaricata google maps android" src="http://discoverylinux.files.wordpress.com/2011/08/4.png?w=450&#038;h=286" alt="" width="450" height="286" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">A questo punto potete anche spegnere il Wifi e godervi la vostra mappa a qualsiasi<strong> livello di zoom </strong>la vogliate!</p>
<p style="text-align:left;">Questa tecnica è molto utile se avete intenzione di <strong>visitare città o zone ben definite</strong> e volete avere una cartina dettagliata, magari abbinata con una sincronizzazione GPS.</p>
<p style="text-align:left;">Purtroppo le mappe precaricate<strong> non funzioneranno</strong> se vorrete ottenere<strong> indicazioni stradali</strong> da e per un luogo definito, questo perchè la richiesta di indicazioni stradali risiede nei server Google, dunque il software dovrà comunicare tramite rete dati, lo stesso vale per il <strong>navigatore</strong>. Sta di fatto che comunque il sistema in questo modo non dovrà ricaricare la mappa in nessuno dei due casi e si risparmieranno comunque molti dati!</p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/android-guide/'>Android</a>, <a href='http://discoverylinux.wordpress.com/category/google/android-google/'>Android</a>, <a href='http://discoverylinux.wordpress.com/category/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/sperimentale/'>sperimentale</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/android/'>android</a>, <a href='http://discoverylinux.wordpress.com/tag/cache/'>cache</a>, <a href='http://discoverylinux.wordpress.com/tag/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/tag/google-maps/'>google maps</a>, <a href='http://discoverylinux.wordpress.com/tag/labs/'>labs</a>, <a href='http://discoverylinux.wordpress.com/tag/mappe-offline/'>mappe offline</a>, <a href='http://discoverylinux.wordpress.com/tag/navigator/'>navigator</a>, <a href='http://discoverylinux.wordpress.com/tag/offline/'>offline</a>, <a href='http://discoverylinux.wordpress.com/tag/precaching/'>precaching</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=831&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/08/24/android-google-maps-su-android-mappe-off-line-ufficiali/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://www.novachemicals.it/immagini/google_maps_logo.png" medium="image">
			<media:title type="html">google maps logo png ico</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/08/1.png" medium="image">
			<media:title type="html">menu-altro-labs</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/08/2.jpg" medium="image">
			<media:title type="html">Prememorizza nella cache area della mappa</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/08/3.png" medium="image">
			<media:title type="html">altre opzioni- download area mappa</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/08/4.png" medium="image">
			<media:title type="html">Mappa precaricata google maps android</media:title>
		</media:content>
	</item>
		<item>
		<title>[Tutorial] UVmap Follow active quad in Blender 2.5</title>
		<link>http://discoverylinux.wordpress.com/2011/07/27/tutorial-uvmap-follow-active-quad-in-blender-2-5/</link>
		<comments>http://discoverylinux.wordpress.com/2011/07/27/tutorial-uvmap-follow-active-quad-in-blender-2-5/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 10:26:11 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[follow active quad]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[uv]]></category>
		<category><![CDATA[uvmap]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=826</guid>
		<description><![CDATA[Follow Active Quad on Vimeo A simple method to unwrap modified mesh without touching the uv-map editor. This result is achieved with the &#8220;follow active quad&#8221; tool, that allow us to unwrap multiple faces following the lenght or the edges of an active selected face (quad). The tool exist also in Blender 2.49 but in [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=826&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://vimeo.com/26955480">Follow Active Quad on Vimeo</a><br />
A simple method to unwrap modified mesh without touching the uv-map editor.<span id="more-826"></span><br />
This result is achieved with the &#8220;follow active quad&#8221; tool, that allow us to unwrap multiple faces following the lenght or the edges of an active selected face (quad).</p>
<p>The tool exist also in Blender 2.49 but in the video I use the svn build of Blender 2.58.1</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/2-5/'>2.5</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/follow-active-quad/'>follow active quad</a>, <a href='http://discoverylinux.wordpress.com/tag/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/tag/mapping/'>mapping</a>, <a href='http://discoverylinux.wordpress.com/tag/tip/'>tip</a>, <a href='http://discoverylinux.wordpress.com/tag/tool/'>tool</a>, <a href='http://discoverylinux.wordpress.com/tag/tutorial/'>tutorial</a>, <a href='http://discoverylinux.wordpress.com/tag/uv/'>uv</a>, <a href='http://discoverylinux.wordpress.com/tag/uvmap/'>uvmap</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=826&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/07/27/tutorial-uvmap-follow-active-quad-in-blender-2-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>
	</item>
		<item>
		<title>Blender 2.5 Best Add-Ons</title>
		<link>http://discoverylinux.wordpress.com/2011/06/07/blender-2-5-best-add-ons/</link>
		<comments>http://discoverylinux.wordpress.com/2011/06/07/blender-2-5-best-add-ons/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 09:35:29 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[arts]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[distanze]]></category>
		<category><![CDATA[loop tools]]></category>
		<category><![CDATA[measure]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[misurazioni]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">https://discoverylinux.wordpress.com/?p=810</guid>
		<description><![CDATA[La nuova versione di Blender, che mentre scrivo è giunta alla 2.57b, sta ricevendo sempre maggiori attenzioni ed approvazione da parte delle comunità 3d dedicate e non. Ho pensato di creare questo articolo soprattutto per chi si sta convertendo dalla &#8220;vecchia&#8221; 2.49 o da un altro tool 3D alla versione 2.57b di Blender,  dichiarata stabile [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=810&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-811" title="Blender 2.57b Logo 3D" src="http://discoverylinux.files.wordpress.com/2011/06/blender_008.png?w=210&#038;h=141" alt="" width="210" height="141" />La nuova versione di <strong>Blender</strong>, che mentre scrivo è giunta alla <strong>2.57b</strong>, sta ricevendo sempre maggiori attenzioni ed approvazione da parte delle comunità 3d dedicate e non.<br />
Ho pensato di creare questo articolo soprattutto per chi si sta <strong>convertendo</strong> dalla &#8220;vecchia&#8221; 2.49 o da un altro tool 3D alla versione 2.57b di Blender,  dichiarata stabile poche settimane fa.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/06/blender-user-preferences_002.png"><img class="aligncenter" title="Blender add-ons" src="http://discoverylinux.files.wordpress.com/2011/06/blender-user-preferences_002.png?w=450&#038;h=291" alt="" width="450" height="291" /></a></p>
<p>Uno dei punti di rottura con le passate versioni, concerne gli <strong>add-ons</strong> di Blender, che prendono il posto degli <strong>script</strong>, di cui non esiste più il pannello dedicato.</p>
<p><img class="aligncenter size-full wp-image-813" title="Blender 2.49 Scripts" src="http://discoverylinux.files.wordpress.com/2011/06/selezione_001.png?w=450" alt=""   /></p>
<p>A tal proposito dopo il salto trovate una lista con breve descrizione dei principali add-ons che il software mette a disposizione.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2011/06/blender-user-preferences_002.png"><br />
</a></p>
<p><span id="more-810"></span></p>
<p>Quelli più <strong>utili</strong> e delle cui funzioni non potrei fare a meno, imho sono:</p>
<ul>
<li><strong>LoopTools</strong>: tool utile a tutti i modellatori, permette funzioni avanzate di giunzione e raccordo tra mesh interrotte, creazione di &#8220;ponti di facce&#8221; con un click ma che grazie ad un controllo selettivo e parametrico di ogni aspetto, consente anche una personalizzazione avanzata.<br />
<a href="http://discoverylinux.files.wordpress.com/2011/06/blender_004.png"><img class="aligncenter size-full wp-image-814" title="Blender loop tools" src="http://discoverylinux.files.wordpress.com/2011/06/blender_004.png?w=450&#038;h=175" alt="" width="450" height="175" /><br />
</a></li>
<li><strong>Measure</strong>: (utile soprattutto in ambito CAD ed architettonico) permette misurazioni lineari e quadrate lungo ogni asse/faccia. Include la misurazione tra vertici, edge, facce e cursore 3d.<br />
<a href="http://discoverylinux.files.wordpress.com/2011/06/blender_005.png"><img class="aligncenter size-full wp-image-815" title="Blender Measure tool" src="http://discoverylinux.files.wordpress.com/2011/06/blender_005.png?w=450&#038;h=339" alt="" width="450" height="339" /><br />
</a></li>
<li><strong>3D</strong> <strong>navigation</strong>: pulsantiera che racchiude comandi altrimenti presenti in ordine quasi sparso come scorciatoie da tastiera. Risulta molto utile in particolare per coloro che si affacciano al mondo di blender per la prima volta, inoltre la modellazione all&#8217;interno delle tool presuppone la presenza del tastierino numerico, non sempre garantito su tutti i computer. Questo addons permette di bypassare il tastierino raccogliendo le principali funzioni su di un pannello. Permette essenzialmente di muoversi nello spazio tridimensionale orientando la visuale secondo le classiche viste top front e left, inoltre include il collegamento ad alcune funzioni avanzate come l&#8217;allineamento della camera alla view attuale.<br />
<a href="http://discoverylinux.files.wordpress.com/2011/06/selezione_006.png"><img class="aligncenter size-full wp-image-816" title="Blender 3D Navigation addon" src="http://discoverylinux.files.wordpress.com/2011/06/selezione_006.png?w=450" alt=""   /></a></li>
<li><strong>Copy</strong> <strong>menu</strong>: per coloro che provengono dalla 2.49 la mancanza del menu a comparsa per copiare parametri e dati da un oggetto selezionato ad altri può essere un vero trauma. Questo add-on riporta il menu nella 2.5, richiamabile come prima mediante la combinazione ctrl + c.<br />
<a href="http://discoverylinux.files.wordpress.com/2011/06/blender_007.png"><img class="aligncenter size-full wp-image-817" title="Blender copy menu" src="http://discoverylinux.files.wordpress.com/2011/06/blender_007.png?w=450&#038;h=237" alt="" width="450" height="237" /></a></li>
<li><strong>Spacebar</strong> <strong>menu</strong>: la nuova ricerca richiamabile alla pressione della spacebar non sempre piace, per chi volesse tornare al vecchio menù, migliorato e con qualche aggiunta, può farlo con questo add-on<br />
<a href="http://discoverylinux.files.wordpress.com/2011/06/blender_003.png"><img class="aligncenter size-full wp-image-818" title="Blender Spacebar Menu" src="http://discoverylinux.files.wordpress.com/2011/06/blender_003.png?w=450&#038;h=257" alt="" width="450" height="257" /></a></li>
</ul>
<p>Se avete qualche altro add-ons che ha preso posto tra i vostri preferiti <strong>segnalatelo</strong>!</p>
<p>Alla prossima<br />
Sparazza</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/arts/'>arts</a>, <a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/3d/'>3d</a>, <a href='http://discoverylinux.wordpress.com/tag/add-ons/'>add-ons</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/distanze/'>distanze</a>, <a href='http://discoverylinux.wordpress.com/tag/loop-tools/'>loop tools</a>, <a href='http://discoverylinux.wordpress.com/tag/measure/'>measure</a>, <a href='http://discoverylinux.wordpress.com/tag/menu/'>menu</a>, <a href='http://discoverylinux.wordpress.com/tag/misurazioni/'>misurazioni</a>, <a href='http://discoverylinux.wordpress.com/tag/plugin/'>plugin</a>, <a href='http://discoverylinux.wordpress.com/tag/scripts/'>scripts</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=810&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/06/07/blender-2-5-best-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender_008.png?w=300" medium="image">
			<media:title type="html">Blender 2.57b Logo 3D</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender-user-preferences_002.png" medium="image">
			<media:title type="html">Blender add-ons</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/selezione_001.png" medium="image">
			<media:title type="html">Blender 2.49 Scripts</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender_004.png" medium="image">
			<media:title type="html">Blender loop tools</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender_005.png" medium="image">
			<media:title type="html">Blender Measure tool</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/selezione_006.png" medium="image">
			<media:title type="html">Blender 3D Navigation addon</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender_007.png" medium="image">
			<media:title type="html">Blender copy menu</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/06/blender_003.png" medium="image">
			<media:title type="html">Blender Spacebar Menu</media:title>
		</media:content>
	</item>
		<item>
		<title>Controlla il riproduttore multimediale di Ubuntu battendo le mani</title>
		<link>http://discoverylinux.wordpress.com/2011/04/26/controlla-il-riproduttore-multimediale-di-ubuntu-battendo-le-mani/</link>
		<comments>http://discoverylinux.wordpress.com/2011/04/26/controlla-il-riproduttore-multimediale-di-ubuntu-battendo-le-mani/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 08:57:15 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[audio]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[sperimentale]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[batti mani]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[totem]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=804</guid>
		<description><![CDATA[Mini articolo per segnalare che Marin Moulinier ha creato ed adattato in tempi record il suo plugin per il funzionamento con i maggiori player multimediali (Totem, VLC, Banchee ecc) affinchè possano rispondere a forti comandi vocali (come OI o BU!) ed al suono del battimani! Ecco l&#8217;articolo originale e la guida per l&#8217;installazione: http://www.omgubuntu.co.uk/2011/04/control-totem-by-clapping-no-seriously Se sei felice [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=804&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Mini articolo per segnalare che <strong>Marin Moulinier</strong> ha creato ed adattato in tempi record il suo <strong>plugin</strong> per il funzionamento con i maggiori player multimediali (Totem, VLC, Banchee ecc) affinchè possano rispondere a forti<strong> comandi vocali</strong> (come OI o BU!) ed al suono del <strong>battimani</strong>!</p>
<p>Ecco l&#8217;articolo originale e la guida per <strong>l&#8217;installa</strong><strong>zione</strong>: <a href="http://www.omgubuntu.co.uk/2011/04/control-totem-by-clapping-no-seriously/">http://www.omgubuntu.co.uk/2011/04/control-totem-by-clapping-no-seriously</a></p>
<p>Se sei felice e tu lo sai batti le mani!</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/audio/'>audio</a>, <a href='http://discoverylinux.wordpress.com/category/guide/customize-guide/'>Customize</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/sperimentale/'>sperimentale</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/addon/'>addon</a>, <a href='http://discoverylinux.wordpress.com/tag/batti-mani/'>batti mani</a>, <a href='http://discoverylinux.wordpress.com/tag/guida/'>guida</a>, <a href='http://discoverylinux.wordpress.com/tag/player/'>player</a>, <a href='http://discoverylinux.wordpress.com/tag/plugin/'>plugin</a>, <a href='http://discoverylinux.wordpress.com/tag/totem/'>totem</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=804&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/04/26/controlla-il-riproduttore-multimediale-di-ubuntu-battendo-le-mani/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>
	</item>
		<item>
		<title>[Ubuntu] 2 o più Computer con 1 sola Tastiera + Mouse con Synergy</title>
		<link>http://discoverylinux.wordpress.com/2011/01/25/ubuntu-2-o-piu-computer-con-1-sola-tastiera-mouse-con-synergy/</link>
		<comments>http://discoverylinux.wordpress.com/2011/01/25/ubuntu-2-o-piu-computer-con-1-sola-tastiera-mouse-con-synergy/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 15:27:30 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[conndivisione]]></category>
		<category><![CDATA[controllo remoto]]></category>
		<category><![CDATA[desktop remoto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[quicksynergy]]></category>
		<category><![CDATA[synergy]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=795</guid>
		<description><![CDATA[Il progetto a cui vi introdurrò oggi è Synergy, un FOSS (Free and Open Source Software) che vi permetterò di condividere facilmente una sola tastiera ed un solo mouse tra molti computer con diverso sistema operativo. Quello che molti non conoscono è QuickSynergy, una comoda interfaccia per configurare Synergy su Linux e Mac (Sprovvisti di interfaccia [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=795&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-796" title="synergy foss" src="http://discoverylinux.files.wordpress.com/2011/01/synergy.jpg?w=450" alt=""   /> Il progetto a cui vi introdurrò oggi è <strong>Synergy</strong>, un FOSS (Free and Open Source Software) che vi permetterò di <strong>condividere</strong> facilmente una <strong>sola tastiera ed un solo mouse tra molti computer </strong>con<strong> diverso sistema operativo.</strong></p>
<p><span id="more-795"></span><img src="http://synergy-foss.org/img/splash.jpg" alt="" /></p>
<p>Quello che molti non conoscono è <strong>QuickSynergy</strong>, una comoda <strong>interfaccia</strong> per configurare Synergy su <strong>Linux e Mac</strong> (Sprovvisti di interfaccia ufficiale come quella creata per windows)</p>
<p>In <strong>Ubuntu, </strong>QuickSynergy si trova direttamente nei <strong>repository</strong> ed è installabile dal comodo <strong>Ubuntu Software Center.</strong></p>
<p>Vi mostro qui di seguito come configurarlo in pochi passi:</p>
<ol>
<li>Controllate il vostro <strong>indirizzo IP</strong> con tasto destro sul <strong>network-manager </strong>di Ubuntu<br />
<a href="http://discoverylinux.files.wordpress.com/2011/01/01connessione.png"><img class="size-full wp-image-800 aligncenter" title="01Connessione" src="http://discoverylinux.files.wordpress.com/2011/01/01connessione.png?w=450" alt=""   /></a></li>
<li>Segnate <strong>l&#8217;IP</strong> del vostro <strong>computer Client</strong>, cioè del <strong>computer che verrà controllato</strong> dal mouse e tastiera del Server<br />
<a href="http://discoverylinux.files.wordpress.com/2011/01/02connessione.png"><img class="aligncenter size-full wp-image-799" title="02Connessione" src="http://discoverylinux.files.wordpress.com/2011/01/02connessione.png?w=450&#038;h=371" alt="" width="450" height="371" /></a></li>
<li>Inserite tale indirizzo nella tab <em><strong>Use</strong></em> di QuickSynergy, dove c&#8217;è scritto <strong>Screen Name</strong>. Rieseguite i passaggi 1 e 2 anche sul computer server (che controllerà il client) inserendo il relativo IP dentro <strong>Server hostname/IP address </strong>nel<strong> computer Client.<br />
</strong>Premete dunque <strong>Execute </strong> per entrare in fase di ascolto da parte del Client.<strong><br />
</strong>In questo caso il <strong>Client</strong> ha ip 192.168.0.15 ed il <strong>Server</strong> ha  ﻿﻿ip 192.168.0.10<br />
<a href="http://discoverylinux.files.wordpress.com/2011/01/03client.png"><img class="aligncenter size-full wp-image-798" title="03Client" src="http://discoverylinux.files.wordpress.com/2011/01/03client.png?w=450" alt=""   /></p>
<p></a></li>
<li>Ora <strong>spostatevi </strong>al computer <strong>Server</strong> e<strong> lanciate QuickSynergy</strong>. Qui, nella tabella <em><strong>Share </strong></em>inserite i <strong>dati relativi ai Client</strong> configurati precedentemente. Noterete una cartella home (il nostro Server) ed ai quattro lati le scritte &#8220;Above, Left, Right, Below&#8221;. Queste stanno ad indicare la <strong>posizione del Client rispetto al Server</strong>, che dunque estenderà l&#8217;azione di mouse e tastiera sui monitor nella direzione scelta.<br />
Premete <strong>Execute </strong> a procedura terminata.<br />
Nel mio caso, il server è a sinistra ed il client è a destra:<br />
<a href="http://discoverylinux.files.wordpress.com/2011/01/04server.png"><img class="aligncenter size-full wp-image-797" title="04Server" src="http://discoverylinux.files.wordpress.com/2011/01/04server.png?w=450" alt=""   /><br />
</a></li>
<li>Se tutto è andato per il verso giusto, dovreste veder <strong>scomparire</strong> il cursore dal client e dovreste poter <strong>passare</strong> tra gli schermi con il mouse del server.<br />
Se ci sono problemi provare ad ad annullare l&#8217;esecuzione di QuickSynergy ed a riprovare con i due <strong>Execute. </strong>Se continuate ad avere problemi potete lanciare QuickSynergy da terminale e controllare cosa succede oppure controllare di avere le giuste porte aperte nella rete (porta TCP 24800)</li>
</ol>
<p>&nbsp;</p>
<p>Buona sinergia!</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/gnome/'>gnome</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/conndivisione/'>conndivisione</a>, <a href='http://discoverylinux.wordpress.com/tag/controllo-remoto/'>controllo remoto</a>, <a href='http://discoverylinux.wordpress.com/tag/desktop-remoto/'>desktop remoto</a>, <a href='http://discoverylinux.wordpress.com/tag/linux/'>linux</a>, <a href='http://discoverylinux.wordpress.com/tag/mac/'>mac</a>, <a href='http://discoverylinux.wordpress.com/tag/quicksynergy/'>quicksynergy</a>, <a href='http://discoverylinux.wordpress.com/tag/synergy/'>synergy</a>, <a href='http://discoverylinux.wordpress.com/tag/vnc/'>vnc</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=795&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/01/25/ubuntu-2-o-piu-computer-con-1-sola-tastiera-mouse-con-synergy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/synergy.jpg" medium="image">
			<media:title type="html">synergy foss</media:title>
		</media:content>

		<media:content url="http://synergy-foss.org/img/splash.jpg" medium="image" />

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/01connessione.png" medium="image">
			<media:title type="html">01Connessione</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/02connessione.png" medium="image">
			<media:title type="html">02Connessione</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/03client.png" medium="image">
			<media:title type="html">03Client</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/04server.png" medium="image">
			<media:title type="html">04Server</media:title>
		</media:content>
	</item>
		<item>
		<title>[Aggiornamento] Creare layer 3d nel Layar Reality Browser</title>
		<link>http://discoverylinux.wordpress.com/2011/01/05/aggiornamento-creare-layer-3d-nel-layar-reality-browser/</link>
		<comments>http://discoverylinux.wordpress.com/2011/01/05/aggiornamento-creare-layer-3d-nel-layar-reality-browser/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 17:22:07 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[3d object]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[browser 3d]]></category>
		<category><![CDATA[layar]]></category>
		<category><![CDATA[layar model converter]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=785</guid>
		<description><![CDATA[Dopo alcuni ulteriori smanettamenti, successivamente alla stesura della guida per creare Layer per il Browser di augmented reality &#8220;Layar 3D&#8221;: Guida per la creazione del Layer 3D su Layar Ho scoperto un bug che non consentiva la visualizzazione 3D dei Layer inseriti a causa di un field mancante nella creazione della tabella POI_Table. Mi sono accorto [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=785&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dopo alcuni ulteriori smanettamenti, successivamente alla stesura della guida per creare Layer per il Browser di augmented reality &#8220;Layar 3D&#8221;: <a href="http://discoverylinux.wordpress.com/2010/12/03/guida-creare-oggetti-layer-3d-per-il-layar-reality-browser/" target="_blank">Guida per la creazione del Layer 3D su Layar</a></p>
<p><a href="http://discoverylinux.wordpress.com/2010/12/03/guida-creare-oggetti-layer-3d-per-il-layar-reality-browser/"></a>Ho scoperto un <strong>bug</strong> che non consentiva la visualizzazione 3D dei Layer inseriti a causa di un <strong>field mancante</strong> nella creazione della tabella POI_Table.</p>
<p>Mi sono accorto di tale errore <strong>effettuando il Test </strong>sul Layer attraverso i nuovi strumenti di monitoring forniti dai <strong>Layar Developer Tools,</strong> che vedete qui di seguito.</p>
<p><strong><a href="http://discoverylinux.files.wordpress.com/2011/01/test1.png"><img class="aligncenter size-full wp-image-786" title="Layar Developer Center 1" src="http://discoverylinux.files.wordpress.com/2011/01/test1.png?w=450&#038;h=171" alt="" width="450" height="171" /><span id="more-785"></span></a></strong></p>
<p><strong><br />
</strong></p>
<p><strong>Simulazione</strong> del caricamento dei <strong>POI</strong> comprensiva di filtri:</p>
<p><strong><a href="http://discoverylinux.files.wordpress.com/2011/01/test2.png"><img class="aligncenter size-full wp-image-787" title="Layar Developer Center 2" src="http://discoverylinux.files.wordpress.com/2011/01/test2.png?w=450&#038;h=270" alt="" width="450" height="270" /></a></strong></p>
<p><strong><br />
</strong></p>
<p>Gestione degli errori con tanto di <strong>console</strong>:</p>
<p><strong><a href="http://discoverylinux.files.wordpress.com/2011/01/test3.png"><img class="aligncenter size-full wp-image-788" title="Layar Developer Center" src="http://discoverylinux.files.wordpress.com/2011/01/test3.png?w=450&#038;h=298" alt="" width="450" height="298" /></a><br />
</strong></p>
<p>Per risolvere il problema che è possibile osservare dall&#8217;immagine qui sopra: <strong>Field &#8216;object&#8217; is required</strong></p>
<p>Occorre inserire una nuova riga nella tabella POI_Table. Riga che inserisce il parametro object di tipo INT, NULL di default. Per rispettare le vecchie sperifiche l&#8217;ho inserito successivamente al parametro relativeAlt<span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;font-size:12px;line-height:18px;white-space:pre;"> </span></p>
<pre>ALTER TABLE `POI_Table` ADD `object` INT( 5 ) NULL DEFAULT NULL AFTER `relativeAlt`;</pre>
<p>Ora che abbiamo inserito questa entry, possiamo aggiungere un valore al<strong> field object</strong>. In particolare andremo ad inserire l&#8217;<strong>id del nostro oggetto 3d </strong>che troviamo nella tabella <strong>OBJECT_Table.</strong></p>
<p>Come risultato l&#8217;intera tabella POI_Table si crea con il comando:</p>
<pre><em>CREATE TABLE IF NOT EXISTS `POI_Table` (</em>
<em> `id` varchar(255) NOT NULL,</em>
<em> `attribution` varchar(150) default NULL,</em>
<em> `title` varchar(150) NOT NULL,</em>
<em> `lat` decimal(20,10) NOT NULL,</em>
<em> `lon` decimal(20,10) NOT NULL,</em>
<em> `imageURL` varchar(255) default NULL,</em>
<em> `line4` varchar(150) default NULL,</em>
<em> `line3` varchar(150) default NULL,</em>
<em> `line2` varchar(150) default NULL,</em>
<em> `type` int(11) default '0',</em>
<em> `dimension` int(1) default '1',</em>
<em> `alt` int(10) default NULL,</em>
<em> `relativeAlt` int(10) default NULL,
</em><em> `object` int(5) default NULL,
</em><em> `distance` decimal(20,10) NOT NULL,
<span style="font-style:normal;"><em> `inFocus` tinyint(1) default '0',
</em></span></em><em> `doNotIndex` tinyint(1) default '0',
</em><em> `showSmallBiw` tinyint(1) default '1',
</em><em> `showBiwOnClick` tinyint(1) default '1',
</em><em> PRIMARY KEY  (`id`)
</em><em>) ENGINE=MyISAM  DEFAULT CHARSET=utf8;</em></pre>
<p>&nbsp;</p>
<p><strong>By Sparazza</strong></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/3d-object/'>3d object</a>, <a href='http://discoverylinux.wordpress.com/tag/augmented-reality/'>augmented reality</a>, <a href='http://discoverylinux.wordpress.com/tag/browser-3d/'>browser 3d</a>, <a href='http://discoverylinux.wordpress.com/tag/layar/'>layar</a>, <a href='http://discoverylinux.wordpress.com/tag/layar-model-converter/'>layar model converter</a>, <a href='http://discoverylinux.wordpress.com/tag/layer/'>layer</a>, <a href='http://discoverylinux.wordpress.com/tag/phpmyadmin/'>phpmyadmin</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=785&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2011/01/05/aggiornamento-creare-layer-3d-nel-layar-reality-browser/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/test1.png" medium="image">
			<media:title type="html">Layar Developer Center 1</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/test2.png" medium="image">
			<media:title type="html">Layar Developer Center 2</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2011/01/test3.png" medium="image">
			<media:title type="html">Layar Developer Center</media:title>
		</media:content>
	</item>
		<item>
		<title>[Guida] Creare oggetti e layer 3d per il Layar Reality Browser</title>
		<link>http://discoverylinux.wordpress.com/2010/12/03/guida-creare-oggetti-layer-3d-per-il-layar-reality-browser/</link>
		<comments>http://discoverylinux.wordpress.com/2010/12/03/guida-creare-oggetti-layer-3d-per-il-layar-reality-browser/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 23:14:02 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[layar]]></category>
		<category><![CDATA[model converter]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[poi]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=772</guid>
		<description><![CDATA[Quest&#8217;oggi vi guiderò alla pubblicazione di uno strato/layer su Layar Reality Browser. Creare un oggetto 3D In questa guida non mostrerò come creare oggetti 3d, però ecco alcuni consigli e linee guida da seguire: Non superare i 5000 poligoni Utilizzare textures piccole e con formato multiplo di 2 (ad esempio 128&#215;128, 256&#215;256, 512&#215;512, 1024&#215;1024; e non [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=772&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Quest&#8217;oggi vi guiderò alla pubblicazione di uno strato/layer su Layar Reality Browser.</p>
<h2>Creare un oggetto 3D</h2>
<p>In questa guida <strong>non mostrerò </strong>come creare oggetti 3d, però ecco alcuni consigli e <strong>linee guida</strong> da seguire:</p>
<ul>
<li>Non superare i <strong>5000 poligoni</strong></li>
<li>Utilizzare <strong>textures piccole</strong> e con formato<strong> multiplo di 2</strong> (ad esempio 128&#215;128, 256&#215;256, 512&#215;512, 1024&#215;1024; e non devono essere non per forza quadrate, come: 128&#215;512)</li>
<li><strong>Esportate</strong> gli oggetti dal <strong>centro</strong> del vostro editor 3d (Global 0,0,0)</li>
<li><strong>Esportate in formato .obj</strong> mantenendo nell&#8217;export i materiali e l&#8217;UVmapping (Gli oggetti dunque possono essere creati con qualunque editor 3d che abbia l&#8217;exporter obj)</li>
<li>Copiate tutte le <strong>immagini</strong> utilizzate nel modello, <strong>nella stessa cartella dell&#8217;Obj</strong>, altrimenti il <strong>Layar 3D Model Converter </strong>non troverà le texture relative</li>
</ul>
<p>Se non volete creare un modello potete scaricare dell&#8217;ottimo materiale dalla <a href="http://sketchup.google.com/3dwarehouse/" target="_blank">google 3d warehouse</a> o da siti di oggetti 3d gratuiti come <a href="http://www.turbosquid.com/" target="_blank">turbosquid<span id="more-772"></span></a></p>
<h2>Layar 3D Model Converter</h2>
<p>Recarsi alla pagina relativa del wiki <a href="http://layar.pbworks.com/w/page/32586555/3D-Model-Converter" target="_blank">Layar 3D Model Converter</a> e scaricare il converter (trovate l&#8217;ultima versione al link <a href="http://site.layar.com/downloads/Layar3DModelConverter.jnlp">http://site.layar.com/downloads/Layar3DModelConverter.jnlp</a>)</p>
<p style="text-align:center;"><img class="aligncenter" src="http://layar.pbworks.com/f/1290433785/preview_tab.png" alt="" width="481" height="356" /></p>
<p>Per importare un modello Obj, controllarlo, posizionarlo ed esportarlo in formato Layar, cioè <strong>.l3d </strong>vi rimando alla pagina del <a href="http://layar.pbworks.com/w/page/32586555/3D-Model-Converter" target="_blank">Layar 3D Model Converter</a> dove c&#8217;è una guida  con immagini e step passo passo.</p>
<h2>Aggiungere le tabelle al database</h2>
<p>Questa, almeno per quello che mi riguarda, è la parte maggiormente ostica. Qui <strong>assumo</strong> che abbiate un <strong>vostro database sql configurato e funzionante</strong> (se ne può creare uno molto facilmente sul sito Altervista.org, con phpmyadmin già installato e tutto già configurato)</p>
<p>Aprite phpmyadmin, mysql o qualsiasi altro mezzo con il quale vi connettete al vostro db.</p>
<p><span style="color:#ff0000;">IMPORTANTE: </span>Prima di proseguire, consultare <strong>l&#8217;UPDATE</strong> per la <strong>creazione corretta</strong> della tabella <strong>POI_Table</strong>: <a href="http://discoverylinux.wordpress.com/2011/01/05/aggiornamento-creare-layer-3d-nel-layar-reality-browser/">Link</a></p>
<p>Create la<strong> tabella POI_Table</strong> con la seguente query:</p>
<pre><em>CREATE TABLE IF NOT EXISTS `POI_Table` (</em>
<em> `id` varchar(255) NOT NULL,</em>
<em> `attribution` varchar(150) default NULL,</em>
<em> `title` varchar(150) NOT NULL,</em>
<em> `lat` decimal(20,10) NOT NULL,</em>
<em> `lon` decimal(20,10) NOT NULL,</em>
<em> `imageURL` varchar(255) default NULL,</em>
<em> `line4` varchar(150) default NULL,</em>
<em> `line3` varchar(150) default NULL,</em>
<em> `line2` varchar(150) default NULL,</em>
<em> `type` int(11) default '0',</em>
<em> `dimension` int(1) default '1',</em>
<em> `alt` int(10) default NULL,</em>
<em> `relativeAlt` int(10) default NULL,</em>
<em> `distance` decimal(20,10) NOT NULL,</em>
<em> `inFocus` tinyint(1) default '0',</em>
<em> `doNotIndex` tinyint(1) default '0',</em>
<em> `showSmallBiw` tinyint(1) default '1',</em>
<em> `showBiwOnClick` tinyint(1) default '1',</em>
<em> PRIMARY KEY  (`id`)</em>
<em>) ENGINE=MyISAM  DEFAULT CHARSET=utf8;</em></pre>
<p>Create la<strong> tabella OBJECT_Table</strong> con la seguente query:</p>
<pre><em>CREATE TABLE IF NOT EXISTS `OBJECT_Table` (</em>
<em> `ID` int(10) NOT NULL auto_increment,</em>
<em> `poiID` varchar(255) NOT NULL,</em>
<em> `baseURL` varchar(255) NOT NULL,</em>
<em> `full` varchar(255) NOT NULL,</em>
<em> `reduced` varchar(255) default NULL,</em>
<em> `icon` varchar(255) default NULL,</em>
<em> `size` float(15,5) NOT NULL,</em>
<em> PRIMARY KEY  (`ID`)</em>
<em>) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;</em></pre>
<p>Un <strong>esempio</strong> di un oggetto nella tabella OBJECT_Table dentro phpmyadmin è:</p>
<p><a href="http://layar.pbworks.com/f/1278430044/Object.png"><img src="http://layar.pbworks.com/f/1278430044/Object.png" alt="" width="480" height="31" /></a></p>
<p>Create la<strong> tabella <em><strong>TRANSFORM_Table</strong></em></strong> con la seguente query:</p>
<pre>CREATE TABLE IF NOT EXISTS `TRANSFORM_Table` (
 `ID` int(10) NOT NULL auto_increment,
 `poiID` varchar(255) NOT NULL,
 `rel` tinyint(1) default '0',
 `angle` decimal(5,2) default '0.00',
 `scale` decimal(12,2) NOT NULL default '1.00',
 PRIMARY KEY  (`ID`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;<em> </em></pre>
<p>Un <strong>esempio</strong> di un oggetto nella tabella TRANSFORM_Table dentro phpmyadmin è:</p>
<p><img src="http://layar.pbworks.com/f/1278430052/Transform.png" alt="" width="304" height="51" /></p>
<h2>Creare un nuovo POI 3D</h2>
<p>Per inserire un POI nella <strong>POI_Table ,</strong> potete inserire tutti i campi manualmente, oppure utilizzare questa query base che ho copiato dal sito di Layar:</p>
<pre>INSERT INTO `POI_Table`
(`id`, `attribution`, `title`, `lat`, `lon`, `imageURL`, `line4`, `line3`, `line2`, `type`, `dimension`, `alt`, `relativeAlt`, `distance`, `inFocus`, `doNotIndex`,                `showSmallBiw`, `showBiwOnClick`)
VALUES
('1', 'The Location of the Layar Office', 'The Layar Office', '52.3741180000', '4.9342500000', '<a href="http://custom.layar.nl/Layar_banner_icon.png">http://custom.layar.nl/Layar_banner_icon.png</a>', '1019DW Amsterdam', 'distance:%distance%', 'Rietlandpark 301', 1, 1, NULL, NULL, '0.0000000000', 0, 0, 1, 1);</pre>
<p>ed il <strong>POI</strong> appena creato diventerà:</p>
<p><a href="http://layar.pbworks.com/f/1286368719/firsttutorial_POITable.png"><img src="http://layar.pbworks.com/f/1286368719/firsttutorial_POITable.png" alt="" width="473" height="349" /></a></p>
<p>Per <strong>personalizzare</strong> il vostro POI hotspot (con la vostra descrizione, il vostro nome) seguite le GETPOI-JSON-Response a questa pagina: <a href="http://layar.pbworks.com/w/page/28473525/GetPOIs-JSON%20Response">http://layar.pbworks.com/w/page/28473525/GetPOIs-JSON%20Response</a></p>
<p>Per pubblicare un oggetto 3D, cambiamo il campo <strong><em>dimension</em></strong> della tabella da 1 a 3.</p>
<p>Sostituiamo poi le <strong>coordinate</strong> dove vogliamo piazzare il nostro POI prendendo <strong>Lat e Lon</strong> ad esempio da Google Maps.</p>
<h2>Creare l&#8217;OBJECT ed il suo relativo TRANSFORM</h2>
<p>Inserite una nuova entry nella tabella OBJECT_Table con parametri:</p>
<ul>
<li><strong>ID</strong>: vuoto</li>
<li><strong>poiID</strong>: id del POI creato precedentemente, se è il vostro primo POI, probabilmente sarà 1</li>
<li><strong>baseURL</strong>: url della directory dove caricherete il vostro file .l3d (es <a href="http://sparazza.altervista.org/" rel="nofollow">http://sparazza.altervista.org/</a>)</li>
<li><strong>full</strong>: nome del vostro file .l3d completo di estensione</li>
<li><strong>reduced</strong>: vuoto</li>
<li><strong>icon</strong>: vuoto</li>
<li><strong>size</strong>: dimensione dell&#8217;oggetto (se avete usato il Layar 3d Model Converter avrete probabilmente questa informazione in un file .json salvato nella stessa directory del file .l3d)</li>
</ul>
<p>Inserite ora una nuova entry nella tabella TRANSFORM_Table con parametri:</p>
<ul>
<li><strong>ID</strong>: vuoto</li>
<li><strong>poiID</strong>: id del POI creato precedentemente, se è il vostro primo POI, probabilmente sarà 1</li>
<li><strong>rel:</strong> vuoto</li>
<li><strong>angle: </strong>angolo di rotazione dell&#8217;oggetto 3d (se avete usato il Layar 3d Model Converter avrete probabilmente questa informazione in un file .json salvato nella stessa directory del file .l3d)</li>
<li><strong>scale: </strong>dimensione dell&#8217;oggetto 3d (se avete usato il Layar 3d Model Converter avrete probabilmente questa informazione in un file .json salvato nella stessa directory del file .l3d)</li>
</ul>
<h2><span style="font-size:20px;font-weight:bold;">Editare il php per le funzioni di riconoscimento del POI</span></h2>
<p>Scaricare il file presente a questo indirizzo: <a href="http://layar.pbworks.com/f/ThirdTutorial_code.zip" target="_blank">http://layar.pbworks.com/f/ThirdTutorial_code.zip</a></p>
<p>Questo file contiene l&#8217;esempio del wiki ufficiale, ma quello che ci interessa è il file <strong>.php</strong> contenuto al suo interno.<br />
Una volta salvato apritelo con un <strong>editor di testo</strong> ed alle righe 380  circa trovate le <strong>informazioni per l&#8217;accesso al database</strong>: compilatelo con le informazioni per il vostro db, salvate e chiudete.</p>
<h2>Caricare i file e creare il Layer</h2>
<p><strong>A questo punto caricate il layer</strong> (il file .l3d ed il file .php appena modificato) nel vostro spazio web, nella directory specificata precedentemente in <em><strong>baseURL</strong></em>.</p>
<p>Entrate nella sezione di <strong>pubblicazione</strong> layer del sito: <a href="http://www.layar.com/">http://www.layar.com/</a><br />
(Se non avete un <strong>account da developer</strong> richiedetene uno)<br />
Seguite infine l&#8217;how-to di creazione Layer che vi permetterà di mostrare il file tra i vostri <strong>Layer in testing.</strong></p>
<p><img class="aligncenter size-full wp-image-776" title="header-nov-2010" src="http://discoverylinux.files.wordpress.com/2010/12/header-nov-2010.jpg?w=450&#038;h=190" alt="" width="450" height="190" /></p>
<p>Se mi sono dimenticato qualcosa o avete dubbi, lasciate pure un commento&#8230; intanto per ulteriori informazioni vi rimando alla lettura della documentazione ufficiale: <a href="http://layar.pbworks.com/w/page/7783228/FrontPage" target="_blank">Layar Developer Wiki</a></p>
<p>Inoltre consiglio vivamente, per &#8220;entrare nel meccanismo&#8221;, di guardare e seguire i <strong>tutorial</strong> partendo dal primo <a href="http://layar.pbworks.com/w/page/30832324/First%20Layar%20Tutorial%20-%20Create%20a%20simple%20layer" target="_blank">First Layar Tutorial &#8211; Create a simple layer</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/android-guide/'>Android</a>, <a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/android/'>android</a>, <a href='http://discoverylinux.wordpress.com/tag/augmented-reality/'>augmented reality</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/guida/'>guida</a>, <a href='http://discoverylinux.wordpress.com/tag/howto/'>howto</a>, <a href='http://discoverylinux.wordpress.com/tag/iphone/'>iphone</a>, <a href='http://discoverylinux.wordpress.com/tag/layar/'>layar</a>, <a href='http://discoverylinux.wordpress.com/tag/model-converter/'>model converter</a>, <a href='http://discoverylinux.wordpress.com/tag/object/'>object</a>, <a href='http://discoverylinux.wordpress.com/tag/poi/'>poi</a>, <a href='http://discoverylinux.wordpress.com/tag/tutorial/'>tutorial</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=772&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/12/03/guida-creare-oggetti-layer-3d-per-il-layar-reality-browser/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://layar.pbworks.com/f/1290433785/preview_tab.png" medium="image" />

		<media:content url="http://layar.pbworks.com/f/1278430044/Object.png" medium="image" />

		<media:content url="http://layar.pbworks.com/f/1278430052/Transform.png" medium="image" />

		<media:content url="http://layar.pbworks.com/f/1286368719/firsttutorial_POITable.png" medium="image" />

		<media:content url="http://discoverylinux.files.wordpress.com/2010/12/header-nov-2010.jpg" medium="image">
			<media:title type="html">header-nov-2010</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Instant Previews: nel bene o nel male..</title>
		<link>http://discoverylinux.wordpress.com/2010/11/09/google-instant-previews-nel-bene-o-nel-male/</link>
		<comments>http://discoverylinux.wordpress.com/2010/11/09/google-instant-previews-nel-bene-o-nel-male/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 15:08:52 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[motore di ricerca]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[segnalazioni]]></category>
		<category><![CDATA[google instant]]></category>
		<category><![CDATA[google instant preview]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[tempo reale]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=762</guid>
		<description><![CDATA[Google si sta sporcando le mani per sporcare il suo motore di ricerca. Quello che un tempo era un semplice visualizzatore di risultati, ora rimasto tale (o quasi) solo sulle periferiche mobili, sui pc desktop sta evolvendo in un accrocchio di strumenti-funzioni-aggiunte-plugins-temporeale e chissà cos&#8217;altro. Questo nel bene o nel male ci porta a definire [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=762&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Google si sta sporcando le mani per sporcare il suo motore di ricerca. Quello che un tempo era un semplice visualizzatore di risultati, ora rimasto tale (<a href="http://ziogeek.com/google-instant-anche-su-iphone-e-android/" target="_blank">o quasi</a>) solo sulle periferiche mobili, sui pc desktop sta evolvendo in un <strong>accrocchio</strong> di <em>strumenti-funzioni-aggiunte-plugins-temporeale</em> e chissà cos&#8217;altro.</p>
<p>Questo <strong>nel bene o nel male</strong> ci porta a definire Google un&#8217;azienda che sperimenta senza timore, anche col rischio di <a href="http://www.youtube.com/watch?v=E3FhJocDLKg" target="_blank">infastidire</a> e non piacere.</p>
<h2>Dove trovarlo</h2>
<p>L&#8217;ultimo <strong>experiment</strong> introdotto è appunto il <strong>Google Instant Preview</strong>, attivabile a questo indirizzo: <a href="http://www.google.com/instantpreviews">www.google.com/instantpreviews</a></p>
<p style="text-align:center;">Video Dimostrativo</p>
<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='450' height='284' src='http://www.youtube.com/embed/nGaU7JKU7TU?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<h2>Caratteristiche principali</h2>
<p>Una volta <strong>attivato</strong> il nuovo servizio, verremo redirezionati su Google.com e la <strong>pagina dei risultati</strong> sarà<strong> quasi identica</strong> a prima, tranne che per una <strong>piccola lente d&#8217;ingrandimento </strong>accanto al titolo dei risultati.<span id="more-762"></span></p>
<p><a href="http://discoverylinux.files.wordpress.com/2010/11/ricerca2.jpg"><img class="aligncenter size-medium wp-image-763" title="Google instant preview" src="http://discoverylinux.files.wordpress.com/2010/11/ricerca2.jpg?w=300&#038;h=79" alt="" width="300" height="79" /></a></p>
<p><a href="http://discoverylinux.files.wordpress.com/2010/11/ricerca2.jpg"></a>Per attivare la funziona basta dunque <strong>cliccare la lente</strong>, ma dopo qualche secondo di utilizzo si nota che è possibile anche <strong>cliccare all&#8217;interno del riquadro</strong> che ingloba ogni singolo risultato.</p>
<p><a href="http://discoverylinux.files.wordpress.com/2010/11/ricerca-del-testo.jpg"><img class="aligncenter size-full wp-image-764" title="Google instant preview test" src="http://discoverylinux.files.wordpress.com/2010/11/ricerca-del-testo.jpg?w=450&#038;h=357" alt="" width="450" height="357" /></a></p>
<p><strong>Scorrendo</strong> col mouse da un risultato ad un altro, il popup a destra si <strong>aggiornerà</strong> con nuovi &#8220;screenshot&#8221; della pagina linkata.</p>
<p>Alcune funzioni interessanti sono la possibilità di vedere <strong>l&#8217;anteprima</strong> di <strong>documenti PDF</strong></p>
<p><strong><a href="http://discoverylinux.files.wordpress.com/2010/11/ricercares2.jpg"><img class="aligncenter size-full wp-image-765" title="Google instant preview pdf docs" src="http://discoverylinux.files.wordpress.com/2010/11/ricercares2.jpg?w=450&#038;h=210" alt="" width="450" height="210" /></a></strong></p>
<p><strong><br />
</strong></p>
<p>In ogni caso la pagina mostrata non sarà intera, ma presenterà dei <strong>punti di rottura</strong>, come quello nella figura sotto, così da riuscire ad <strong>evidenziare nella preview il testo cercato:</strong></p>
<p><strong><a href="http://discoverylinux.files.wordpress.com/2010/11/ricercares1.jpg"><img class="aligncenter size-full wp-image-766" title="Google instant preview" src="http://discoverylinux.files.wordpress.com/2010/11/ricercares1.jpg?w=450&#038;h=300" alt="" width="450" height="300" /></a></strong></p>
<p>Le immagini che vengono mostrate, sono <strong>screenshot</strong> (probabilmente jpg) <strong>compressi</strong> dai server google e poi redirezionati a noi. Questo consente una visualizzazione spedita e <strong>senza appesantimenti</strong> di sorta.</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/category/motore-di-ricerca/google-motore-di-ricerca/'>google</a>, <a href='http://discoverylinux.wordpress.com/category/motore-di-ricerca/'>motore di ricerca</a>, <a href='http://discoverylinux.wordpress.com/category/news/'>news</a>, <a href='http://discoverylinux.wordpress.com/category/segnalazioni/'>segnalazioni</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/tag/google-instant/'>google instant</a>, <a href='http://discoverylinux.wordpress.com/tag/google-instant-preview/'>google instant preview</a>, <a href='http://discoverylinux.wordpress.com/tag/html5/'>html5</a>, <a href='http://discoverylinux.wordpress.com/tag/tempo-reale/'>tempo reale</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=762&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/11/09/google-instant-previews-nel-bene-o-nel-male/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/11/ricerca2.jpg?w=300" medium="image">
			<media:title type="html">Google instant preview</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/11/ricerca-del-testo.jpg" medium="image">
			<media:title type="html">Google instant preview test</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/11/ricercares2.jpg" medium="image">
			<media:title type="html">Google instant preview pdf docs</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/11/ricercares1.jpg" medium="image">
			<media:title type="html">Google instant preview</media:title>
		</media:content>
	</item>
		<item>
		<title>[Video] Tutorial sullo Snap in Blender</title>
		<link>http://discoverylinux.wordpress.com/2010/11/05/video-tutorial-sullo-snap-in-blender/</link>
		<comments>http://discoverylinux.wordpress.com/2010/11/05/video-tutorial-sullo-snap-in-blender/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 22:12:51 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[blender 2.5]]></category>
		<category><![CDATA[Blender tutorial]]></category>
		<category><![CDATA[calamita]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[snap]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=755</guid>
		<description><![CDATA[Ecco un video per spiegare le modalità d&#8217;uso della funzione Calamita, altresì detta Snap, in Blender 2.49. Naturalmente quello che verrà mostrato sarà presente allo stesso modo anche nella nuova versione 2.5 ora in Beta. Blender Snap Tutorial [ITA] on Vimeo. &#160; Le funzionalità su cui mi sono concentrato sono: Snap ai vertici Snap agli [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=755&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft" title="Blender snap" src="http://www.redbaron85.com/RES-ARTICOLI/Tutorial-Basi-gui-Blender-25-principianti---03x06---SnapElement-EditMode-Vertex.JPG" alt="" width="254" height="139" />Ecco un <strong>video</strong> per spiegare le modalità d&#8217;uso della funzione <strong>Calamita</strong>, altresì detta <strong>Snap</strong>, in <strong>Blender</strong> 2.49. Naturalmente quello che verrà mostrato sarà presente allo stesso modo anche nella nuova versione 2.5 ora in Beta.</p>
<p><span id="more-755"></span></p>
<p><a href="http://vimeo.com/16516428">Blender Snap Tutorial [ITA]</a>  on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>&nbsp;</p>
<p>Le funzionalità su cui mi sono concentrato sono:</p>
<ul>
<li>Snap ai <strong>vertici</strong></li>
<li>Snap agli <strong>edge</strong></li>
<li>Snap alle <strong>facce</strong></li>
<li>Modalità di snap: <strong>Closest</strong>, <strong>Median</strong> ed <strong>Active</strong></li>
</ul>
<p><strong><br />
</strong></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/3d/'>3d</a>, <a href='http://discoverylinux.wordpress.com/tag/blender-2-5/'>blender 2.5</a>, <a href='http://discoverylinux.wordpress.com/tag/blender-tutorial/'>Blender tutorial</a>, <a href='http://discoverylinux.wordpress.com/tag/calamita/'>calamita</a>, <a href='http://discoverylinux.wordpress.com/tag/guida/'>guida</a>, <a href='http://discoverylinux.wordpress.com/tag/howto/'>howto</a>, <a href='http://discoverylinux.wordpress.com/tag/linux/'>linux</a>, <a href='http://discoverylinux.wordpress.com/tag/snap/'>snap</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=755&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/11/05/video-tutorial-sullo-snap-in-blender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://www.redbaron85.com/RES-ARTICOLI/Tutorial-Basi-gui-Blender-25-principianti---03x06---SnapElement-EditMode-Vertex.JPG" medium="image">
			<media:title type="html">Blender snap</media:title>
		</media:content>
	</item>
		<item>
		<title>[Android] Angry Birds: soluzioni all&#8217;installazione fallita</title>
		<link>http://discoverylinux.wordpress.com/2010/10/21/angry-birds-installazione-fallita-su-android/</link>
		<comments>http://discoverylinux.wordpress.com/2010/10/21/angry-birds-installazione-fallita-su-android/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 11:37:29 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[angry birds]]></category>
		<category><![CDATA[crash applicazione]]></category>
		<category><![CDATA[impossibile installare]]></category>
		<category><![CDATA[impossible install]]></category>
		<category><![CDATA[installazione fallita]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=737</guid>
		<description><![CDATA[Dopo il rilascio gratuito di Angry Birds per Android, molte ROM moddate hanno sofferto e soffrono del problema dell&#8217;&#8221;impossibile installare&#8221; il gioco. Ciò avviene sia da market che scaricando l&#8217;APK! Per risolvere il problema che sta affliggendo una buona fetta della comunità android, ho trovato alcune soluzioni in rete ed ho pensato di raggrupparle in [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=737&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://discoverylinux.files.wordpress.com/2010/10/angrybirdsandroidmarket41.jpg"><img class="alignleft size-medium wp-image-742" title="AngryBirdsAndroidMarket" src="http://discoverylinux.files.wordpress.com/2010/10/angrybirdsandroidmarket41.jpg?w=180&#038;h=143" alt="" width="180" height="143" /></a>Dopo il rilascio gratuito di <strong>Angry Birds per Android</strong>, molte ROM moddate hanno sofferto e soffrono del problema dell&#8217;&#8221;<strong>impossibile installare</strong>&#8221; il gioco. Ciò avviene sia da <strong>market</strong> che scaricando <strong>l&#8217;APK!</strong></p>
<p>Per risolvere il problema che sta affliggendo una buona fetta della comunità android, ho trovato alcune <strong>soluzioni</strong> in rete ed ho pensato di raggrupparle in questo post.</p>
<p><span id="more-737"></span></p>
<h2>Soluzione 1</h2>
<p><strong>Rimuovere le SD</strong> dal cellulare, utilizzando la rimozione sicura da:<br />
Impostazioni -&gt; Scheda SD e memoria -&gt; Smonta scheda SD<br />
<a href="http://discoverylinux.files.wordpress.com/2010/10/original.png"><img class="aligncenter size-medium wp-image-743" title="android unmount SD card" src="http://discoverylinux.files.wordpress.com/2010/10/original.png?w=300&#038;h=291" alt="" width="300" height="291" /></a></p>
<p><strong>Installare</strong> il gioco dal <strong>Market</strong> e poi reinserire la SD</p>
<h2>Soluzione 2</h2>
<p>Nel mio caso <strong>non compariva il gioco nel Market</strong>, molto probabilmente perchè utilizzo una <strong>ROM modificata</strong> (come Cyanogen ed altre). Dunque ho <strong>scaricato l&#8217;APK da <a href="http://www.getjar.com/adp/angry-birds" target="_blank">GetJar.com</a></strong> ed ho provato ad installarlo da SD <strong>senza successo.</strong></p>
<p>Ho infine <strong>risolto</strong> utilizzando un metodo macchinoso ma efficace. Collegando il pc al computer ho infatti utilizzato <strong>ADB per installare l&#8217;applicazione</strong>: <a href="http://www.androidiani.com/wiki/Adb">http://www.androidiani.com/wiki/Adb</a></p>
<p>Per chi volesse tentare, c&#8217;è una comoda <strong>interfaccia grafica per ADB</strong> che permette di compiere gran parte delle operazioni eseguibili anche da linea di comando.<br />
Si chiama <a href="http://forum.xda-developers.com/showthread.php?t=641385" target="_blank">Adbuix</a> ed è già linux compatibile.</p>
<p><img class="aligncenter" title="Adbuix ADB tool linux android" src="http://www.androidworld.it/wp-content/uploads/2010/04/adbuix_main.png" alt="" width="445" height="385" /></p>
<h2>Se il gioco dovesse andare crash</h2>
<p>Se avete una ROM modificata, in questo caso può tornarvi utile. Difatti quelli che ho modificato nel mio caso sono parametri inseriti nelle <strong>impostazioni delle Performance della ROM CyanogenMod.</strong></p>
<p><strong> </strong>La mia <strong>configurazione</strong> funzionante è:</p>
<ul>
<li>Usa <strong>Compcache</strong> al 15%</li>
<li>Usa <strong>JIT</strong></li>
<li>Forza<strong> home in memoria</strong></li>
<li><strong>Heap VM </strong>a <strong>16m</strong></li>
</ul>
<p>Happy Angry (?!?) Birds!</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/google/android-google/'>Android</a>, <a href='http://discoverylinux.wordpress.com/category/guide/android-guide/'>Android</a>, <a href='http://discoverylinux.wordpress.com/category/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/android/'>android</a>, <a href='http://discoverylinux.wordpress.com/tag/angry-birds/'>angry birds</a>, <a href='http://discoverylinux.wordpress.com/tag/crash-applicazione/'>crash applicazione</a>, <a href='http://discoverylinux.wordpress.com/tag/impossibile-installare/'>impossibile installare</a>, <a href='http://discoverylinux.wordpress.com/tag/impossible-install/'>impossible install</a>, <a href='http://discoverylinux.wordpress.com/tag/installazione-fallita/'>installazione fallita</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=737&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/10/21/angry-birds-installazione-fallita-su-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/10/angrybirdsandroidmarket41.jpg?w=300" medium="image">
			<media:title type="html">AngryBirdsAndroidMarket</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/10/original.png?w=300" medium="image">
			<media:title type="html">android unmount SD card</media:title>
		</media:content>

		<media:content url="http://www.androidworld.it/wp-content/uploads/2010/04/adbuix_main.png" medium="image">
			<media:title type="html">Adbuix ADB tool linux android</media:title>
		</media:content>
	</item>
		<item>
		<title>EXR viewer: creare immagini Anaglyph 3D con Blender!</title>
		<link>http://discoverylinux.wordpress.com/2010/09/02/exr-viewer-creare-immagini-anaglyph-3d-con-blender/</link>
		<comments>http://discoverylinux.wordpress.com/2010/09/02/exr-viewer-creare-immagini-anaglyph-3d-con-blender/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 11:43:13 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[blender]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[progetto]]></category>
		<category><![CDATA[sperimentale]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[anaglyph]]></category>
		<category><![CDATA[exr_view]]></category>
		<category><![CDATA[glass]]></category>
		<category><![CDATA[occhiali]]></category>
		<category><![CDATA[red blue]]></category>
		<category><![CDATA[red cyan]]></category>
		<category><![CDATA[red green]]></category>
		<category><![CDATA[stereo]]></category>
		<category><![CDATA[stereoscopic]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=738</guid>
		<description><![CDATA[Mediante il tool EXR Viewer è possibile creare e testare immagini stereoscopiche (Anaglyph) 3D a partire da immagini OpenEXR create con Blender. Generare EXR da Blender Per generare un’immagine EXR in Blender, occorre salvare il rendering in formato OpenEXR. Continua a leggere&#8230; Archiviato in:blender, guide, progetto, sperimentale Tagged: 3d, anaglyph, blender, exr_view, glass, occhiali, red [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=738&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://discoverylinux.files.wordpress.com/2010/09/screenshot.jpg"><img class="aligncenter size-medium wp-image-752" title="Exr_View_creare immagini 3d con Blender" src="http://discoverylinux.files.wordpress.com/2010/09/screenshot.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Mediante il tool <strong>EXR Viewer </strong>è possibile creare e testare immagini stereoscopiche (Anaglyph) 3D a partire da <strong>immagini OpenEXR</strong> create con <strong>Blender</strong>.<span id="more-738"></span></p>
<h2>Generare EXR da Blender</h2>
<p>Per generare un’immagine EXR in Blender, occorre salvare il rendering in formato OpenEXR.</p>
<p><a href="https://rvn05.plx.cineca.it:12001/php/MDC/portal/wordpress/?p=554" target="_blank">Continua a leggere</a>&#8230;</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/blender-guide/'>blender</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/'>progetto</a>, <a href='http://discoverylinux.wordpress.com/category/progetto/sperimentale/'>sperimentale</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/3d/'>3d</a>, <a href='http://discoverylinux.wordpress.com/tag/anaglyph/'>anaglyph</a>, <a href='http://discoverylinux.wordpress.com/tag/blender/'>blender</a>, <a href='http://discoverylinux.wordpress.com/tag/exr_view/'>exr_view</a>, <a href='http://discoverylinux.wordpress.com/tag/glass/'>glass</a>, <a href='http://discoverylinux.wordpress.com/tag/occhiali/'>occhiali</a>, <a href='http://discoverylinux.wordpress.com/tag/red-blue/'>red blue</a>, <a href='http://discoverylinux.wordpress.com/tag/red-cyan/'>red cyan</a>, <a href='http://discoverylinux.wordpress.com/tag/red-green/'>red green</a>, <a href='http://discoverylinux.wordpress.com/tag/stereo/'>stereo</a>, <a href='http://discoverylinux.wordpress.com/tag/stereoscopic/'>stereoscopic</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=738&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/09/02/exr-viewer-creare-immagini-anaglyph-3d-con-blender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/09/screenshot.jpg?w=300" medium="image">
			<media:title type="html">Exr_View_creare immagini 3d con Blender</media:title>
		</media:content>
	</item>
		<item>
		<title>Icone Faenza: fabulose</title>
		<link>http://discoverylinux.wordpress.com/2010/08/10/icone-faenza-fabulose/</link>
		<comments>http://discoverylinux.wordpress.com/2010/08/10/icone-faenza-fabulose/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 20:11:19 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[segnalazioni]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[cartelle]]></category>
		<category><![CDATA[eye candy]]></category>
		<category><![CDATA[faenza]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[icone]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[personalizzazione]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=727</guid>
		<description><![CDATA[Semplicemente Fabulose Per installarle trovate i nuovi ppa ed i comandi su OMGUbuntu: http://www.omgubuntu.co.uk/2010/08/faenza-icon-set-gets-ppa.html Archiviato in:Customize, gnome, guide, segnalazioni Tagged: archive, cartelle, eye candy, faenza, free, gnome, icon, icone, linux, personalizzazione, set, ubuntu<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=727&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p style="text-align:center;">Semplicemente<strong> </strong>Fabulose</p>
<p style="text-align:center;"><a href="http://fc06.deviantart.net/fs71/i/2010/222/b/4/Faenza_Icons_by_tiheum.png"><img class="aligncenter" title="Faenza Icon Theme" src="http://fc06.deviantart.net/fs71/i/2010/222/b/4/Faenza_Icons_by_tiheum.png" alt="" width="461" height="346" /></a></p>
<p>Per installarle trovate i nuovi ppa ed i comandi su OMGUbuntu: <a href="http://www.omgubuntu.co.uk/2010/08/faenza-icon-set-gets-ppa.html" target="_blank">http://www.omgubuntu.co.uk/2010/08/faenza-icon-set-gets-ppa.html</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/guide/customize-guide/'>Customize</a>, <a href='http://discoverylinux.wordpress.com/category/gnome/'>gnome</a>, <a href='http://discoverylinux.wordpress.com/category/guide/'>guide</a>, <a href='http://discoverylinux.wordpress.com/category/segnalazioni/'>segnalazioni</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/archive/'>archive</a>, <a href='http://discoverylinux.wordpress.com/tag/cartelle/'>cartelle</a>, <a href='http://discoverylinux.wordpress.com/tag/eye-candy/'>eye candy</a>, <a href='http://discoverylinux.wordpress.com/tag/faenza/'>faenza</a>, <a href='http://discoverylinux.wordpress.com/tag/free/'>free</a>, <a href='http://discoverylinux.wordpress.com/tag/gnome/'>gnome</a>, <a href='http://discoverylinux.wordpress.com/tag/icon/'>icon</a>, <a href='http://discoverylinux.wordpress.com/tag/icone/'>icone</a>, <a href='http://discoverylinux.wordpress.com/tag/linux/'>linux</a>, <a href='http://discoverylinux.wordpress.com/tag/personalizzazione/'>personalizzazione</a>, <a href='http://discoverylinux.wordpress.com/tag/set/'>set</a>, <a href='http://discoverylinux.wordpress.com/tag/ubuntu/'>ubuntu</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=727&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/08/10/icone-faenza-fabulose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://fc06.deviantart.net/fs71/i/2010/222/b/4/Faenza_Icons_by_tiheum.png" medium="image">
			<media:title type="html">Faenza Icon Theme</media:title>
		</media:content>
	</item>
		<item>
		<title>Relax time con Music Catch!</title>
		<link>http://discoverylinux.wordpress.com/2010/07/22/relax-time-con-music-catch/</link>
		<comments>http://discoverylinux.wordpress.com/2010/07/22/relax-time-con-music-catch/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 13:18:10 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[divertente]]></category>
		<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[giochi]]></category>
		<category><![CDATA[ot]]></category>
		<category><![CDATA[relax]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=721</guid>
		<description><![CDATA[Un flash game che riesce a donarmi relax come pochi altri&#8230; Per la cronaca ho totalizzato 1203067, saprete fare di meglio? Link al gioco: http://armorgames.com/play/1623/music-catch Archiviato in:divertente, Off-Topic Tagged: flash, giochi, ot, relax<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=721&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://discoverylinux.files.wordpress.com/2010/07/schermata.png"><img class="aligncenter size-medium wp-image-722" title="Music Catch Game" src="http://discoverylinux.files.wordpress.com/2010/07/schermata.png?w=300&#038;h=228" alt="" width="300" height="228" /></a></p>
<p>Un <strong>flash game</strong> che riesce a donarmi relax come pochi altri&#8230;</p>
<p>Per la cronaca ho totalizzato 1203067, saprete fare di meglio?</p>
<p><strong>Link al gioco:</strong> <a href="http://armorgames.com/play/1623/music-catch">http://armorgames.com/play/1623/music-catch</a></p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/divertente/'>divertente</a>, <a href='http://discoverylinux.wordpress.com/category/off-topic/'>Off-Topic</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/flash/'>flash</a>, <a href='http://discoverylinux.wordpress.com/tag/giochi/'>giochi</a>, <a href='http://discoverylinux.wordpress.com/tag/ot/'>ot</a>, <a href='http://discoverylinux.wordpress.com/tag/relax/'>relax</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=721&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/07/22/relax-time-con-music-catch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/07/schermata.png?w=300" medium="image">
			<media:title type="html">Music Catch Game</media:title>
		</media:content>
	</item>
		<item>
		<title>Tasto delle preferenze unificato in Chromium Daily</title>
		<link>http://discoverylinux.wordpress.com/2010/07/11/tasto-delle-preferenze-unificato-in-chromium-daily/</link>
		<comments>http://discoverylinux.wordpress.com/2010/07/11/tasto-delle-preferenze-unificato-in-chromium-daily/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 20:36:52 +0000</pubDate>
		<dc:creator>sparazza</dc:creator>
				<category><![CDATA[Chrome/Chromium]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[segnalazioni]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://discoverylinux.wordpress.com/?p=713</guid>
		<description><![CDATA[Piccola flash news. Ecco come appaiono le preferenze di Chromium nella Daily build prima dell&#8217;ultimo aggiornamento da ppa. Subito sotto c&#8217;è il nuovo pulsante unificato, che integra bene tutte le preferenze e le impostazioni senza causare difficoltà e miscomprensioni: Ciò che si può subito notare è come non sia diminuita la comodità. Anzi, prima di [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=713&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Piccola flash news.  Ecco come appaiono le <strong>preferenze di Chromium</strong> nella Daily build prima dell&#8217;ultimo aggiornamento da ppa. Subito sotto c&#8217;è il <strong>nuovo pulsante unificato</strong>, che integra bene tutte le preferenze e le impostazioni senza causare difficoltà e miscomprensioni:</p>
<div id="attachment_716" class="wp-caption aligncenter" style="width: 310px"><a href="http://discoverylinux.files.wordpress.com/2010/07/chromiumprima.png"><img class="size-medium wp-image-716" title="ChromiumPrima" src="http://discoverylinux.files.wordpress.com/2010/07/chromiumprima.png?w=300&#038;h=173" alt="" width="300" height="173" /></a><p class="wp-caption-text">Prima dell&#039;unificazione</p></div>
<div id="attachment_718" class="wp-caption aligncenter" style="width: 265px"><a href="http://discoverylinux.files.wordpress.com/2010/07/chromiumdopo.png"><img class="size-medium wp-image-718" title="ChromiumDopo" src="http://discoverylinux.files.wordpress.com/2010/07/chromiumdopo.png?w=255&#038;h=300" alt="" width="255" height="300" /></a><p class="wp-caption-text">Chromium dopo l&#039;unificazione del pulsante Preferenze</p></div>
<p style="text-align:left;">Ciò che si può subito notare è come non sia diminuita la comodità. Anzi, prima di questa <strong>unificazione</strong> (fino ad oggi dunque), mi sono trovato spesso a dover scorrere entrambe le liste dei due pulsanti prima di trovare quello che cercavo.</p>
<p style="text-align:left;">Inoltre notiamo come la voce<strong> &#8220;Modifica&#8221;</strong> e quella del <strong>&#8220;Carattere&#8221;</strong> mettano a disposizione dei comodi <strong>pulsanti</strong> per gestire più agevolmente le relative funzioni.</p>
<br />Archiviato in:<a href='http://discoverylinux.wordpress.com/category/google/chromechromium/'>Chrome/Chromium</a>, <a href='http://discoverylinux.wordpress.com/category/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/category/news/'>news</a>, <a href='http://discoverylinux.wordpress.com/category/segnalazioni/'>segnalazioni</a> Tagged: <a href='http://discoverylinux.wordpress.com/tag/browser/'>browser</a>, <a href='http://discoverylinux.wordpress.com/tag/chrome/'>chrome</a>, <a href='http://discoverylinux.wordpress.com/tag/chromium/'>chromium</a>, <a href='http://discoverylinux.wordpress.com/tag/firefox/'>firefox</a>, <a href='http://discoverylinux.wordpress.com/tag/google/'>google</a>, <a href='http://discoverylinux.wordpress.com/tag/news/'>news</a>, <a href='http://discoverylinux.wordpress.com/tag/opera/'>opera</a>, <a href='http://discoverylinux.wordpress.com/tag/ppa/'>ppa</a>, <a href='http://discoverylinux.wordpress.com/tag/safari/'>safari</a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=discoverylinux.wordpress.com&#038;blog=7903987&#038;post=713&#038;subd=discoverylinux&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://discoverylinux.wordpress.com/2010/07/11/tasto-delle-preferenze-unificato-in-chromium-daily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/4d4753b7cfe2924e75f5f8953bba1c72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sparazza</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/07/chromiumprima.png?w=300" medium="image">
			<media:title type="html">ChromiumPrima</media:title>
		</media:content>

		<media:content url="http://discoverylinux.files.wordpress.com/2010/07/chromiumdopo.png?w=255" medium="image">
			<media:title type="html">ChromiumDopo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
