<?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>Noize Processing</title>
	<atom:link href="http://axeldamage.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://axeldamage.wordpress.com</link>
	<description>Linux, musica, matematica, programmazione, ...</description>
	<lastBuildDate>Tue, 24 Jan 2012 11:28:30 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='axeldamage.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Noize Processing</title>
		<link>http://axeldamage.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://axeldamage.wordpress.com/osd.xml" title="Noize Processing" />
	<atom:link rel='hub' href='http://axeldamage.wordpress.com/?pushpress=hub'/>
		<item>
		<title>LaTeX e LilyPond: incorpora spartiti nei tuoi documenti LaTeX</title>
		<link>http://axeldamage.wordpress.com/2011/03/16/latex-e-lilypond-incorpora-spartiti-nei-tuoi-documenti-latex/</link>
		<comments>http://axeldamage.wordpress.com/2011/03/16/latex-e-lilypond-incorpora-spartiti-nei-tuoi-documenti-latex/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 15:12:35 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[latex]]></category>
		<category><![CDATA[lilypond]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=312</guid>
		<description><![CDATA[Chiunque abbia usato LaTeX per i propri documenti, conosce bene le potenzialità di questa suite. Template, equazioni, pubblicazioni, etc. etc&#8230; Ma sei io volessi inseriere degli spartiti musicali (o anche solo 2 battute) nel mio documento? Per esempio se voglio scrivere un sunto di teoria musicale è sicuramente molto comodo poter scrivere al volo la [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=312&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Chiunque abbia usato <strong>LaTeX</strong> per i propri documenti, conosce bene le potenzialità di questa suite. Template, equazioni, pubblicazioni, etc. etc&#8230;</p>
<p>Ma sei io volessi inseriere degli spartiti musicali (o anche solo 2 battute) nel mio documento? Per esempio se voglio scrivere un sunto di teoria musicale è sicuramente molto comodo poter scrivere al volo la scala di Do maggiore sul rigo, senza dovermela scrivere con altri programmi ed esportare immagini, che in seguito devo incorporare nel mio documento!</p>
<p>Bene, il pacchetto <strong>LilyPond</strong> (<a href="http://lilypond.org/">sito ufficiale</a>) serve proprio a questo. In realtà questo software è nato principalmente solo come editor di score completo e professionale, ma ora possiamo usarlo come environment per i nostri documenti LaTeX.</p>
<p>La procedura prevede 2 passi di compilazione. Il primo passo avviene tramite il comando <em><strong>lilypond-book documeto.tex</strong></em>, e successivamente avviene la vera e propria compilazione tramite latex. Questo procedimento potrebbe risultare noioso, così ho deciso di crearmi un <strong>makefile</strong>. Lanciano un semplice <strong>make</strong> mi ritrovo con il mio dvi o pdf bello e pronto.</p>
<p>Questo makefile ha 3 opzioni: lanciando solo il <strong>make</strong>, compiliamo soltanto il dvi. Lanciando <strong>make pdf</strong>, otteniamo un pdf (ma va?? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). Come ultima opzione abbiamo il solito <strong>make clean</strong>, che ripulisce la cartella dai file e cartelle temporanei usati per la compilazione.</p>
<p>Vediamo come è fatto il makefile</p>
<blockquote><p># Makefile for LilyPond LaTeX<br />
# Alessio Degani &lt;alessio.degani@gmail.com&gt;<br />
LATEX	= latexLP	= lilypond-bookDVIPDF	= dvipdf</p>
<p>SRC	:= $(shell egrep -l &#8216;^[^%]*\\begin\{document\}&#8217; *.tex)<br />
DVI	= $(SRC:%.tex=%.dvi)<br />
PDF	= $(SRC:%.tex=%.pdf)<br />
LPDIR	= $(SRC:%.tex=%.lp)</p>
<p>all 	: dvi<br />
clean	:<br />
-rm -rf *.log *.aux *.dvi *.bbl *.blg *.ilg *.toc *.lof *.lot *.idx *.ind *.ps *.pdf *~ $(LPDIR)<br />
pdf:<br />
if test -d $(LPDIR); then rm -rf $(LPDIR); fi<br />
$(LP) &#8211;output $(LPDIR) $(SRC)<br />
cd $(LPDIR); $(LATEX) $(SRC); $(DVIPDF) $(DVI)<br />
cp $(LPDIR)/$(PDF) ./<br />
dvi:<br />
if test -d $(LPDIR); then rm -rf $(LPDIR); fi<br />
$(LP) &#8211;output $(LPDIR) $(SRC)<br />
cd $(LPDIR); $(LATEX) $(SRC)<br />
cp $(LPDIR)/$(DVI) ./</p></blockquote>
<p>Ora vediamo un file LaTeX di esempio pronto per essere compilato (preso dagli esempi di LilyPond)</p>
<blockquote><p>\documentclass[a4paper]{article}<br />
\begin{document}<br />
Documents may freely mix music and text.<br />
For example,<br />
\begin{lilypond}<br />
\relative c&#8217; {<br />
c2 g&#8217;2 \times 2/3 { f8 e d } c&#8217;2 g4<br />
}<br />
\end{lilypond}<br />
Options are put in brackets.<br />
\begin[fragment,staffsize=26]{lilypond}<br />
c&#8217;4 f16<br />
\end{lilypond}<br />
\end{document}</p></blockquote>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/latex/'>latex</a>, <a href='http://axeldamage.wordpress.com/category/lilypond/'>lilypond</a>, <a href='http://axeldamage.wordpress.com/category/software/'>Software</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/312/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=312&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2011/03/16/latex-e-lilypond-incorpora-spartiti-nei-tuoi-documenti-latex/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>
	</item>
		<item>
		<title>MarkovEX è tra noi! Generative Music Compositions</title>
		<link>http://axeldamage.wordpress.com/2011/02/06/markovex-e-tra-noi-generative-music-compositions/</link>
		<comments>http://axeldamage.wordpress.com/2011/02/06/markovex-e-tra-noi-generative-music-compositions/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 16:48:29 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Generative Music]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Markov]]></category>
		<category><![CDATA[MarkovEX]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[Miei Progetti]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Synth]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=309</guid>
		<description><![CDATA[Oggi è finalmente giunto ad una release funzionante, il progetto MarkovEX. MarkovEX è un programma per la creazione di musica generativa con una struttura ben definita. La componente random del sistema permette di generare musica sempre nuova (e potenzialmente di durata infinita), ma il susseguirsi delle note presenta una struttura di fondo data da una catena di [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=309&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><a href="http://noizedev.altervista.org/blog/wp-content/uploads/2011/02/logo.png"><img class="aligncenter" title="logo" src="http://noizedev.altervista.org/blog/wp-content/uploads/2011/02/logo.png" alt="MarkovEX logo" width="322" height="186" /></a></p>
<p>Oggi è finalmente giunto ad una release funzionante, il progetto MarkovEX.</p>
<p>MarkovEX è un programma per la creazione di musica generativa con una struttura ben definita. La componente random del sistema permette di generare musica sempre nuova (e potenzialmente di durata infinita), ma il susseguirsi delle note presenta una struttura di fondo data da una <a href="http://en.wikipedia.org/wiki/Markov_chain">catena di Marko</a>v del secondo ordine.</p>
<p>MarkovEX è in grado di analizzare file midi trattandoli come realizzazioni di un <a href="http://it.wikipedia.org/wiki/Processo_stocastico">processo stocastico</a> associato ad una particolare catena di Markov. L&#8217;obiettivo di questa analisi è cercare di ricavare la catena di Markov del secondo ordine associata alla traccia musicale. Una volta fatto questo, salva i risultati su file in modo da poterli aprire (sempre con MarkovEX) e farli suonare sul sequencer ALSA, creando di volta in volta nuove melodie che però hanno sempre un po lo stesso sapore.</p>
<p>Il modello usato è del secondo ordine in quanto il primo ordine non è sufficientemente &#8220;strutturato&#8221; per poter generare musica &#8220;simile&#8221; al file midi originale. Passando all&#8217;ordine successivo invece, si rende la sequenza di note maggiormente correlata.</p>
<p>Provare per credere <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Per ora lo potete trovare su GitHub a questo indirizzo</p>
<blockquote><p>git://github.com/axeldamage/Markovex.git</p></blockquote>
<p>Saluti <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
<p>&nbsp;</p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/generative-music/'>Generative Music</a>, <a href='http://axeldamage.wordpress.com/category/linux/'>Linux</a>, <a href='http://axeldamage.wordpress.com/category/markov/'>Markov</a>, <a href='http://axeldamage.wordpress.com/category/markovex/'>MarkovEX</a>, <a href='http://axeldamage.wordpress.com/category/midi/'>midi</a>, <a href='http://axeldamage.wordpress.com/category/miei-progetti/'>Miei Progetti</a>, <a href='http://axeldamage.wordpress.com/category/software/'>Software</a>, <a href='http://axeldamage.wordpress.com/category/synth/'>Synth</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/309/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=309&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2011/02/06/markovex-e-tra-noi-generative-music-compositions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://noizedev.altervista.org/blog/wp-content/uploads/2011/02/logo.png" medium="image">
			<media:title type="html">logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Voronoi Art Project</title>
		<link>http://axeldamage.wordpress.com/2011/02/05/voronoi-art-project/</link>
		<comments>http://axeldamage.wordpress.com/2011/02/05/voronoi-art-project/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 03:43:21 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Grafica]]></category>
		<category><![CDATA[ingegneri]]></category>
		<category><![CDATA[Miei Progetti]]></category>
		<category><![CDATA[Voronoi]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=301</guid>
		<description><![CDATA[Con le moderne tecnologie, anche l&#8217;arte è sempre più contaminata dalla scienza in generale o in particolare dalla computer sience. Un esempio è la composizione algoritmica di musica, come la musica generativa che fra varie tecniche fa ampio uso di teorie come, per dirne una, le catene di Markov. Per quanto riguarda la computer grafica [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=301&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Con le moderne tecnologie, anche l&#8217;arte è sempre più contaminata dalla scienza in generale o in particolare dalla computer sience.</p>
<p>Un esempio è la composizione algoritmica di musica, come la musica generativa che fra varie tecniche fa ampio uso di teorie come, per dirne una, le <a href="http://en.wikipedia.org/wiki/Markov_chain">catene di Markov</a>.</p>
<p>Per quanto riguarda la computer grafica invece, di recente sono stato attirato dall&#8217;utilizzo dei cosidetti <a href="http://en.wikipedia.org/wiki/Voronoi_diagram">Voronoi diagram</a>. Questo diagramma non fa altro che delimitarmi delle aree attorno a questi punti secondo un criterio di nearest neighbors, ovvero mi traccia dei confini che mi definiscono il perimetro a minima distanza dal punto in esame il quale è detto centroide. In parole povere, se punto il dito a caso, basta vedere in quale area sono finito, e il punto a minima distanza dal mio dito è proprio il centroide di quell&#8217;area.</p>
<p>In rete sono presenti alcuni esempi di intrepidi sperimentatori. L&#8217;unica cosa che non mi piace, è che alla fine per ottenere dei risultati decenti è sempre necessaria <strong>la mano e il gusto dell&#8217;uomo</strong>. Nel caso dei Voronoi diagram, questo significa definire &#8220;a mano&#8221; la popolazione di punti che poi andrà a formare il diagramma.</p>
<p>A questo punto mi sono chiesto se fosse possibile automatizzare la cosa. La chiave di volta sta appunto nel trovare un sistema algoritmico per ricavare questa nuvola di punti che in un certo qual modo <em>ricordi</em> l&#8217;immagine originale. Per dirla in parole povere, questa nuvola dovrebbe essere più <em>densa</em> nelle parti scure dell&#8217;immagine, e più <em>sparsa</em> nelle parti chiare.</p>
<p>Pensa e ripensa (mille metodi possibili, tra cui la segmentazione dell&#8217;immagine in base a proprietà di istogramma o criteri di gradiente minimo&#8230; troppo <strong>pesanti</strong>) e la soluzione è arrivata, <strong>semplice e veloce</strong>. Così apro <strong>Matlab</strong>, compagno fidato di mille avventure <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Non vi voglio svelare tutti i trucchi, ma voglio darvi un&#8217;idea di quello che ho realizzato.</p>
<p>Dopo aver convertito in scala di grigi l&#8217;immagine prescelta da <em>&#8220;Voronoizzare&#8221;</em>, ho creato un&#8217;altra immagine vuota alla quale ho aggiunto del rumore di tipo <a href="http://en.wikipedia.org/wiki/Salt_and_pepper_noise">salt&amp;pepper</a>. Questo tipo di rumore approssima abbastanza bene il problema dei pixel bianchi/neri dei vari sensori CCD (nda. per ridurlo funziona molto bene il filtro mediano). Questo salt&amp;pepper viene poi discriminato pixel-by-pixel con una probabilità proporzionale alla<strong> luminanza</strong> (B/W) del singolo pixel. In questo modo nelle parti scure ho maggiore probabilità che il salt&amp;pepper &#8220;sopravviva&#8221;.</p>
<p>Non voglio aggiungere altro, quindi vi lascio con un&#8217;anteprima visuale! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="attachment_303" class="wp-caption aligncenter" style="width: 310px"><a href="http://axeldamage.files.wordpress.com/2011/02/hend2_scale.png"><img class="size-medium wp-image-303" title="hend2_scale" src="http://axeldamage.files.wordpress.com/2011/02/hend2_scale.png?w=300&#038;h=168" alt="voronoi image" width="300" height="168" /></a><p class="wp-caption-text">chi indovina il personaggio vince un lolcat <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (click per ingrandire)</p></div>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/art/'>Art</a>, <a href='http://axeldamage.wordpress.com/category/grafica/'>Grafica</a>, <a href='http://axeldamage.wordpress.com/category/ingegneri/'>ingegneri</a>, <a href='http://axeldamage.wordpress.com/category/miei-progetti/'>Miei Progetti</a>, <a href='http://axeldamage.wordpress.com/category/voronoi/'>Voronoi</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=301&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2011/02/05/voronoi-art-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2011/02/hend2_scale.png?w=300" medium="image">
			<media:title type="html">hend2_scale</media:title>
		</media:content>
	</item>
		<item>
		<title>Wish list: Akai MPK mini</title>
		<link>http://axeldamage.wordpress.com/2010/12/21/wish-list-akai-mpk-mini/</link>
		<comments>http://axeldamage.wordpress.com/2010/12/21/wish-list-akai-mpk-mini/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 11:02:56 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Akai]]></category>
		<category><![CDATA[arpeggiator]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Daw]]></category>
		<category><![CDATA[drum machine]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wishlist]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=293</guid>
		<description><![CDATA[Post di inaugurazione della nuova categoria Wish List. Ovvero, se volete farmi un regalo guardate qui!! L&#8217;Akai MPK mini è un controller MIDI USB pensato per essere versatile e portabile. Dimensioni ridotte e ricchezza di controlli (8 velocity-sensitive pads, 8 control change, 25 tasti, program change, arpeggiatore) Natale si avvicina&#8230; Filed under: Akai, arpeggiator, Audio, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=293&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Post di inaugurazione della nuova categoria <strong>Wish List</strong>. Ovvero, se volete farmi un regalo guardate <a href="http://axeldamage.wordpress.com/category/wishlist/">qui</a>!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>L&#8217;<a href="http://www.akaipro.com/mpkmini">Akai MPK mini</a> è un controller <strong>MIDI USB</strong> pensato per essere versatile e portabile. Dimensioni ridotte e ricchezza di controlli (<strong>8 velocity-sensitive pads, 8 control change, 25 tasti, program change, arpeggiatore</strong>)</p>
<div id="attachment_296" class="wp-caption aligncenter" style="width: 310px"><a href="http://axeldamage.files.wordpress.com/2010/12/mpkmini_angle_med.png"><img class="size-medium wp-image-296" title="mpkmini_angle_med" src="http://axeldamage.files.wordpress.com/2010/12/mpkmini_angle_med.png?w=300&#038;h=187" alt="mpkmini_angle_med" width="300" height="187" /></a><p class="wp-caption-text">Il controller...</p></div>
<p>Natale si avvicina&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/akai/'>Akai</a>, <a href='http://axeldamage.wordpress.com/category/arpeggiator/'>arpeggiator</a>, <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/daw/'>Daw</a>, <a href='http://axeldamage.wordpress.com/category/drum-machine/'>drum machine</a>, <a href='http://axeldamage.wordpress.com/category/hardware/'>Hardware</a>, <a href='http://axeldamage.wordpress.com/category/midi/'>midi</a>, <a href='http://axeldamage.wordpress.com/category/sequencer/'>sequencer</a>, <a href='http://axeldamage.wordpress.com/category/uncategorized/'>Uncategorized</a>, <a href='http://axeldamage.wordpress.com/category/wishlist/'>wishlist</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=293&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/12/21/wish-list-akai-mpk-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2010/12/mpkmini_angle_med.png?w=300" medium="image">
			<media:title type="html">mpkmini_angle_med</media:title>
		</media:content>
	</item>
		<item>
		<title>Nuovo SoundFont: Il Sitar del Diavolo a.k.a. Ditar :)</title>
		<link>http://axeldamage.wordpress.com/2010/12/11/nuovo-soundfont-il-sitar-del-diavolo-a-k-a-ditar/</link>
		<comments>http://axeldamage.wordpress.com/2010/12/11/nuovo-soundfont-il-sitar-del-diavolo-a-k-a-ditar/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 01:26:07 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[soundfont]]></category>
		<category><![CDATA[Synth]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=287</guid>
		<description><![CDATA[Con immenso piacere vi presento un nuovo soundfont creato e registrato da me medesimo. L&#8217;esigenza di creare un soundfont è data dal fatto che questo strumento, unico al mondo (LOL), creato da un liutaio bresciano dall&#8217;indentità segreta, risulta un po&#8217; ostico da suonare&#8230; e da accordare! Cosa meglio di un soundfont per questo scopo? Per [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=287&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Con immenso piacere vi presento un nuovo soundfont creato e registrato da me medesimo. L&#8217;esigenza di creare un soundfont è data dal fatto che questo strumento, unico al mondo (LOL), creato da un liutaio bresciano dall&#8217;indentità segreta, risulta un po&#8217; ostico da suonare&#8230; e da accordare! Cosa meglio di un soundfont per questo scopo?</p>
<div id="attachment_289" class="wp-caption aligncenter" style="width: 310px"><a href="http://axeldamage.files.wordpress.com/2010/12/ditar.jpg"><img class="size-medium wp-image-289" title="ditar" src="http://axeldamage.files.wordpress.com/2010/12/ditar.jpg?w=300&#038;h=225" alt="ditar" width="300" height="225" /></a><p class="wp-caption-text">ed ecco a voi... il Ditar <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div>
<p>Per il download del SF2, per la demo audio e per ulteriori informazioni, vi rimando all&#8217;<a href="http://noizedev.altervista.org/blog/nuovo-soundfont-il-sitar-del-diavolo-a-k-a-ditar/">articolo originale</a> publicato sul mio blog <em>sperimentale</em>.</p>
<p>Lasciate ogni speranza voi che suonate questo soundfont! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><span style="color:#ff0000;"><strong>DISCLAIMER</strong></span>: Attenzione! Potrebbe manifestarsi <strong>Satana</strong>! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/soundfont/'>soundfont</a>, <a href='http://axeldamage.wordpress.com/category/synth/'>Synth</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=287&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/12/11/nuovo-soundfont-il-sitar-del-diavolo-a-k-a-ditar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2010/12/ditar.jpg?w=300" medium="image">
			<media:title type="html">ditar</media:title>
		</media:content>
	</item>
		<item>
		<title>M-Audio Pro Tools Vocal Studio on Linux</title>
		<link>http://axeldamage.wordpress.com/2010/10/05/m-audio-pro-tools-vocal-studio-on-linux/</link>
		<comments>http://axeldamage.wordpress.com/2010/10/05/m-audio-pro-tools-vocal-studio-on-linux/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 12:25:19 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Daw]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Jack]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Schede audio]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=281</guid>
		<description><![CDATA[Di recente ho acquistato questo microfono USB a condensatore (NON electrect!!). Le mie esigenze non riguardano il podcasting o la registrazione professionale (quella si fa in studio con i microfoni GNUMAN ). Il mio uso è prettamente legato ai miei esercizi di canto (esigenze di riascolto) e per registrare eventuali idee dimostrative (per poi essere [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=281&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Di recente ho acquistato <a href="http://www.m-audio.com/products/en_us/ProToolsVocalStudio.html">questo</a> microfono <span style="text-decoration:underline;">USB</span> a condensatore (<strong>NON</strong> electrect!!). Le mie esigenze non riguardano il podcasting o la registrazione professionale (quella si fa in studio con i microfoni GNUMAN <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<div id="attachment_282" class="wp-caption aligncenter" style="width: 310px"><a href="http://axeldamage.files.wordpress.com/2010/10/maudio.jpg"><img class="size-medium wp-image-282" title="Pro Tools Vocal Studio" src="http://axeldamage.files.wordpress.com/2010/10/maudio.jpg?w=300&#038;h=266" alt="ProTools Vocal Studio" width="300" height="266" /></a><p class="wp-caption-text">Pro Tools Vocal Studio</p></div>
<p>Il mio uso è prettamente legato ai miei esercizi di canto (esigenze di riascolto) e per registrare eventuali idee dimostrative (per poi essere ri-registrate in studio). Inoltre l&#8217;ho trovato utile per fare delle prove di interpretazione di vari pezzi in modo che posso riascoltarmeli e decidere su cosa lavorare.</p>
<p>La spesa è piuttosto contenuta. Per un centinaio di euro mi è arrivato un bel pacchetto contenente il microfono (bello solido e pesante, da l&#8217;impressione di essere un prodotto fatto con un certo criterio), la versione Essentials di Pro Tools e un comodo stand da tavolo. Successivamente ho provveduto all&#8217;acquisto di uno shockmount (il &#8220;ragnetto&#8221; anti-shock).</p>
<p>Interessante feature di questo mic, è la possibilità di avere il direct monitoring (per il riascolto zero-latency) ma in Linux, questo mi è ancora impossibile <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  in quanto necessita della sua interfaccia di settings che esiste solo per Win*. A parte questo problemino, il microfono funziona out-of-the-box. Lo attacco al PC e lui va. Diamo un attimo un occhio alle impostazioni di Jack.</p>
<div id="attachment_283" class="wp-caption aligncenter" style="width: 610px"><a href="http://axeldamage.files.wordpress.com/2010/10/screenshot1.png"><img class="size-full wp-image-283" title="Jack settings" src="http://axeldamage.files.wordpress.com/2010/10/screenshot1.png?w=519" alt="Jack settings"   /></a><p class="wp-caption-text">Jack settings</p></div>
<p><strong>NOTA:</strong> Per far si che jack si avvii correttamente, <strong>dobbiamo</strong> per forza settare il n<strong>umero di canali d&#8217;ingresso</strong> pari a <strong>UNO</strong>! Chissà perché, da solo non ce la fa a capirlo e all&#8217;avvio di jack vi trovate un bell&#8217;errore generico <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Il campo <strong>Frame/Period</strong> può essere ridotto per aver meno latenza, io l&#8217;ho testato fino a 128 ed è sufficiente. Altro paramentro importante è <strong>Periods/Buffer</strong>, che per le periferiche USB è consigliabile impostare a 3!</p>
<p>Ora una breve valutazione dal punto di vista tecnico.</p>
<p>Il microfono ha una buona risposta e sensibilità. Uno spettro che garantisce una bella ripresa anche sulla gamma delle alte frequenze grazie alla capsula a condensatore. Le basse sono definite grazie al diaframma (quasi)largo (<strong>cardioide da 16mm</strong>), infatti risente dell&#8217;effetto prossimità!</p>
<p>La qualità nel complesso è molto buona per 100 euro, ma se vogliamo trovargli un difetto, devo segnalare il noise floor un po&#8217; altino! Ok&#8230; non è a livelli insopportabili&#8230; anzi&#8230; più o meno come tutti i mic USB in circolazione fino ad oggi!</p>
<p>Fatemi sapere le vostre opinioni! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ciao!</p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/daw/'>Daw</a>, <a href='http://axeldamage.wordpress.com/category/hardware/'>Hardware</a>, <a href='http://axeldamage.wordpress.com/category/jack/'>Jack</a>, <a href='http://axeldamage.wordpress.com/category/linux/'>Linux</a>, <a href='http://axeldamage.wordpress.com/category/schede-audio/'>Schede audio</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=281&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/10/05/m-audio-pro-tools-vocal-studio-on-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2010/10/maudio.jpg?w=300" medium="image">
			<media:title type="html">Pro Tools Vocal Studio</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2010/10/screenshot1.png" medium="image">
			<media:title type="html">Jack settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Binaural Beats in Octave (a.k.a. i-Doser fai da te)</title>
		<link>http://axeldamage.wordpress.com/2010/09/16/binaural-beats-in-octave-a-k-a-i-doser-fai-da-te/</link>
		<comments>http://axeldamage.wordpress.com/2010/09/16/binaural-beats-in-octave-a-k-a-i-doser-fai-da-te/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 19:02:09 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[binaural]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Synth]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=277</guid>
		<description><![CDATA[Se siete qui avrete quasi sicuramente sentito parlare del famoso i-Doser, un software che permette di ascoltare delle particolari tracce audio tramite le quali il nostro cervello percepisce i cosidetti battimenti binaurali. Un prolungato ascolto di questo particolare audio permette di &#8220;sintonizzare&#8221; il nostro cervello  su certe particolari onde cerebrali tipiche di stati quali attenzione, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=277&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Se siete qui avrete quasi sicuramente sentito parlare del famoso <a href="http://www.i-doser.com/">i-Doser</a>, un software che permette di ascoltare delle particolari tracce audio tramite le quali il nostro cervello percepisce i cosidetti <em>battimenti binaurali</em>.</p>
<p>Un prolungato ascolto di questo particolare audio permette di &#8220;sintonizzare&#8221; il nostro cervello  su certe particolari onde cerebrali tipiche di stati quali attenzione, tensione o sonno profondo. In pratica <em>dovrebbero</em> indurre artificialmente questi particolari stati di coscienza.</p>
<p>Non mi dilungo oltre a spiegare le particolarità di queste onde cerebrali, ma se volete un approfondimento andate <a href="http://it.wikipedia.org/wiki/Onde_cerebrali">qui</a> (Wikipedia) o <a href="http://www.marcostefanelli.com/subliminale/brain.htm">qui</a> (come stimolare il cervello con i <em>Binaural Beats</em>).</p>
<p>Prima di arrivare a come generare questi suoni, vediamo rapidamente cosa sono.</p>
<p>Le onde cerebrali (<a href="http://it.wikipedia.org/wiki/Elettroencefalografia">elettroencefalogramma</a>), nello spettro delle onde radio si collocano nella banda<strong> ELF</strong> (Extremely low frequency) in quanto vanno da un minimo di 0.1 Hz a un massimo di circa 42 Hz.</p>
<p>I più attenti avranno già capito l&#8217;inghippo: come faccio a riprodurre con un comune impianto stereo queste frequenze?</p>
<p><strong>Risposta</strong>: non si può <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>MA si può usare un trucchetto, ovvero i <em>battimenti binaurali</em>. Se al nostro cervello applichiamo due differenti stimoli monofrequenziali (uno per orecchio), per piccole differenze di frequenza (intonazione) tra i due, noi percepiamo questi due toni e in più un terzo che è pari alla differenza in Hz tra i due. Detto questo appare piuttosto semplice il metodo per <em>ingannare</em> il nostro cervello a percepire frequenze come 10 Hz e roba del genere.</p>
<p>Lo script per <strong>Octave</strong> che segue (oltre ovviamente a essere compatibile con <strong>Matlab</strong>&#8230; basta togliere la prima riga) non fa altro che generare un file audio stereofonico, in cui nel canale Left è presente un tono puro ad una frequenza fissa e nel canale Right, un tono che parte da una frequenza superiore e si avvicina piano piano fino alla stessa frequenza del canale L.</p>
<p>Perché non è un tono fisso?</p>
<p><strong>Risposta</strong>:  questo esempio è finalizzato a portare il cervello nello stato di sonno profondo (onde <strong>Delta ~ 0.1 Hz</strong>), per cui dovrebbe funzionare per coloro che fanno fatica a prendere sonno <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . La lenta discesa è necessaria perché il cervello va <em>accompagnato</em> piano piano (così dicono gli esperti <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) fino allo stato desiderato.</p>
<p>Ora vediamo lo script (dovrebbe già essere ben commentato quindi non mi dilungo a descriverlo):</p>
<blockquote>
<div id="_mcePaste">#!/usr/bin/octave</div>
<div id="_mcePaste">#Parametri</div>
<div id="_mcePaste">l=10;               #Lunghezza in minuti (MAX:10)</div>
<div id="_mcePaste">f0=432;             #Frequenza di partenza</div>
<div id="_mcePaste">D=20;               #Differenza di frequenza iniziale (freq dei battimenti)</div>
<div id="_mcePaste">fs=44100;           #sample rate</div>
<div id="_mcePaste">#Calcolo numero sample totali e base dei tempi</div>
<div id="_mcePaste">sample=60*l*fs;     #Numero totale di sample</div>
<div id="_mcePaste">t=[0:1:sample-1];   #Asse dei tempi</div>
<div id="_mcePaste">#Generazione dei 2 canali audio</div>
<div id="_mcePaste">out=zeros(sample,2);</div>
<div id="_mcePaste">freq=(f0+D-((D/2*t)/sample));</div>
<div id="_mcePaste">#Sinusoidi&#8230;</div>
<div id="_mcePaste">L=sin(2*pi*t*f0/fs)*0.9;	#Frequenza fissa</div>
<div id="_mcePaste">R=sin(2*pi*t.*freq/fs)*0.9;	#Frequenza discendente</div>
<div id="_mcePaste">#salvo il file</div>
<div id="_mcePaste">out(:,1)=L;</div>
<div id="_mcePaste">out(:,2)=R;</div>
<div id="_mcePaste">wavwrite(out,fs,&#8217;out.wav&#8217;);</div>
</blockquote>
<p>Basta salvarlo con il nome che ci piace, per esempio binaural.sh e digitare il seguente comando per renderlo eseguibile:</p>
<blockquote><p>chmod +x binaural.sh</p></blockquote>
<p>Ora non ci resta che testarlo con il comando</p>
<blockquote><p>./binaural.sh</p></blockquote>
<p>Se tutto ha funzionato a dovere, dovrebbe essere comparso un file chiamato <strong>out.wav</strong>. Ora non dovete far altro che mettervi un paio di cuffie e cominciare a a indurvi lo stato cerebrale desiderato! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>PS</strong>: Un limite riscontrato con octave, è che non è possibile creare file audio più lunghi di una decina di minuti per un semplice fatto di <strong>Out of Memory </strong> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ma con Matlab a 64 bit dovreste poter riuscire a creare file più lunghi!</p>
<p>Buona dormita! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/binaural/'>binaural</a>, <a href='http://axeldamage.wordpress.com/category/linux/'>Linux</a>, <a href='http://axeldamage.wordpress.com/category/software/'>Software</a>, <a href='http://axeldamage.wordpress.com/category/synth/'>Synth</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/277/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=277&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/09/16/binaural-beats-in-octave-a-k-a-i-doser-fai-da-te/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>
	</item>
		<item>
		<title>Guitar Pro 6 ora compatibile con Linux! :)</title>
		<link>http://axeldamage.wordpress.com/2010/06/15/guitar-pro-6-ora-compatibile-con-linux/</link>
		<comments>http://axeldamage.wordpress.com/2010/06/15/guitar-pro-6-ora-compatibile-con-linux/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 11:18:09 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[chitarra]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[sequencer]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=269</guid>
		<description><![CDATA[La nuova versione del famoso editor Guitar Pro è compatibile anche col nostro sistema operativo preferito Inoltre presenta alcune novità succose per quanto riguarda i suoni di chitarra&#8230; fate un giro sul sito ufficiale per scoprirne tutte le novità! Qualcuno l&#8217;ha già provato? Filed under: Audio, chitarra, Guitar, Linux, midi, sequencer<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=269&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>La nuova versione del famoso editor <a href="http://www.guitar-pro.com">Guitar Pro</a> è compatibile anche col nostro sistema operativo preferito <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Inoltre presenta alcune novità succose per quanto riguarda i suoni di chitarra&#8230; fate un giro sul <a href="http://www.guitar-pro.com">sito ufficiale</a> per scoprirne tutte le novità!</p>
<div id="attachment_270" class="wp-caption aligncenter" style="width: 470px"><a href="http://axeldamage.files.wordpress.com/2010/06/01_interface.png"><img class="size-full wp-image-270" title="01_interface" src="http://axeldamage.files.wordpress.com/2010/06/01_interface.png?w=519" alt="Guitar Pro 6"   /></a><p class="wp-caption-text">GP6 !</p></div>
<p>Qualcuno l&#8217;ha già provato?</p>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/audio/'>Audio</a>, <a href='http://axeldamage.wordpress.com/category/chitarra/'>chitarra</a>, <a href='http://axeldamage.wordpress.com/category/guitar/'>Guitar</a>, <a href='http://axeldamage.wordpress.com/category/linux/'>Linux</a>, <a href='http://axeldamage.wordpress.com/category/midi/'>midi</a>, <a href='http://axeldamage.wordpress.com/category/sequencer/'>sequencer</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/269/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=269&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/06/15/guitar-pro-6-ora-compatibile-con-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2010/06/01_interface.png" medium="image">
			<media:title type="html">01_interface</media:title>
		</media:content>
	</item>
		<item>
		<title>Sony VAIO e Ubuntu Lucid</title>
		<link>http://axeldamage.wordpress.com/2010/05/16/sony-vaio-e-ubuntu-lucid/</link>
		<comments>http://axeldamage.wordpress.com/2010/05/16/sony-vaio-e-ubuntu-lucid/#comments</comments>
		<pubDate>Sun, 16 May 2010 19:48:45 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vaio]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=266</guid>
		<description><![CDATA[L&#8217;ultimo arrivato nel mio parco macchine è un notebook Vaio VPCEB1Z1E. Non mi dilungo in caratteristiche tecniche. Chi è interessato può seguire il link qui sopra. L&#8217;installazione di Ubuntu Lucid Lynx 10.04 è filata liscia, anche se non tutto è andato come speravo. La scheda video (una ATI serie HD5600) funziona al primo colpo con [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=266&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>L&#8217;ultimo arrivato nel mio parco macchine è un notebook Vaio <a href="http://www.sony.it/product/vn-e-series/vpceb1z1e-b">VPCEB1Z1E</a>.</p>
<p>Non mi dilungo in caratteristiche tecniche. Chi è interessato può seguire il link qui sopra.</p>
<p>L&#8217;installazione di Ubuntu Lucid Lynx 10.04 è filata liscia, anche se non tutto è andato come speravo.</p>
<p>La scheda video (una <strong>ATI</strong> serie<strong> HD5600</strong>) funziona al primo colpo con i driver <strong>fglrx</strong> andando contro tutti i pronostici <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ora vediamo quali sono i punti critici e relativa soluzione.</p>
<p><strong>1. Touchpad</strong></p>
<p>Funziona correttamente, MA lo scroll verticale a lato del touch non funziona. La soluzione è semplice e indolore</p>
<p><em>Soluzione on-the-fly:</em></p>
<blockquote>
<div id="_mcePaste">sudo modprobe -r psmouse</div>
<div id="_mcePaste">sudo modprobe psmouse proto=imps</div>
</blockquote>
<p>Per rendere le modifiche definitive, serve però un accorgimento. Dobbiamo creare il file /etc/modprobe.d/psmouse.conf</p>
<blockquote><p>sudo vim /etc/modprobe.d/psmouse.conf</p></blockquote>
<p>e aggiungiamo la riga</p>
<blockquote><p>options psmouse proto=imps</p></blockquote>
<p>E questo è risolto.</p>
<p><strong>2. Audio</strong></p>
<p>Nessun errore, ma nessun suono. A quanto pare è un bug del kernel di Lucyd, che in quello nuovo dovrebbe essere risolto. Se non vogliamo aspettare qualche settimana per l&#8217;aggiornamento, esiste una soluzione che però è solo temporanea (al riavvio bisogna rifare la procedura).</p>
<p>Occore scaricare il programma <a href="http://www.alsa-project.org/main/index.php/HDA_Analyzer">HDAAnalzser</a> e eseguirlo (occorre aver installato l&#8217;interprete python):</p>
<blockquote><p>wget -O run.py http://www.alsa-project.org/hda-analyzer.py<br />
sudo python run.py</p></blockquote>
<p>Selezione il <em>Node 19</em> nella lista di sinistra e cambiare il valore di <em>VREF</em> da <strong>80</strong> a <strong>HIZ</strong>.</p>
<p>Come detto però&#8230; al prossimo riavvio, va rieffettuata questa procedura. Un&#8217;altra soluzione proposta in rete è quella di installare un backport dei moduli ALSA, ma questo per me non ha funzionato.</p>
<p><strong>3. Luminosità dello schermo</strong></p>
<p>Pare che ci sia un&#8217;utility (<strong>spicctrl</strong>) che si basa sul modulo <strong>sonypi</strong>, che <em>dovrebbe</em> essere in grado di settare la luminosità del display. Dico &#8220;dovrebbe&#8221;, perché effettivamente a me non funziona. Da errore al momento di caricare il modulo <strong>sonypi</strong>.</p>
<p>Non mi sono dato per vinto, quindi ho deciso di usare un metodo <em>old school</em>. Ovvero settarla a mano tramite <strong>/proc</strong>.</p>
<blockquote><p>echo <span style="text-decoration:underline;">VALORE</span> &gt; /proc/acpi/video/VGA/LCD/brightness</p></blockquote>
<p>Dove <span style="text-decoration:underline;">VALORE</span> è un livello tra questi: <strong>5, 8, 11, 16, 23, 34, 48, 70, 100</strong></p>
<div>Ora sto scrivendo uno script python che mi fa queste operazioni in automatico quando premo i tasti per regolare la luminosità.</div>
<div>Questo è quanto. Se ci saranno aggiornamenti degni di nota, provvederò a postarli!</div>
<div>Ciao a tutti <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </div>
<br />Filed under: <a href='http://axeldamage.wordpress.com/category/hardware/'>Hardware</a>, <a href='http://axeldamage.wordpress.com/category/linux/'>Linux</a>, <a href='http://axeldamage.wordpress.com/category/lucid-lynx/'>Lucid Lynx</a>, <a href='http://axeldamage.wordpress.com/category/ubuntu/'>Ubuntu</a>, <a href='http://axeldamage.wordpress.com/category/vaio/'>Vaio</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=266&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2010/05/16/sony-vaio-e-ubuntu-lucid/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>
	</item>
		<item>
		<title>Senso dell&#8217;orientamento :)</title>
		<link>http://axeldamage.wordpress.com/2009/12/22/senso-dellorientamento/</link>
		<comments>http://axeldamage.wordpress.com/2009/12/22/senso-dellorientamento/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 01:59:51 +0000</pubDate>
		<dc:creator>axeldamage</dc:creator>
				<category><![CDATA[cazzeggio]]></category>
		<category><![CDATA[filosofia]]></category>
		<category><![CDATA[scleri]]></category>

		<guid isPermaLink="false">http://axeldamage.wordpress.com/?p=261</guid>
		<description><![CDATA[Pubblicato in: cazzeggio, filosofia, scleri<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=261&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_260" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.kartoen.be/"><img class="size-full wp-image-260 " title="tumblr_kuwx9alG771qztsrto1_500" src="http://axeldamage.files.wordpress.com/2009/12/tumblr_kuwx9alg771qztsrto1_500.gif?w=519" alt="girl"   /></a><p class="wp-caption-text">fonte: kartoen.be <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div>
<br />Pubblicato in: cazzeggio, filosofia, scleri  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axeldamage.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axeldamage.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axeldamage.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=axeldamage.wordpress.com&amp;blog=847576&amp;post=261&amp;subd=axeldamage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://axeldamage.wordpress.com/2009/12/22/senso-dellorientamento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d967446fc896561e5b0e6fc53e398495?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">axeldamage</media:title>
		</media:content>

		<media:content url="http://axeldamage.files.wordpress.com/2009/12/tumblr_kuwx9alg771qztsrto1_500.gif" medium="image">
			<media:title type="html">tumblr_kuwx9alG771qztsrto1_500</media:title>
		</media:content>
	</item>
	</channel>
</rss>
