<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>T4n&#124;n0 Ru&#124;3z Official Site</title>
	<atom:link href="http://taninorulez.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://taninorulez.wordpress.com</link>
	<description>Tutto ciò che hai sempre cercato,forse lo hai trovato..</description>
	<pubDate>Fri, 04 Jul 2008 09:42:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>it</language>
			<item>
		<title>GDB e Objdump : piccola guida all&#8217;uso</title>
		<link>http://taninorulez.wordpress.com/2008/07/03/gdb-e-objdump-piccola-guida-alluso/</link>
		<comments>http://taninorulez.wordpress.com/2008/07/03/gdb-e-objdump-piccola-guida-alluso/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:59:05 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[Sicurezza]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[codice]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[gdb]]></category>

		<category><![CDATA[objdump]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[reversing]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=155</guid>
		<description><![CDATA[
I tools di sviluppo GNU includono un programma chiamato appunto Objdump che può essere usato per esaminare i dei binari.

 Una delle funzioni principali,è quindi quella di essere un disassembler. Per avere una panoramica completa di questa funzione,si può usare il comando: 
objdump -Dslx file
dove file è il nostro binario.
 Naturalmente un bel

man objdump
 ci [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="aligncenter" src="http://www.singlehop.com/blogimages/luis/cracking-wep.png" alt="" width="360" height="239" /><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p><span class="postbody">I tools</span><span class="postbody"> di sviluppo GNU includono un programma chiamato appunto Objdump che può essere usato per esaminare i dei binari.<br />
</span><br />
<span class="postbody"> Una </span><span class="postbody">delle funzioni principali,è quindi quella di essere un disassembler. Per avere una panoramica completa di questa funzione,si può usare il comando: </span><span id="more-155"></span></p>
<p><code>objdump -Dslx file</code></p>
<p>dove file è il nostro binario.</p>
<p><span class="postbody"> Naturalmente un bel<br />
</span><br />
<code>man objdump</code><br />
<span class="postbody"> ci da tutte le info necessarie,ma vi voglio elencare le principali e forse più usate:<br />
</span><br />
<span class="postbody"> <strong>-d</strong> : come già detto,disassemblatore<br />
<strong>-h</strong> : per vedere le intestazioni ELF<br />
<strong>&#8211;full-contents</strong> : per vedere una sezione ELF<br />
<strong>-S</strong> : ci mostra il source e l&#8217;assembly<br />
</span><br />
<span class="postbody"> Facciamo un esempio:<br />
</span></p>
<p><code>objdump -D a.out |grep main</code><span class="postbody"><br />
</span><br />
<span class="postbody">Ho isolato solo la parte del main,visto che l&#8217;output di objdump è davvero lungo. Ho usato un codice di prova di un piccolo client creato da me che iteragiva con un server usando le code di messaggi SysV IPC. L&#8217;output è: </span></p>
<p><code>08048514 :<br />
8048579:   79 18                   jns    8048593<br />
80485be:   74 0b                   je     80485cb<br />
80485c9:   75 57                   jne    8048622<br />
804862b:   74 0b                   je     8048638<br />
8048636:   75 0c                   jne    8048644<br />
804864d:   74 0b                   je     804865a<br />
8048658:   75 70                   jne    80486ca<br />
804873f:   e9 4f fe ff ff          jmp    8048593</code></p>
<p><span class="postbody"><br />
ogni byte ha una rappresentazione esadecimale,molto familiare con il nostro linguaggio normale in base 10 ( per chi non lo sapesse,una notazione esadecimale usa 0-1-2-3-4-5-6-7-8-9-A-B-C-D-E-F come alfabeto ). </span></p>
<p><span class="postbody"> Notiamo che nel nostro codice tutto parte dal punto 0&#215;8048514 che non è altro che l&#8217;indirizzo di memoria associato.</span></p>
<p>Non tutti i codici usano una sintassi intel ma volend,possiamo mostrare l&#8217;output Intel usando l&#8217;opzione -M:</p>
<p><code>objdump -M intel -D a.out |grep main</code></p>
<p><span class="postbody"><br />
provate se non avete un architettura intel <img src="http://taninorulez.altervista.org/images/smiles/icon_biggrin.gif" border="0" alt="Very Happy" /></span></p>
<p><span class="postbody">Oltre a objdump,abbiamo a disposizione GDB.<br />
GDB viene spes</span><span class="postbody">so usato per mostrare lo stato dei registri prima dell&#8217;esecuzione del programma:</span></p>
<p><code>gdb -q ./a.out</code></p>
<p><span class="postbody"><br />
entreremo nel dgb e potremo usare alcuni comandi,ecco un esempio:</span></p>
<p>(gdb) break main<br />
Breakpoint 1 at 0&#215;8048522<br />
(gdb) run<br />
Starting program: /home/tanino/Scrivania/client</p>
<p><code>Breakpoint 1, 0x08048522 in main ()<br />
Current language:  auto; currently asm<br />
(gdb) info registers<br />
eax            0&#215;1   1<br />
ecx            0xbffecd70   -1073820304<br />
edx            0xbffecd90   -1073820272<br />
ebx            0xb7f03ff4   -1208991756<br />
esp            0xbffecd54   0xbffecd54<br />
ebp            0xbffecd58   0xbffecd58<br />
esi            0xb7f36ce0   -1208783648<br />
edi            0&#215;0   0<br />
eip            0&#215;8048522   0&#215;8048522<br />
eflags         0&#215;286   [ PF SF IF ]<br />
cs             0&#215;73   115<br />
ss             0&#215;7b   123<br />
ds             0&#215;7b   123<br />
es             0&#215;7b   123<br />
fs             0&#215;0   0<br />
gs             0&#215;33   51</code></p>
<p>come vedete ho cercato il breakpoint del main e info sui registi. Per uscire dal gdb basta digitare quit.</p>
<p>Tornando ai registri,possiamo dire che i primi quattro ( EAX, ECX, EDX, EBX ) sono registri general purpose,chiamati rispettivamente Accumulator, Counter, Data, and Base registers.</p>
<p>Invece i seguenti 4 registri rispetto ai precedenti sono ESP, EBP, ESI, EDI e sono rispettivamente chiamati Stack Pointer, Base Pointer, Source Index,e Destination Index. ESP (Extended Stack Pointer) è un registro puntatore che contiene l&#8217;indirizzo di memoria corrispondente alla testa dello stack. Il registro EIP è invece il registro Instruction Pointer,che punta alla istruzione corrente che il processore sta leggendo.</p>
<p>Eccovi una lista completa:</p>
<ul> <span style="font-weight:bold;">EAX </span>&#8211; Accumulator &#8212; Manipolazione degli operandi e dei risultati delle operazioni logico-aritmetiche, nonché, in genere, del valore restituito dalle funzioni al codice chiamante.<br />
<span style="font-weight:bold;">EBX </span>&#8211; Base Addressing &#8212; Puntatore ai dati contenuti nel segmento DS (ad esempio, viene usato per contenere l&#8217;indirizzo del primo byte di un array o di un tipo di dato complesso, come una struttura o un record).<br />
<span style="font-weight:bold;">ECX </span>&#8211; Counter &#8212; Usato come contatore nei cicli, nelle istruzioni di shifting e rotazione e nelle operazioni di manipolazione di stringhe.<br />
<span style="font-weight:bold;">EDX </span> &#8212; Data &#8212; Puntatore nelle operazioni di I/O nonché come registro ausiliario in alcune istruzioni aritmetiche (moltiplicazione e divisione).<br />
<span style="font-weight:bold;">ESI</span> &#8212; Source Index &#8212; Usato nelle operazioni di manipolazione di stringhe, come puntatore ai dati di partenza. Viene usato anche per contenere l&#8217;offset di dati contenuti nel segmento DS (rispetto all&#8217;indirizzo di base contenuto in EBX).<br />
<span style="font-weight:bold;">EDI</span> &#8212; Destination Index &#8212; Usato nelle operazioni di manipolazione di stringhe, come puntatore ai dati di destinazione. Viene usato anche per contenere il puntatore ai dati (o all&#8217;indirizzo) di destinazione contenuti nel segmento ES o l&#8217;offset di dati contenuti nel segmento DS (rispetto all&#8217;indirizzo di base contenuto in EBX).<br />
<span style="font-weight:bold;">EBP</span> &#8212; Base Pointer &#8212; Puntatore ai dati sullo stack (ad esempio, i parametri e le variabili locali di procedure e funzioni). Viene usato anche per contenere l&#8217;indirizzo dei dati contenuti nel segmento SS.<br />
<span style="font-weight:bold;">ESP</span> &#8212; Stack Pointer &#8212; Puntatore all&#8217;ultimo elemento posto sullo stack. Viene anche usato per contenere l&#8217;indirizzo di offset di dati contenuti nel segmento SS (rispetto all&#8217;indirizzo di base contenuto in EBP).</ul>
<p>Il registro EFLAGS invece è un insieme di flags di bit usato per confronti e segmenti di memoria.</p>
<p>E&#8217; tutto per ora..</p>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/slackware">slackware</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/c">c</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programming">programming</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/coding">coding</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/reversing">reversing</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programmazione">programmazione</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/tutorial">tutorial</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/code">code</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/codici">codici</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=155&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/07/03/gdb-e-objdump-piccola-guida-alluso/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://www.singlehop.com/blogimages/luis/cracking-wep.png" medium="image" />

		<media:content url="http://taninorulez.altervista.org/images/smiles/icon_biggrin.gif" medium="image">
			<media:title type="html">Very Happy</media:title>
		</media:content>
	</item>
		<item>
		<title>GuadagnoRisparmiando vi regala un MacBook-Air!</title>
		<link>http://taninorulez.wordpress.com/2008/06/25/guadagnorisparmiando-vi-regala-un-macbook-air/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/25/guadagnorisparmiando-vi-regala-un-macbook-air/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 09:51:22 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Projects &amp; Other]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[gratis]]></category>

		<category><![CDATA[guadagnare]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[mac air]]></category>

		<category><![CDATA[risparmiare]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=153</guid>
		<description><![CDATA[

Il sito GuadagnoRisparmiando mette a disposizione un fantastico contest dove potete vincere un mac air. Partecipare è molto semplice. Il regolamento completo lo trovate qui.
Dal loro sito si può leggere:

Considerando il continuo e crescente interesse nei confronti del nostro Blog da parte di tantissimi appassionati del risparmio, la nostra redazione presa dall’entusiasmo ha deciso di [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:center;"><img class="aligncenter" src="http://www.guadagnorisparmiando.com/wp-content/uploads/2008/06/mbasplashtiregala.jpg" alt="" width="344" height="220" /></p>
<p style="text-align:left;">Il sito <a href="http://www.guadagnorisparmiando.com">GuadagnoRisparmiando</a> mette a disposizione un fantastico contest dove potete vincere un mac air. Partecipare è molto semplice. Il regolamento completo lo trovate <a href="http://www.guadagnorisparmiando.com/isayblog/macbook-air-contest/">qui</a>.</p>
<p style="text-align:left;">Dal loro sito si può leggere:</p>
<blockquote>
<div>Considerando il continuo e crescente interesse nei confronti del nostro Blog da parte di tantissimi appassionati del risparmio, la nostra redazione presa dall’entusiasmo ha deciso di regalare uno splendido <strong>MacBook Air</strong>, il computer portatile più sottile del mondo, ad uno dei nostri lettori.</div>
<div>La nostra è un operazione di marketing aggressiva, ce ne rendiamo conto. <strong>Regalare un dispositivo costoso come il MacBook Air</strong>, è una cosa destinata a far rumore, in tutti i sensi. Ma come per il quotidiano che regala il libro o distribuisce un gadget, pensiamo che sia la qualità della testata a fare la differenza.<br />
La nostra iniziativa è solo diretta a far conoscere il nostro contenitore su come <a href="http://www.guadagnorisparmiando.com/tag/risparmiare/">risparmiare</a>, sicuri del lavoro professionale svolto quotidianamente dal nostro staff per offrire articoli utili e consistenti a tutti i nostri lettori.</div>
<div>Il <strong>MacBook Air</strong> verrà SORTEGGIATO attraverso un estrazione che effettueremo in diretta Webcam, in data da definirsi, tra tutti i blog e siti che ci avranno linkato entro la mezzanotte del 10 Luglio 2008. (Vi consigliamo comunque di <a href="http://feeds.feedburner.com/risparmiando">iscrivervi al feed</a>, per ricevere comunicazioni al riguardo). Comunicheremo la data dell’estrazione al termine del periodo di iscrizione. State tranquilli, avrete tutto il tempo per portarlo con voi in vacanza!</div>
<div><strong>La novità, è che ora il tuo link avrà un valore!</strong> Si hai capito bene, se il tuo Blog è più importante di altri, <strong>avrai maggiore possibilità di vincere</strong>, in quanto ti verranno assegnati più ticket per l’estrazione. Se per esempio hai un sito con Pr3, il tuo nome sarà presente 3 volte all’interno del contenitore nel quale verrà effettuata l’estrazione.</div>
</blockquote>
<p style="text-align:left;">Partecipate numerosi,forse è la volta buona <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Nulla di più facile. <a title="risparmiare" href="http://www.guadagnorisparmiando.com"><strong>Risparmiare<br />
</strong></a> per guadagnare <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />
</p>
<p style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/free">free</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/gratis">gratis</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/contest">contest</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/guadagnare">guadagnare</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/risparmiando">risparmiando</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/mac">mac</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/air">air</a></p>
<div class="techtags" style="text-align:center;"></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/153/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/153/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=153&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/25/guadagnorisparmiando-vi-regala-un-macbook-air/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://www.guadagnorisparmiando.com/wp-content/uploads/2008/06/mbasplashtiregala.jpg" medium="image" />
	</item>
		<item>
		<title>Shell Linux: 10 trucchi semplici e forse sconosciuti da molti</title>
		<link>http://taninorulez.wordpress.com/2008/06/24/shell-linux-10-trucchi-semplici-e-forse-sconosciuti-da-molti/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/24/shell-linux-10-trucchi-semplici-e-forse-sconosciuti-da-molti/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 10:36:11 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[shell]]></category>

		<category><![CDATA[terminale]]></category>

		<category><![CDATA[tips]]></category>

		<category><![CDATA[trucchi]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=152</guid>
		<description><![CDATA[
Ogni utente linux ha a che fare quotidianamente con la shell ed i suoi comandi: loggarsi,cambiare i permessi ai file,tagliare,copiare,rimuovere,compilare sorgenti ecc.. I comandi bash sono imporantissimi e spesso molti scriptini ci facilitano molto il lavoro.
Oggi vi &#8221; traduco &#8221; da questo sito 10 trucchetti che possono tornarvi davvero utili. Alcuni forse li conoscevate già:
1. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="aligncenter" src="http://grack.com/images/treo-linux/img_1009.jpg" alt="" width="166" height="157" /><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p>Ogni utente linux ha a che fare quotidianamente con la shell ed i suoi comandi: loggarsi,cambiare i permessi ai file,tagliare,copiare,rimuovere,compilare sorgenti ecc.. I comandi bash sono imporantissimi e spesso molti scriptini ci facilitano molto il lavoro.</p>
<p>Oggi vi &#8221; traduco &#8221; da <a href="http://www.venturecake.com/10-linux-shell-tricks-you-dont-already-know-for-once/">questo</a> sito 10 trucchetti che possono tornarvi davvero utili. Alcuni forse li conoscevate già:<span id="more-152"></span></p>
<p><strong>1. Redirezione dell&#8217; Output ed Errori</strong></p>
<p>Per redirezionae l&#8217;output e gli errori di un comando in un file, utilizzate questo comando:</p>
<p><code>command &amp;&gt; file</code></p>
<p>Molto comodo anche con l&#8217;<code><strong>strace</strong></code>:</p>
<p><code>strace badapp &amp;&gt; errors_and_output</code></p>
<p>Sapendo che il valore 1 rappresenta lo standard output e il valore 2 lo standard error,potete redirizionare anche usando rispettivamente 1&gt; oppure 2&gt;.</p>
<p><strong>2. Parallelizzare i cicli(loops)</strong></p>
<p>Ogni buon amministratore di linux conosce la potenza del ciclo for: fare qualcosa per uno,dieci,cento utenti o macchine. Solitamente ogni utente mette i propri cicli in sequenza e bisogna aspettare che ogni ciclo di lavoro è finito prima di farne un altro. Ogni lavoro o compiti dei nostri cicli,possono essere fatti girare in background,senza aspettare che finisca un ciclo prima di fare un&#8217;altra operazione.Ecco un esempio con <code>sudo apt-get update:</code></p>
<p><code>for HOST in $(cat ListOfHosts); do ssh $HOST ’sudo apt-get update’ &amp; done</code></p>
<p>E perche&#8217; non usarlo magari anche per un bel tunnel? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><code>for HOST in $(cat ListOfHosts); do ssh -C -N -R 80:localhost:80 $HOST &amp; done</code></p>
<p><strong>3. Memory Leaks con Top</strong></p>
<p>Su linux è raro vedere programmi di memoria,ma questo può succedere se si usa una distro beta o software fatti in casa <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> Non sempre si puo&#8217; stare davanti alla macchina a fare ciò che si vuole,spesso c&#8217;è bisogno di programmare o pianificare qualcosa.<strong> Top </strong>ci viene in aiuto:</p>
<ul>
<li>Eseguiamo <strong>top</strong>.</li>
<li>Usiamo <strong>&lt;</strong> e <strong>&gt;</strong> per ordinare i processi in ordine RES (resident memory usage).</li>
<li>Premiamo <strong>W</strong> per inserire la nostra config</li>
<li>Aggiungiamo una cron job:<br />
<blockquote><p>crontab - &lt;&lt;&lt; ‘*/15 * * * * top -n 1 -b’</p></blockquote>
</li>
</ul>
<p>Ogni 15 minuti riceveremo un allarme/notifica di email.</p>
<p><strong>4. Standard Input dalla Linea di Comando</strong></p>
<p>Nel comando precedente abbiamo usato <code>&lt;&lt;&lt;</code>, che permette di inviare lo <em>stdin</em> del programma direttamente dalla riga di comando.</p>
<p><strong>5. Impostare una Password iniziale da cambiare al primo login</strong></p>
<p><code>umask u=rw,go=<br />
openssl rand -base64 6 | tee -a PasswordFile | passwd –stdin joe<br />
chage -d 0 joe</code></p>
<p>Crea una password che deve essere cambiata al primo login. Nello specifico,viene creato un fil PasswordFile che solamente il proprietario che l&#8217;ha creato può leggere e modificare.</p>
<p><strong>6. Aggiungere una Chiave Pubblica su Macchine Remote </strong></p>
<p>Quando avete piu&#8217; chiavi pubbliche abilitate alla connessione su un server via ssh potete usare:</p>
<p><code>ssh-copy-id -i .ssh/id_rsa.pub hostname</code></p>
<p>Spesso l&#8217;SSH rispoderà:</p>
<p><em>Now try logging into the machine, with “ssh ‘hostname’”, and check in:</em></p>
<p><em>.ssh/authorized_keys</em></p>
<p><em>to make sure we haven’t added extra keys that you weren’t expecting.</em></p>
<p><strong>7. Estrarre un RPM senza Software aggiuntivo</strong></p>
<p>Questo trucco non è necessario sulle distro Debian based,dato che ci sono i pacchetti .deb. Invece di usare rpm2cpio,possiamo avvalerci dei seguenti comandi per installare/estrarre un pacchetto in una directory temporane,senza modificare RPM database di sistema. Possiamo anche disabilitare le dipendenze e gli scritp:</p>
<p><code>mkdir /tmp/deleteme<br />
rpm -ivh –root /tmp/deleteme –nodeps –noscripts package.rpm</code></p>
<p>Ve lo piazza in /temp/deleteme e potete cancellarlo quando volete.</p>
<p><strong>8. Controllare come è cambiato un file rispetto al suo stato di default</strong></p>
<p>Utilizzando il seguente trucchetto possiamo vedere le modifiche di un file dal suo stato iniziale di default:</p>
<blockquote><p>dpkg -S /etc/foo/foo.conf</p>
<p>rpm -qf /etc/foo/foo.conf</p></blockquote>
<p>Estraiamo i pacchetti originali entrambi con DPkg o con il trucchetto degli  rpm trick visto prima ede eseguiamo:</p>
<blockquote><p>diff /etc/foo/foo.conf /tmp/deleteme/etc/foo/foo.conf</p></blockquote>
<p>Ora notate le differenze <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>9. Annullare gli script di rete se si perde la connessione</strong></p>
<p>Avete mai fatto casini con il firewall o connessioni remote?La regola sbagliata nel momento sbagliato in <strong>iptables</strong>. Vi trovte fuori dalla macchina, che magari sta anche lontano da dove siete voi.<br />
Per evitare quindi questi inconvenienti,prima di eseguire quindi un comando che vi possa causare il problema, potreste fare una cosa del genere:</p>
<p><code>at now + 5 minutes &lt;&lt;&lt; ‘cp /etc/ssh/sshd_config.old /etc/ssh/sshd_config; service sshd restart’</code></p>
<p>Ovviamente dovete fare il backup dei file, e ricordarvi di eseguire questo comando prima di rimanere fuori <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Cancellatelo  dalla coda atq con il comando <strong>atrm</strong> se riuscite a rientrare, prima che venga eseguito sul serio quando non serve.</p>
<p><strong>10. Controllare se una porta e&#8217; aperta</strong></p>
<p>Possiamo servirci di <strong>netcat</strong>. Possiamo usarlo facilmente per controllare una porta. Possiamo provare con i seguenti comandi,volendo possiamo creare anche un piccolo script bash:</p>
<p><code>if nc -w 3 localhost 22 &lt;&lt;&lt; ” &amp;&gt; /dev/null<br />
then<br />
echo ‘Port is open’<br />
else<br />
echo ‘Port is closed’<br />
fi</code></p>
<p>Spero vi siano utili <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Consiglio inoltre di leggervi</p>
<p><a href="http://taninorulez.wordpress.com/2008/03/25/guida-alla-programmazione-bash-e-accenni-sulla-shell-unix/">Bash base </a></p>
<p><a href="http://taninorulez.wordpress.com/2008/05/23/guida-bash-scripting-avanzato/">Bash avanzato</a></p>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/shell">shell</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/terminale">terminale</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/tips">tips</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/tutorial">tutorial</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/trucchi">trucchi</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/152/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/152/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=152&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/24/shell-linux-10-trucchi-semplici-e-forse-sconosciuti-da-molti/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://grack.com/images/treo-linux/img_1009.jpg" medium="image" />
	</item>
		<item>
		<title>Nuovo forum,nuova community</title>
		<link>http://taninorulez.wordpress.com/2008/06/23/nuovo-forumnuova-community/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/23/nuovo-forumnuova-community/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 17:59:26 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Projects &amp; Other]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=151</guid>
		<description><![CDATA[Salve a tutti,ho creato un piccolo forum ( per la verità,l&#8217;ho rifatto da zero ) ma stavolta più professionale,ampio e con contenuti validi e seri. Argomenti trattati nel forum sono la programmazione,grafica,reti,sicurezza e altro ancora.. per tutti gli appassionati o per coloro che hanno domande o problemi in generale,potete venire sul forum.
L&#8217;indirizzo è www.taninorulez.altervista.org vi [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Salve a tutti,ho creato un piccolo forum ( per la verità,l&#8217;ho rifatto da zero ) ma stavolta più professionale,ampio e con contenuti validi e seri. Argomenti trattati nel forum sono la programmazione,grafica,reti,sicurezza e altro ancora.. per tutti gli appassionati o per coloro che hanno domande o problemi in generale,potete venire sul forum.</p>
<p>L&#8217;indirizzo è <a href="http://www.taninorulez.altervista.org">www.taninorulez.altervista.org</a> vi aspetto <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/151/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/151/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=151&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/23/nuovo-forumnuova-community/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>
	</item>
		<item>
		<title>Cos&#8217;è quel quadratino bianco sotto i nostri contatti di messenger?</title>
		<link>http://taninorulez.wordpress.com/2008/06/14/cose-quel-quadratino-bianco-sotto-i-nostri-contatti-di-messenger/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/14/cose-quel-quadratino-bianco-sotto-i-nostri-contatti-di-messenger/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 14:03:13 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Msn]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[messenger]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[Virus]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[windows live]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=150</guid>
		<description><![CDATA[Ultimamente,molti mi stanno chiedendo e si stanno preoccupando del famoso quadratino bianco che compare sotto i contatti di messenger..

Eccovi uno screen:

Nulla di preoccupante: è solamente un bug di messenger momentaneo che sarà risolto ( spero )  
Non credete a tutte quelle stupidaggini del tipo :
SE hAI Un QUAdrAtInO bIAnCO SOttO l IMMAGInE pErSOnAlE dI [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ultimamente,molti mi stanno chiedendo e si stanno preoccupando del famoso quadratino bianco che compare sotto i contatti di messenger..</p>
<p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe><br />
Eccovi uno screen:</p>
<div style="text-align:center;"><img src="http://img522.imageshack.us/img522/8205/boen3.png" alt="" /></p>
<div style="text-align:left;">Nulla di preoccupante: è solamente un bug di messenger momentaneo che sarà risolto ( spero ) <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Non credete a tutte quelle stupidaggini del tipo :<br />
<br /><span style="font-weight:bold;">SE hAI Un QUAdrAtInO bIAnCO SOttO l IMMAGInE pErSOnAlE dI Un tUO AMICO<br />
MSn è Un vIrUS InvIA lA pArOlA MSnlOCKIMAGE 15 tUOI COntAttI E Il<br />
QUAdrAtInO SCOMpArIrà&#8230;pASSAlO&#8230;</span></p>
<p>E&#8217; assolutamente un messaggio ridicolo,senza fondamenti e soprattutto falso.</p>
<p>Cercando in giro,ho scoperto qualcosa in più:</p>
<div style="text-align:center;"><img src="http://bp0.blogger.com/_8_8IvRYS8ds/SFL3wot2oZI/AAAAAAAAB3w/IkTZHcoryhQ/s400/mysterious-office-icon.png" alt="" /></div>
<p>questo bug sarebbe presente anche sulle versioni di Messenger 9.0 ma c&#8217;è 1 differenza: sul wlm 9.0 il quadratino bianco è ben visibile e rappresenta l&#8217;icona di Office,mentre sul wlm 8.5 vediamo il quadrato bianco. Tutto questo è quindi causato dall&#8217;integrazione dei nuovi servizi di office 2007 sulla nuova beta privata di Windows live messenger 9.</p>
<p>Maggiori info le trovate su <a href="http://msntribre.blogspot.com/2008/06/la-verit-sul-quadratino-di-windows-live.html" target="_blank">MSN Tribe</a>.</p>
<p>Alla prossima</p></div>
</div>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/windows">windows</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/live">live</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/messenger">messenger</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/msn">msn</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/bug">bug</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/virus">virus</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/microsoft">microsoft</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/150/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/150/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=150&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/14/cose-quel-quadratino-bianco-sotto-i-nostri-contatti-di-messenger/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://img522.imageshack.us/img522/8205/boen3.png" medium="image" />

		<media:content url="http://bp0.blogger.com/_8_8IvRYS8ds/SFL3wot2oZI/AAAAAAAAB3w/IkTZHcoryhQ/s400/mysterious-office-icon.png" medium="image" />
	</item>
		<item>
		<title>Guida base ai Sistemi Operativi - I processi</title>
		<link>http://taninorulez.wordpress.com/2008/06/12/guida-base-ai-sistemi-operativi-i-processi/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/12/guida-base-ai-sistemi-operativi-i-processi/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 20:33:38 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<category><![CDATA[C]]></category>

		<category><![CDATA[Html]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[Projects &amp; Other]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Vista]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Xp]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[bsd]]></category>

		<category><![CDATA[guida]]></category>

		<category><![CDATA[operating system]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[sistemi operativi]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=149</guid>
		<description><![CDATA[
In attesa di completare la mia guida al C ( che completerò dopo gli esami,tempo massimo fine luglio ) ho cominciato a scrivere una guida introduttiva e basilare sui sistemi operativi. Nella sezione progetti troverete ora una nuova voce contenente volta volta i vari capitoli che andrò a scrivere. Per ora ho scritto il primo,ovvero [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://compilers.cs.ucla.edu/jtb/Images/bsd-logo.png" alt="" width="102" height="106" /><img src="http://www.nanotechnologies.qc.ca/propos/linux/images/en/tux_logo.jpg" alt="" width="77" height="89" /><img src="http://itknowledgeexchange.techtarget.com/overheard/files/2008/05/windows_logo.jpg" alt="" width="131" height="95" /><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p>In attesa di completare la mia <a href="http://taninorulez.wordpress.com/c-la-guida/">guida al C</a> ( che completerò dopo gli esami,tempo massimo fine luglio ) ho cominciato a scrivere una <strong>guida introduttiva e basilare sui sistemi operativi</strong>. Nella sezione <a href="http://taninorulez.wordpress.com/progetti/">progetti</a> troverete ora una nuova voce contenente volta volta i vari capitoli che andrò a scrivere. Per ora ho scritto il primo,ovvero i processi. Dateci un&#8217;occhiata e magari fatemi sapere cosa ne pensate. Naturalmente critiche ( costruttive ) e consigli sono sempre ben accettati.</p>
<p>Alla prossima.</p>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong><span style="color:#000000;">:</span></span> <a class="techtag" rel="tag" href="http://technorati.com/tag/programming">programming</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programmazione">programmazione</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/sistemi">sistemi</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/operativi">operativi</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/windows">windows</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/bsd">bsd</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/operating">operating</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/system">system</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/guida">guida</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/tutorial">tutorial</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/149/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/149/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=149&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/12/guida-base-ai-sistemi-operativi-i-processi/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://compilers.cs.ucla.edu/jtb/Images/bsd-logo.png" medium="image" />

		<media:content url="http://www.nanotechnologies.qc.ca/propos/linux/images/en/tux_logo.jpg" medium="image" />

		<media:content url="http://itknowledgeexchange.techtarget.com/overheard/files/2008/05/windows_logo.jpg" medium="image" />
	</item>
		<item>
		<title>Emacs Cheat Sheets</title>
		<link>http://taninorulez.wordpress.com/2008/06/12/emacs-cheat-sheets/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/12/emacs-cheat-sheets/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 11:05:34 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Cheat Sheet]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[cheat sheets]]></category>

		<category><![CDATA[editor]]></category>

		<category><![CDATA[emacs]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=147</guid>
		<description><![CDATA[

Visto che l&#8217;ultima volta vi avevo consigliato dei Cheat sheets di Vi/Vim,ora vi do consiglio questa lista riguardante invece emacs.

Emacs Cheat Sheets
                 
Fonte: scottklarr
Alla prossima,gli esami incombono  Byez
Tech Tags: emacs cheat sheets linux unix programming editor programmazione
  [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:center;"><img class="aligncenter" src="http://cyberjabba.files.wordpress.com/2007/06/tux.jpg?w=201&h=149" alt="" width="201" height="149" /></p>
<p>Visto che l&#8217;ultima volta vi avevo consigliato dei Cheat sheets di Vi/Vim,ora vi do consiglio questa lista riguardante invece emacs.</p>
<div class="cheatSheet">
<h3>Emacs Cheat Sheets</h3>
<p><a href="http://www.digilife.be/quickreferences/QRC/XEmacs%20Reference%20Card.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/1.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.digilife.be/quickreferences/QRC/GNU%20Calc%20Reference%20Card.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/2.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.catonmat.net/blog/bash-emacs-editing-mode-cheat-sheet/"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/3.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.cs.princeton.edu/%7Ehains/os/emacs.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/4.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://ccrma.stanford.edu/guides/package/emacs/emacs.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/5.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.cs.williams.edu/%7Efreund/cs010/emacs_cheat_sheet.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/6.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://tulrich.com/geekstuff/emacs.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/7.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://jim.sdf-eu.org/emacs-cheat/"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/8.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://i-d-design.com/users/mgalaher/emacs/emacs.php"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/9.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.ccs.neu.edu/home/guaraldi/emacs.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/10.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://jbpc.mbl.edu/GenomesCourse/media/200510181330-annotation/emacs.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/11.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://nexus.physics.ucf.edu/%7Ejh/ast/ast5937/emacs-cheat-sheet"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/12.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://lclark.2bdx.net/references/emacs-notes.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/13.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://karl-voit.at/vim-emacs-cheatsheet_of_freezing_hell.txt"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/14.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.engr.uvic.ca/%7Edastone/emacs-keys.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/15.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.flutterby.com/archives/2000_Dec/5_Emacscheatsheet.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/16.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://students.cs.byu.edu/%7Eadampete/emacscs.php"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/17.jpg" alt="eMacs Cheat Sheet" /></a> <a href="http://www.magma.ca/%7Erechlin/articles/emacs1.html"><img src="http://www.scottklarr.com/media/cheatsheets/emacs/18.jpg" alt="eMacs Cheat Sheet" /></a></p>
<p>Fonte: <a href="http://www.scottklarr.com/">scottklarr</a></p>
<p>Alla prossima,gli esami incombono <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> Byez</div>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags:</strong></span> <a class="techtag" rel="tag" href="http://technorati.com/tag/emacs">emacs</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/cheat">cheat</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/sheets">sheets</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programming">programming</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/editor">editor</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programmazione">programmazione</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/147/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/147/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=147&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/12/emacs-cheat-sheets/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://cyberjabba.files.wordpress.com/2007/06/tux.jpg" medium="image" />

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/1.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/2.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/3.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/4.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/5.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/6.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/7.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/8.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/9.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/10.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/11.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/12.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/13.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/14.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/15.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/16.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/17.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/emacs/18.jpg" medium="image">
			<media:title type="html">eMacs Cheat Sheet</media:title>
		</media:content>
	</item>
		<item>
		<title>Vi / Vim Cheat Sheets</title>
		<link>http://taninorulez.wordpress.com/2008/06/04/vivim-cheat-sheets/</link>
		<comments>http://taninorulez.wordpress.com/2008/06/04/vivim-cheat-sheets/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 11:17:22 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Cheat Sheet]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[cheat sheets]]></category>

		<category><![CDATA[editor]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[unix]]></category>

		<category><![CDATA[vi]]></category>

		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=144</guid>
		<description><![CDATA[

Per tutti gli amanti di vi o vim,ho trovato in giro una serie di cheat sheets che potrebbero tornare utili specialmente se vi state avvicinando da poco a questi editor di testo. Entrambi sono editor modali e forse a primo impatto qualcuno potrebbe trovare difficoltà. Spero vi siano utili.
       [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:center;"><img class="aligncenter" src="http://static.blogo.it/ossblog/vim_logo.png" alt="" width="93" height="93" /></p>
<p>Per tutti gli amanti di vi o vim,ho trovato in giro una serie di cheat sheets che potrebbero tornare utili specialmente se vi state avvicinando da poco a questi editor di testo. Entrambi sono editor modali e forse a primo impatto qualcuno potrebbe trovare difficoltà. Spero vi siano utili.</p>
<p><a href="http://www.digilife.be/quickreferences/QRC/Vi%20Reference%20Card.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/vi/1.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.digilife.be/quickreferences/QRC/vi%20Quick%20Reference.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/vi/2.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.gentoo.org/doc/en/vi-guide.xml"><img src="http://www.scottklarr.com/media/cheatsheets/vi/3.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.catonmat.net/blog/bash-vi-editing-mode-cheat-sheet/"><img src="http://www.scottklarr.com/media/cheatsheets/vi/4.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.eec.com/business/vi.html"><img src="http://www.scottklarr.com/media/cheatsheets/vi/5.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.sshhelp.com/vi-cheat-sheet/"><img src="http://www.scottklarr.com/media/cheatsheets/vi/6.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.digilife.be/quickreferences/QRC/VIM%20Quick%20Reference%20Card.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/vi/7.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.pixelbeat.org/vim.tips.html"><img src="http://www.scottklarr.com/media/cheatsheets/vi/8.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://blogs.tech-recipes.com/johnny/vim-quick-reference/"><img src="http://www.scottklarr.com/media/cheatsheets/vi/9.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html"><img src="http://www.scottklarr.com/media/cheatsheets/vi/10.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://www.kcomputing.com/kcvi.pdf"><img src="http://www.scottklarr.com/media/cheatsheets/vi/11.jpg" alt="Vi/Vim Cheat Sheet" /></a> <a href="http://bp0.blogger.com/_usjUYzP9iz4/RwwBBFvCiYI/AAAAAAAAAOY/2eIZNHnBkcQ/s1600-h/vim-commands.jpg"><img src="http://www.scottklarr.com/media/cheatsheets/vi/12.jpg" alt="Vi/Vim Cheat Sheet" /></a></p>
<div class="techtags" style="text-align:left;">Fonte: <a href="http://www.scottklarr.com">scottklarr</a></div>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/vi">vi</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/vim">vim</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/editor">editor</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programming">programming</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/cheat">cheat</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/sheets">sheets</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programmazione">programmazione</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/144/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/144/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=144&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/06/04/vivim-cheat-sheets/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://static.blogo.it/ossblog/vim_logo.png" medium="image" />

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/1.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/2.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/3.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/4.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/5.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/6.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/7.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/8.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/9.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/10.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/11.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.scottklarr.com/media/cheatsheets/vi/12.jpg" medium="image">
			<media:title type="html">Vi/Vim Cheat Sheet</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Hardy Heron 8.04: guida per tutti</title>
		<link>http://taninorulez.wordpress.com/2008/05/27/ubuntu-hardy-heron-804-guida-per-tutti/</link>
		<comments>http://taninorulez.wordpress.com/2008/05/27/ubuntu-hardy-heron-804-guida-per-tutti/#comments</comments>
		<pubDate>Tue, 27 May 2008 14:01:15 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[8.04]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[guida]]></category>

		<category><![CDATA[hardy]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=143</guid>
		<description><![CDATA[
Ho scoperto che lo staff della famosa rivista tuxjournal ha messo a disposizione sul loro sito web il pdf del loro famoso articolo “Personalizzare Ubuntu Hardy Heron 8.04 al 101%“. Questo articolo ha riscosso un grande successo. Gli argomenti trattati nella guida sono molteplici: dalla personalizzazione grafica alla gestione della propria rete.Non mancano argomenti relativi [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img src="http://www.tuxjournal.net/wp-content/uploads/2008/05/ubuntulogo.png" alt="" width="202" height="55" /><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p>Ho scoperto che lo staff della famosa rivista <a href="http://www.tuxjournal.net">tuxjournal</a> ha messo a disposizione sul loro sito web il pdf del loro famoso articolo “<a title="Article-Link (Permalink)" rel="bookmark" href="http://www.tuxjournal.net/?p=3431">Personalizzare Ubuntu Hardy Heron 8.04 al 101%</a>“. Questo articolo ha riscosso un grande successo. Gli argomenti trattati nella guida sono molteplici: dalla personalizzazione grafica alla gestione della propria rete.Non mancano argomenti relativi alla programmazione,editing video,audio e tanto altro.</p>
<p>Potete scaricare il file da <a href="http://www.tuxjournal.net/UbuntuHardy101.pdf">qui</a>. Buona lettura !</p>
<div class="techtags" style="text-align:center;"><strong><span style="color:#339966;">Tech Tags</span>:</strong> <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/ubuntu">ubuntu</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/hardy">hardy</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/heron">heron</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/8.04">8.04</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/tutorial">tutorial</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/143/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/143/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=143&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/05/27/ubuntu-hardy-heron-804-guida-per-tutti/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://www.tuxjournal.net/wp-content/uploads/2008/05/ubuntulogo.png" medium="image" />
	</item>
		<item>
		<title>Guida bash scripting avanzato</title>
		<link>http://taninorulez.wordpress.com/2008/05/23/guida-bash-scripting-avanzato/</link>
		<comments>http://taninorulez.wordpress.com/2008/05/23/guida-bash-scripting-avanzato/#comments</comments>
		<pubDate>Fri, 23 May 2008 11:00:19 +0000</pubDate>
		<dc:creator>T4n&#124;n0 Ru&#124;3z</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programmazione]]></category>

		<category><![CDATA[Slackware]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[shell]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://taninorulez.wordpress.com/?p=142</guid>
		<description><![CDATA[
Un paio di settimane fa vi parlai in questo intervento di una guida al linguaggio bash e alcuni cenni sulla shell unix. Oggi vi voglio invece segnalare una guida un pò più avanzata e completa di quella che scrissi io per chi si stava appena avvicinando a questo linguaggio di scripting. La guida la trovate [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="aligncenter" src="http://www.ronetix.at/images/logo_linux.jpg" alt="" width="170" height="220" /><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fsecurity%2FTutorial_Guide_Photoshop_Programming_Msn' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p>Un paio di settimane fa vi parlai in <a href="http://taninorulez.wordpress.com/2008/03/25/guida-alla-programmazione-bash-e-accenni-sulla-shell-unix/">questo</a> intervento di una guida al linguaggio bash e alcuni cenni sulla shell unix. Oggi vi voglio invece segnalare una guida un pò più avanzata e completa di quella che scrissi io per chi si stava appena avvicinando a questo linguaggio di scripting. La guida la trovate <a href="http://www.divshare.com/download/4565402-18a">qui</a>. Spero vi sia utile.</p>
<p>A presto.</p>
<div class="techtags" style="text-align:center;"><span style="color:#339966;"><strong>Tech Tags</strong></span>: <a class="techtag" rel="tag" href="http://technorati.com/tag/bash">bash</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/script">script</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/scripting">scripting</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programming">programming</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/programmazione">programmazione</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/unix">unix</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/linux">linux</a> <a class="techtag" rel="tag" href="http://technorati.com/tag/shell">shell</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/taninorulez.wordpress.com/142/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/taninorulez.wordpress.com/142/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/taninorulez.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/taninorulez.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/taninorulez.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/taninorulez.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/taninorulez.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/taninorulez.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/taninorulez.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/taninorulez.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/taninorulez.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/taninorulez.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=taninorulez.wordpress.com&blog=1263047&post=142&subd=taninorulez&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://taninorulez.wordpress.com/2008/05/23/guida-bash-scripting-avanzato/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/taninorulez-128.jpg" medium="image">
			<media:title type="html">taninorulez</media:title>
		</media:content>

		<media:content url="http://www.ronetix.at/images/logo_linux.jpg" medium="image" />
	</item>
	</channel>
</rss>