<?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>Daino è, chi il Daino fa</title>
	<atom:link href="http://dainaccio.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dainaccio.wordpress.com</link>
	<description>10.000 ne penso, 100 ne faccio, 10 ne pubblico</description>
	<lastBuildDate>Sun, 29 Jan 2012 20:08:14 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dainaccio.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Daino è, chi il Daino fa</title>
		<link>http://dainaccio.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dainaccio.wordpress.com/osd.xml" title="Daino è, chi il Daino fa" />
	<atom:link rel='hub' href='http://dainaccio.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MSP430 LaunchPad: Anti-Mosquito Device</title>
		<link>http://dainaccio.wordpress.com/2011/07/03/msp430-launchpad-anti-mosquito-device/</link>
		<comments>http://dainaccio.wordpress.com/2011/07/03/msp430-launchpad-anti-mosquito-device/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 17:42:18 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Elettronica]]></category>
		<category><![CDATA[Microcontrollori]]></category>
		<category><![CDATA[launchpad]]></category>
		<category><![CDATA[mosquitoes]]></category>
		<category><![CDATA[msp430]]></category>
		<category><![CDATA[texas instruments]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=375</guid>
		<description><![CDATA[Mosquitoes are the plague of the summer time. Luckily ultrasounds can help against them. Why don&#8217;t developing an ultrasounds generator with the LaunchPad ? A quite easy task&#8230; My code produces a 10kHz squared wave to the pin of the green led. A little 386-based audio amplifier is wired as well, to transform the signal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=375&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mosquitoes are the plague of the summer time. Luckily ultrasounds can help against them. Why don&#8217;t developing an ultrasounds generator with the LaunchPad ? A quite easy task&#8230;</p>
<p><a href="http://dainaccio.files.wordpress.com/2011/07/antimosquito.jpg"><img class="aligncenter size-full wp-image-377" title="antimosquito" src="http://dainaccio.files.wordpress.com/2011/07/antimosquito.jpg?w=470&#038;h=292" alt="" width="470" height="292" /></a></p>
<p><span id="more-375"></span></p>
<p>My code produces a 10kHz squared wave to the pin of the green led. A little 386-based audio amplifier is wired as well, to transform the signal in an audible sound.</p>
<p>Actually, 10kHz is still audible by humans: it&#8217;s just for testing the audio system. If you can hear the high pitched sound everything is OK; now you can switch to 14 or 15 kHz by pressing the S2 button (each press increments the frequency by 1000). These high frequencies are still audible by mosquitoes and they&#8217;ll keep them away.</p>
<blockquote><p># This software is released under GPLv3 license:<br />
# http://www.gnu.org/licenses/gpl.html</p>
<p>#include &lt;io.h&gt;<br />
#include &lt;signal.h&gt;</p>
<p>// Hertz<br />
#define CLOCK         16000000<br />
#define FREQ        10000<br />
#define DELTA_F    1000</p>
<p>#define     LED0                  BIT0<br />
#define     LED1                  BIT6<br />
#define     LED_DIR               P1DIR<br />
#define     LED_OUT               P1OUT</p>
<p>#define     BUTTON                BIT3<br />
#define     BUTTON_OUT            P1OUT<br />
#define     BUTTON_DIR            P1DIR<br />
#define     BUTTON_IN             P1IN<br />
#define     BUTTON_IE             P1IE<br />
#define     BUTTON_IES            P1IES<br />
#define     BUTTON_IFG            P1IFG<br />
#define     BUTTON_REN            P1REN</p>
<p>static void __inline__ delay(register unsigned int n);</p>
<p>int i;</p>
<p>int main(void)<br />
{<br />
// Watch Dog settings<br />
WDTCTL = WDTPW|WDTHOLD;        // Stop watchdog timer</p>
<p>// Clock settings<br />
BCSCTL1 = CALBC1_16MHZ;        // clock 1MHz<br />
DCOCTL = CALDCO_16MHZ;</p>
<p>// Leds settings<br />
LED_DIR |= LED0 + LED1;</p>
<p>// TimerA settings<br />
TACCR0 = CLOCK/(2*FREQ);            // Timer end value<br />
TACTL = TASSEL_2 + MC_1 + ID_0;    // SMCLK/1, up mode<br />
TACCTL0 = CCIE;                        // Timer Interrupt Enable</p>
<p>// Button settings<br />
i = 0;<br />
BUTTON_DIR &amp;= ~BUTTON;    // input<br />
BUTTON_OUT |= BUTTON;    // high (for pull resistor)<br />
BUTTON_REN |= BUTTON;    // pull up<br />
BUTTON_IES |= BUTTON;    // high to low interrupt<br />
BUTTON_IFG &amp;= ~BUTTON;    // clear interrupt<br />
BUTTON_IE |= BUTTON;        // interrupt enable</p>
<p>// Interrupts settings<br />
__bis_SR_register(GIE);                // General Interrupts Enable</p>
<p>while(1) ;</p>
<p>return 0;<br />
}</p>
<p>interrupt(TIMERA0_VECTOR) timer_int(void)<br />
{<br />
LED_OUT ^= LED1;<br />
}</p>
<p>interrupt(PORT1_VECTOR) button_int(void)<br />
{<br />
BUTTON_IFG = 0;              // clear Interrupt Flag Register<br />
BUTTON_IE &amp;= ~BUTTON;    // disable Button Int (debounce)</p>
<p>i++;<br />
TACCR0 = CLOCK/(2*(FREQ + i*DELTA_F));</p>
<p>delay(500);<br />
BUTTON_IE |= BUTTON;        // enable Button Int</p>
<p>}</p>
<p>// Delay Routine from mspgcc help file<br />
static void __inline__ delay(register unsigned int n)<br />
{<br />
__asm__ __volatile__ (<br />
&#8220;1: \n&#8221;<br />
&#8221; dec %[n] \n&#8221;<br />
&#8221; jne 1b \n&#8221;<br />
: [n] &#8220;+r&#8221;(n));<br />
}</p></blockquote>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/375/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=375&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2011/07/03/msp430-launchpad-anti-mosquito-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2011/07/antimosquito.jpg" medium="image">
			<media:title type="html">antimosquito</media:title>
		</media:content>
	</item>
		<item>
		<title>MSP430 LaunchPad: my 9600 Baud Serial Connection</title>
		<link>http://dainaccio.wordpress.com/2011/06/11/msp430-serialconnection/</link>
		<comments>http://dainaccio.wordpress.com/2011/06/11/msp430-serialconnection/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 00:11:58 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Microcontrollori]]></category>
		<category><![CDATA[launch pad]]></category>
		<category><![CDATA[msp430]]></category>
		<category><![CDATA[serial connection]]></category>
		<category><![CDATA[ti]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=362</guid>
		<description><![CDATA[I wanted to create a 9600 asynchronous serial connection with my TI LaunchPad. I started my development from the source code of the example program that I found in it (temp. sensor with serial connection and leds modulation) but I wanted three more things: a faster link (9600 which is four times greater), a mspgcc4 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=362&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://dainaccio.files.wordpress.com/2011/06/ti.jpg"><img src="http://dainaccio.files.wordpress.com/2011/06/ti.jpg?w=470&#038;h=317" alt="" title="TI LaunchPad" width="470" height="317" class="aligncenter size-full wp-image-370" /></a></p>
<p>I wanted to create a 9600 asynchronous serial connection with my TI LaunchPad.<br />
I started my development from the source code of the example program that I found in it (temp. sensor with serial connection and leds modulation) but I wanted three more things: a faster link (9600 which is four times greater), a mspgcc4 compatibility (the free-software compiler that I&#8217;m using) and a CPU working at 16 MHz (instead of 1 MHz of the example).</p>
<p>The task is not very difficult and I carried it in a completely free environment (Ubuntu + MSPGCC + mspDebug).<br />
<span id="more-362"></span><br />
<strong>Introduction</strong></p>
<p>First of all, the asynchronous serial communication is a way to send and receive data over a link, without the need of a clock signal. In its simplest implementation we have the transmission of 10 symbols: a starting 0 (start bit), eight bits of data and an ending 1 (stop bit).<br />
From this we can add a parity bit (and other things&#8230;) to aim to a more strong/error-free connection but that&#8217;s not our case of study.</p>
<p>To allow a communication between two units we have to set the same &#8220;communication speed&#8221; parameter, which impose the time duration of each bit. Its unit is the BAUD: the maximal number of symbols each second.<br />
For example 9600 BAUD means that every symbol needs to be 1/9600 seconds long (otherwise we cannot meet the desired top speed).</p>
<p><strong>void Transmission(void)</strong></p>
<p>As in the software example of TI, the serial transmission is made by putting the 8 bits to send in a variable (<em>TXByte</em>) and then calling the function <em>void transmission()</em>.</p>
<p>This function prepares the transmission adding a Start Bit and a Stop Bit to the data that we want to send. It also actives the interrupt of the TimerA, the timing device inside the MSP430 that is used to create a good and compliant serial signal.</p>
<p>With <em>Bitime</em> we set the number of cycles of the timer between each interruption. This is done by adding this value to the TimerA configuration register <em>CCR0</em>.</p>
<p>The main program is blocked inside this function until the transmission is completed.</p>
<p><strong>interrupt(TIMERA0_VECTOR) uart(void)</strong></p>
<p>This function is responsible for changing the output of the UART according to the data bit to send. It checks the number of the bits already sent (<em>BitCnt</em>) and if the communication is not terminated.</p>
<p><strong>Configurations</strong></p>
<p>As stated before, we set up the internal oscillator at 16 MHz (=MSCKL = SMCLK).<br />
The TimerA is working in continuous mode, incremented at the frequency of SMCLK divided by 8 (Timer Clock).</p>
<p>Bitime is derived from the Timer Clock speed and the Communication speed.<br />
The relation is:</p>
<p>BAUD = Timer Clock / Bitime</p>
<p>In the example we have Bitime = 52, which is ( Timer Clock / BAUD ) = ( (1 MHz / 8 ) / 2400).<br />
In our case I changed both the Clock and the BAUD, so the new Bitime is (16 MHz / 8 ) / 9600 = 209.</p>
<ul>
&#8211;&gt; Actually 209 didn&#8217;t worked&#8230; I changed to 250, but I don&#8217;t know why&#8230;</ul>
<p><strong>Source code</strong></p>
<p><code><br />
#include<br />
#include </p>
<p>// leds<br />
#define		LED_R			BIT0<br />
#define		LED_G			BIT6</p>
<p>// software UART<br />
#define TXD BIT1<br />
#define RXD BIT2</p>
<p>// BAUD * Bitime = TimerA adding frequency<br />
// @1Mhz			 Bitime = ( 1MHz / 8 ) / 2400 = 52<br />
// @16Mhz		 Bitime = ( 16MHz / 8 ) / 9600 = 209<br />
#define Bitime 250	</p>
<p>unsigned int TXByte;		// byte to send<br />
unsigned char BitCnt;	// bit counter</p>
<p>void initClocks(void);<br />
void initIO(void);<br />
void initTimerUart(void);<br />
void Transmit();<br />
static void __inline__ delay(register unsigned int n);</p>
<p>int main(void)<br />
{<br />
	WDTCTL = WDTPW|WDTHOLD; // Stop watchdog timer</p>
<p>	initClocks();<br />
	initIO();<br />
	initTimerUart();</p>
<p>	__bis_SR_register(GIE);		// General Interrupts Enable</p>
<p>	while(1){</p>
<p>		TXByte = 0xAA;	// let's send 10101010<br />
		Transmit();<br />
		TXByte = 0x48;	// let's send H<br />
		Transmit();<br />
		TXByte = 0x49;	// let's send I<br />
		Transmit();<br />
		delay(30000);</p>
<p>	}<br />
	return 0;<br />
}</p>
<p>void initTimerUart(){<br />
	CCTL0 = OUT;							// TXD Idle as Mark (OUT = 1)<br />
	TACTL = TASSEL_2 + MC_2 + ID_3;	// SMCLK/8, continuos mode<br />
}</p>
<p>interrupt(TIMERA0_VECTOR) uart(void)<br />
{<br />
	CCR0 += Bitime;	// Add Transmission Offset to CCR0</p>
<p>	if (TACCTL0 &amp; CCIS0){	// TX on CCI0B?</p>
<p>		if ( BitCnt == 0){<br />
			TACCTL0 &amp;= ~ CCIE;		// All bits TXed, disable interrupt<br />
		} else {</p>
<p>			CCTL0 |= OUTMOD2;								// TX Space<br />
			if (TXByte &amp; 0x01) CCTL0 &amp;= ~ OUTMOD2;	// TX Mark</p>
<p>			TXByte = TXByte &gt;&gt; 1;	// next bit<br />
			BitCnt --;<br />
		}<br />
	}<br />
}</p>
<p>// Function Transmits Character from TXByte (Mark Bit = "1" and Space Bit = "0")<br />
void Transmit()<br />
{</p>
<p>	BitCnt = 0xA;		// 10 bits (8 data + start bit + stop bit)</p>
<p>  	if (CCR0 != TAR) CCR0 = TAR;		// synch CCR0 to TAR</p>
<p>	CCR0 += Bitime;	// Some time till first bit</p>
<p>	TXByte |= 0x100;			// Add mark stop bit to TXByte<br />
	TXByte = TXByte &lt;&lt; 1;	// Add space start bit</p>
<p>	CCTL0 = CCIS0 + OUTMOD0 + CCIE; 		// TXD = mark = idle</p>
<p>	while ( CCTL0 &amp; CCIE ) delay(5);		// Wait for TX completion<br />
}</p>
<p>void initClocks(void)<br />
{<br />
	BCSCTL1 = CALBC1_16MHZ;		// Set range (MSCKL = SMCLK = 16MHz)<br />
	DCOCTL = CALDCO_16MHZ;<br />
}</p>
<p>void initIO(void)<br />
{<br />
	P1SEL |= TXD + RXD;		// use pins for the UART<br />
	P1DIR |= TXD + LED_R;	// set TXD as output<br />
	P1OUT = LED_R;				// all outputs to 0, except Red led<br />
}</p>
<p>// Delay Routine from mspgcc help file<br />
static void __inline__ delay(register unsigned int n)<br />
{<br />
	__asm__ __volatile__ (<br />
	&quot;1: \n&quot;<br />
	&quot; dec %[n] \n&quot;<br />
	&quot; jne 1b \n&quot;<br />
		  : [n] &quot;+r&quot;(n));<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=362&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2011/06/11/msp430-serialconnection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2011/06/ti.jpg" medium="image">
			<media:title type="html">TI LaunchPad</media:title>
		</media:content>
	</item>
		<item>
		<title>Skype non funziona con il microfono integrato su Linux Ubuntu, ecco come risolvere&#8230;</title>
		<link>http://dainaccio.wordpress.com/2010/07/07/skype-non-funziona/</link>
		<comments>http://dainaccio.wordpress.com/2010/07/07/skype-non-funziona/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 12:09:07 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[microfono integrato]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=356</guid>
		<description><![CDATA[Nel mio nuovo portatile Acer Aspire 4810T, ho constatato che il microfono integrato funzionava con il registratore di suoni ma non funzionava con Skype. Ciò è dovuto al fatto che Skype ritiene che sia un microfono stereo e, nel tentativo di rimuovere il rumore, fa la differenza dei 2 canali arrivando così ad annullare il [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=356&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nel mio nuovo portatile Acer Aspire 4810T, ho constatato che il microfono integrato funzionava con il registratore di suoni ma non funzionava con Skype.</p>
<p>Ciò è dovuto al fatto che Skype ritiene che sia un microfono stereo e, nel tentativo di rimuovere il rumore, fa la differenza dei 2 canali arrivando così ad annullare il segnale.</p>
<p>La soluzione è installare un mixer per PulseAudio</p>
<p><code>sudo apt-get install pavucontrol</code></p>
<p>e, una volta avviato, modificare i livelli audio del microfono, andando ad abbassare a livello 0 uno dei 2 canali.</p>
<p><img src="http://dainaccio.files.wordpress.com/2010/07/pulseaudiomixer.png?w=470" alt="" title="pulseaudiomixer"   class="aligncenter size-full wp-image-357" /></p>
<p>Nelle impostazioni Skype, inoltre, va inibito l&#8217;auto-settaggio dei volumi.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=356&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2010/07/07/skype-non-funziona/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/07/pulseaudiomixer.png" medium="image">
			<media:title type="html">pulseaudiomixer</media:title>
		</media:content>
	</item>
		<item>
		<title>How to type accents on a keyboard without them, on Ubuntu</title>
		<link>http://dainaccio.wordpress.com/2010/07/02/how-to-type-accents-on-a-keyboard-without-them-on-ubuntu/</link>
		<comments>http://dainaccio.wordpress.com/2010/07/02/how-to-type-accents-on-a-keyboard-without-them-on-ubuntu/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 16:02:27 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[accent]]></category>
		<category><![CDATA[accenti]]></category>
		<category><![CDATA[accento]]></category>
		<category><![CDATA[accento circonflesso]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=336</guid>
		<description><![CDATA[Quando si studia una nuova lingua, può capitare di avere a che fare con lettere o accenti particolari, non presenti nella lingua natia e, più gravemente, nemmeno nella tastiera&#8230; Esattamente ciò che mi è successo studiando francese: nella tastiera italiana non ci sono &#8220;ê&#8221; or &#8220;â&#8221;&#8230; Fortunatamente ho trovato una soluzione estremamente comoda&#8230; Per prima [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=336&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quando si studia una nuova lingua, può capitare di avere a che fare con lettere o accenti particolari, non presenti nella lingua natia e, più gravemente, nemmeno nella tastiera&#8230;<br />
Esattamente ciò che mi è successo studiando francese: nella tastiera italiana non ci sono &#8220;ê&#8221; or &#8220;â&#8221;&#8230;</p>
<p><a href="http://dainaccio.files.wordpress.com/2010/07/foto0308.jpg"><img class="aligncenter size-full wp-image-342" title="WindowsFrance" src="http://dainaccio.files.wordpress.com/2010/07/foto0308.jpg?w=470" alt=""   /></a></p>
<p>Fortunatamente ho trovato una soluzione estremamente comoda&#8230;</p>
<p><span id="more-336"></span>Per prima cosa bisogna andare sulle preferenze della tastiera (Sistema -&gt; Preferenze -&gt; Tastiera)</p>
<p><a href="http://dainaccio.files.wordpress.com/2010/07/01.png"><img class="aligncenter size-full wp-image-339" title="Tastiera" src="http://dainaccio.files.wordpress.com/2010/07/01.png?w=470" alt=""   /></a></p>
<p>Da qui va selezionata la linguetta &#8220;Disposizioni&#8221; (1) e poi &#8220;Aggiungi&#8221; (2). Nella finestra che si apre, va scelta una tastiera contenente gli accenti desiderati. Visto che nel mio caso si trattava di accenti francesi, ho aggiunto una tastiera a disposizione francese, come si vede in figura.</p>
<p>Fatto questo, bisogna impostare quale tasto sarà incaricato di fare lo swith da una tastiera all&#8217;altra. Per fare ciò si va su &#8220;Opzioni&#8230;&#8221; (3).</p>
<p><a href="http://dainaccio.files.wordpress.com/2010/07/02.png"><img class="aligncenter size-full wp-image-340" title="Disposizioni" src="http://dainaccio.files.wordpress.com/2010/07/02.png?w=470&#038;h=456" alt="" width="470" height="456" /></a></p>
<p>Tra le tante voci presenti nella finestra di opzioni, bisogna cercare ed espandere quella denominata &#8220;Tasto o tasti per cambiare disposizione&#8221;. Personalmente ho attivato &#8220;Tasto di Windows (mentre è premuto)&#8221;.</p>
<p><a href="http://dainaccio.files.wordpress.com/2010/07/03.png"><img class="aligncenter size-full wp-image-341" title="Opzioni" src="http://dainaccio.files.wordpress.com/2010/07/03.png?w=470&#038;h=360" alt="" width="470" height="360" /></a></p>
<p>In questo modo, ogni volta che mi serve un accento straniero, tengo premuto il &#8220;tasto di Windows&#8221; e lo digito come avessi davanti la tastiera, nel mio caso, francese. Fête !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=336&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2010/07/02/how-to-type-accents-on-a-keyboard-without-them-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/07/foto0308.jpg" medium="image">
			<media:title type="html">WindowsFrance</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/07/01.png" medium="image">
			<media:title type="html">Tastiera</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/07/02.png" medium="image">
			<media:title type="html">Disposizioni</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/07/03.png" medium="image">
			<media:title type="html">Opzioni</media:title>
		</media:content>
	</item>
		<item>
		<title>Condividere file tra computer con SSH su Ubuntu</title>
		<link>http://dainaccio.wordpress.com/2010/06/25/condividere-file-tra-computer-con-ssh-su-ubuntu/</link>
		<comments>http://dainaccio.wordpress.com/2010/06/25/condividere-file-tra-computer-con-ssh-su-ubuntu/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:24:03 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[condivisione]]></category>
		<category><![CDATA[condivisione cartelle]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server ssh]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=329</guid>
		<description><![CDATA[Quando si parla di condivisione file tra computer non si può non nominare Samba, il progetto free-software per antonomasia nel settore. Quest&#8217;ultimo ha l&#8217;indubbio vantaggio di permettere l&#8217;intercomunicazione con reti e macchine Windows e rappresenta un ottimo strumento. Se invece, come è capitato a me, c&#8217;è l&#8217;interesse ad un controllo più approfondito dei file di [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=329&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quando si parla di condivisione file tra computer non si può non nominare <a href="http://www.samba.org/">Samba</a>, il progetto free-software per antonomasia nel settore.<br />
Quest&#8217;ultimo ha l&#8217;indubbio vantaggio di permettere l&#8217;intercomunicazione con reti e macchine Windows e rappresenta un ottimo strumento.</p>
<p>Se invece, come è capitato a me, c&#8217;è l&#8217;interesse ad un controllo più approfondito dei file di un computer remoto (una vera e propria amministrazione, più che una semplice condivisione classica) allora una delle soluzioni più vantaggiose è rappresentata dalla suite SSH.</p>
<p>Installando un server SSH su una macchina, la si rende disponibile ad essere amministrata da qualsiasi computer remoto, permettendo l&#8217;esecuzione di comandi e lo scambio di file.</p>
<p>Ciò avviene con il comando :<br />
<code>sudo apt-get install ssh</code></p>
<p>Una volta fatto ciò, si potrà accedere al computer tramite la comoda voce &#8220;Accedi al server&#8230;&#8221;, che in Ubuntu si trova nel menù &#8220;Risorse&#8221;.<br />
Nella tipologia server va selezionato &#8220;SSH&#8221; e va inserito il nome utente (dimenticavo&#8230; dovete avere un utente nella macchina remota !).</p>
<p><img src="http://dainaccio.files.wordpress.com/2010/06/ssh.png?w=470" alt="" title="ssh"   class="aligncenter size-full wp-image-331" /></p>
<p>Se la procedura va a buon fine, si aprirà una finestra di Nautilus contenente i file presenti in remoto, da cui potrete svolgere le operazioni desiderate (navigazione, copia, eliminazione, ecc&#8230;) con la stessa comodità d&#8217;uso dei file locali.</p>
<p>L&#8217;unico limite è rappresentato dai privilegi di cui gode l&#8217;utente utilizzato nel computer remoto.</p>
<p><span id="more-329"></span></p>
<p>Ormai che è stato installato il server SSH, segnalo che è possibile accedervi anche con un client SSH da terminale. La sintassi è:</p>
<p><code>ssh ipRemoto -l nomeUtenteRemoto</code></p>
<p><strong>Sicurezza</strong><br />
Dopo aver installato un server SSH, di default la macchina accetta le connessioni dai client esterni e ciò non va sottovalutato.<br />
Buona pratica è avere un numero di utenti limitato e ben noto, ognuno dei quali con una password non banale. Inoltre, se il servizio SSH viene utilizzato solo raramente, conviene disattivarlo dall&#8217;esecuzione automatica (o disinstallarlo quando terminato il lavoro&#8230;).<br />
Non sottovalutate questi aspetti, soprattutto se il computer non è in una rete casalinga o è accessibile anche da internet.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=329&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2010/06/25/condividere-file-tra-computer-con-ssh-su-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/06/ssh.png" medium="image">
			<media:title type="html">ssh</media:title>
		</media:content>
	</item>
		<item>
		<title>Automatica e Controlli Automatici con Octave, su Ubuntu</title>
		<link>http://dainaccio.wordpress.com/2010/06/23/automatica-e-controlli-automatici-con-octave-su-ubuntu/</link>
		<comments>http://dainaccio.wordpress.com/2010/06/23/automatica-e-controlli-automatici-con-octave-su-ubuntu/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:46:12 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[bode]]></category>
		<category><![CDATA[controllo automatico]]></category>
		<category><![CDATA[fondamenti di automatica]]></category>
		<category><![CDATA[funzione di trasferimento]]></category>
		<category><![CDATA[luogo delle radici]]></category>
		<category><![CDATA[nyquist]]></category>
		<category><![CDATA[octave]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=323</guid>
		<description><![CDATA[Un must per gli scienziati del Controllo Automatico è rappresentato da Matlab, un software molto utile e versatile ma proprietario. Avendo solo umili esigenze, ho imparato come ottenere esiti equivalenti con programmi open. La scelta è ricaduta su Octave, presente nei repository Ubuntu, a cui va aggiunto il modulo &#8220;Control&#8221;, non installato di default: sudo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=323&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://dainaccio.files.wordpress.com/2010/06/schermata-2.png"><img class="size-medium wp-image-324 aligncenter" title="Octave Bode" src="http://dainaccio.files.wordpress.com/2010/06/schermata-2.png?w=430" alt="" /></a></p>
<p>Un <em>must</em> per gli scienziati del <a href="http://it.wikipedia.org/wiki/Controllo_automatico">Controllo Automatico</a> è rappresentato da Matlab, un software molto utile e versatile ma proprietario.</p>
<p>Avendo solo umili esigenze, ho imparato come ottenere esiti equivalenti con programmi open.<br />
La scelta è ricaduta su <a href="http://www.octave.org">Octave</a>, presente nei repository Ubuntu, a cui va aggiunto il modulo &#8220;Control&#8221;, non installato di default:</p>
<p><code>sudo apt-get install octave3.2 octave-control</code></p>
<p>Per utilizzarlo basta aprire un terminale e digitare &#8220;octave&#8221;.<br />
Ecco una lista di comandi di riferimento (<em>help comando</em> per maggiori informazioni):</p>
<p><strong>Definizioni di un sistema:</strong><br />
Funzione di trasferimento:<br />
<code>G = tf([1 -1],[1 5 2]);</code><br />
Zeri e poli:<br />
<code>G = zp([1],[-1 -1 -13/5], 1);</code></p>
<p><strong>Grafici vari:</strong><br />
Luogo delle radici:<br />
<code>rlocus(G);</code><br />
Risposta in frequenza (Diagramma di Bode):<br />
<code>bode(G);</code><br />
Diagramma di Nyquist:<br />
<code>nyquist(G);</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=323&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2010/06/23/automatica-e-controlli-automatici-con-octave-su-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2010/06/schermata-2.png?w=430" medium="image">
			<media:title type="html">Octave Bode</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu e Nautilus: aprire un terminale nella cartella corrente</title>
		<link>http://dainaccio.wordpress.com/2009/06/02/ubuntu-e-nautilus-aprire-un-terminale-nella-cartella-corrente/</link>
		<comments>http://dainaccio.wordpress.com/2009/06/02/ubuntu-e-nautilus-aprire-un-terminale-nella-cartella-corrente/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 16:21:23 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Migliorie]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Nautilus]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=317</guid>
		<description><![CDATA[Avere un terminale a disposizione può sempre essere utile, se poi punta direttamente alla cartella corrente tanto meglio. Ecco quindi come ottenere la funzione &#8220;Apri un terminale&#8221;, direttamente nel menù del tasto destro di Nautilus. sudo apt-get install nautilus-open-terminal<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=317&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-319 aligncenter" title="apriterminale" src="http://dainaccio.files.wordpress.com/2009/05/apriterminale.png?w=470" alt="apriterminale"   /></p>
<p style="text-align:center;">
<p style="text-align:left;">Avere un terminale a disposizione può sempre essere utile, se poi punta direttamente alla cartella corrente tanto meglio.<br />
Ecco quindi come ottenere la funzione &#8220;Apri un terminale&#8221;, direttamente nel menù del tasto destro di Nautilus.</p>
<p><code>sudo apt-get install nautilus-open-terminal</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/317/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=317&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2009/06/02/ubuntu-e-nautilus-aprire-un-terminale-nella-cartella-corrente/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>

		<media:content url="http://dainaccio.files.wordpress.com/2009/05/apriterminale.png" medium="image">
			<media:title type="html">apriterminale</media:title>
		</media:content>
	</item>
		<item>
		<title>Basta password in Ubuntu</title>
		<link>http://dainaccio.wordpress.com/2009/02/07/basta-password-in-ubuntu/</link>
		<comments>http://dainaccio.wordpress.com/2009/02/07/basta-password-in-ubuntu/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 22:47:38 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Migliorie]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[visudo]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=313</guid>
		<description><![CDATA[Capisco le buone motivazioni di sicurezza che stanno dietro la richiesta della password per qualsiasi operazione un po&#8217; più &#8220;delicata&#8221;&#8230; ma per chi, come me, ha guadagnato una certa dimestichezza con i sistemi GNU/Linux Ubuntu, si tratta solo di una inutile scocciatura, che si presenta ogni talvolta si voglia installare un nuovo programma o andare [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=313&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Capisco le buone motivazioni di sicurezza che stanno dietro la richiesta della password per qualsiasi operazione un po&#8217; più &#8220;delicata&#8221;&#8230; ma per chi, come me, ha guadagnato una certa dimestichezza con i sistemi GNU/Linux Ubuntu, si tratta solo di una inutile scocciatura, che si presenta ogni talvolta si voglia installare un nuovo programma o andare a modificare qualche opzione di sistema.</p>
<p>Ritengo che la password di accesso sia più che sufficiente per proteggere il mio computer, una volta effettuato il login non voglio più dover &#8220;dimostrare&#8221; la mia identità.</p>
<p>Ecco quindi come fare per eliminare le ulteriori richieste di parola segreta:</p>
<ul>
<li>Aprire un Terminale (Applicazioni -&gt; Accessori -&gt; Terminale).</li>
<li>Scrivere e quindi lanciare &#8220;sudo visudo&#8221;</li>
<li>Scorrere la schermata fino a raggiungere le seguenti linee e una volta trovate accertarsi siano uguali a queste:<br />
<em># Members of the admin group may gain root privileges<br />
%admin ALL=NOPASSWD: ALL</em></li>
<li>Salvare:<br />
-Premere ctrl + o<br />
-Controllare che il nome sia &#8220;/etc/sudoers&#8221; (senza.tmp alla fine)<br />
-Premere invio e rispondere S alla conferma di sovrascrittura.<br />
-Premere ctrl + x per uscire</li>
</ul>
<p>Riavviare per rendere effettive le modifiche</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=313&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2009/02/07/basta-password-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>
	</item>
		<item>
		<title>Università Padana</title>
		<link>http://dainaccio.wordpress.com/2008/12/06/universita-padana/</link>
		<comments>http://dainaccio.wordpress.com/2008/12/06/universita-padana/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 16:28:12 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Fesserie]]></category>
		<category><![CDATA[bossi]]></category>
		<category><![CDATA[lega nord]]></category>
		<category><![CDATA[pdl]]></category>
		<category><![CDATA[renzo bossi]]></category>
		<category><![CDATA[ricerca]]></category>
		<category><![CDATA[tagli]]></category>
		<category><![CDATA[tremonti]]></category>
		<category><![CDATA[università]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=53</guid>
		<description><![CDATA[Dove andranno ad istruirsi i giovani leghisti, ora che l&#8217;università pubblica è stata assassinata ? Trapelano già le prime voci riguardo un nuovo ateneo privato che offrirà un corso di laurea su misura per le giovani menti lega-nordiste. Rigorosamente tenuto da professori autoctoni. Ecco in anteprima una bozza del piano di studi: Primo anno Elementi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=53&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dove andranno ad istruirsi i giovani leghisti, ora che l&#8217;università pubblica è stata assassinata ?</p>
<p>Trapelano già le prime voci riguardo un nuovo ateneo privato che offrirà un corso di laurea su misura per le giovani menti lega-nordiste. Rigorosamente tenuto da professori autoctoni.<br />
Ecco in anteprima una bozza del piano di studi:</p>
<p><strong>Primo anno</strong><br />
<em>Elementi di Alchimia e Pozioni (11 crediti)<br />
Storia dei Druidi (9 crediti)<br />
Fondamenti di Polenta 1 (10 crediti)<br />
Base di Insulti Padani (10 crediti)<br />
Culto del Po ( 3 crediti)<br />
Storia dei Federalismi (11 crediti)</em></p>
<p><strong>Secondo Anno</strong><br />
<em>Pozioni e intrugli complessi (9 crediti)<br />
Tecnica delle Armi da Fuoco (7 crediti)<br />
Teoria della retorica Razzista (9 crediti)<br />
Laboratorio di tiro (7 crediti)<br />
Fondamenti di Polenta 2 (10 crediti)<br />
Elementi del cerimoniale druido (4 crediti)</em></p>
<p><strong>Terzo anno</strong><br />
<em>Laboratorio di Porcate (7 crediti)<br />
Elementi di ignoranza applicata (9 crediti)<br />
Tattiche e strategie della Ronda (7 crediti)<br />
Dottrina Celtica (5 crediti)<br />
Rituali celtici avanzati (7 crediti)<br />
Traduzione delle Rune (11 crediti)<br />
Applicazioni di Revisionismo Storico (7 crediti)</em></p>
<p>Ci vorranno ancora degli anni prima dell&#8217;avvio della didattica ma i dirigenti sono tranquilli. Il primo studente iscritto, <a href="http://ricerca.repubblica.it/repubblica/archivio/repubblica/2008/11/30/bossi-jr-maturita-infinita-bocciato-per-la.html">Renzo Bossi</a>, non sembra avere fretta.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=53&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2008/12/06/universita-padana/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>
	</item>
		<item>
		<title>Johnny N. Mos</title>
		<link>http://dainaccio.wordpress.com/2008/11/24/johnny-n-mos/</link>
		<comments>http://dainaccio.wordpress.com/2008/11/24/johnny-n-mos/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 12:26:15 +0000</pubDate>
		<dc:creator>Dainaccio</dc:creator>
				<category><![CDATA[Elettronica]]></category>
		<category><![CDATA[chuck berry]]></category>
		<category><![CDATA[circuito integrato]]></category>
		<category><![CDATA[integrated circuit. cpu]]></category>
		<category><![CDATA[mosfet]]></category>
		<category><![CDATA[nmos]]></category>
		<category><![CDATA[silicio]]></category>
		<category><![CDATA[silicon]]></category>

		<guid isPermaLink="false">http://dainaccio.wordpress.com/?p=300</guid>
		<description><![CDATA[Ecco cosa succede a scrivere relazioni di Elettronica mentre si ascolta Chuck Berry: Laggiù in quella piastra di silicio, al centro sporco di boro e arsenio, assieme ad altri cento dove le piste entravan in quella giunzione c&#8217;era Johnny enneMos, della conduttività il campione Era solo un semiconduttore variamente drogato ma da scienziati ed ingegneri [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=300&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">Ecco cosa succede a scrivere relazioni di Elettronica mentre si ascolta Chuck Berry:</p>
<p style="text-align:center;">
<p style="text-align:center;"><em>Laggiù in quella <a href="http://it.wikipedia.org/wiki/Die_(elettronica)">piastra di silicio</a>, al centro<br />
<a href="http://it.wikipedia.org/wiki/Drogaggio">sporco di boro e arsenio</a>, assieme ad altri cento<br />
dove le piste entravan in quella giunzione<br />
c&#8217;era Johnny <a href="http://it.wikipedia.org/wiki/MOSFET">enneMos</a>, della conduttività il campione<br />
Era solo un <a href="http://it.wikipedia.org/wiki/Fabbricazione_dei_dispositivi_a_semiconduttore">semiconduttore variamente drogato</a><br />
ma da scienziati ed ingegneri era molto stimato<br />
</em></p>
<p style="text-align:center;">Go Go, Go Johnny Go Go Go,<br />
Go Johnny Go Go Go,<br />
Johnny N Mos</p>
<p style="text-align:center;"><em>Era solito creare un bel effetto di campo<br />
alla prima <a href="http://it.wikipedia.org/wiki/MOSFET#Zone_di_lavoro_del_MOSFET">tensione al gate</a>, si accendeva in un lampo<br />
E gli altri transistor, delle porte più lente<br />
si fermavano a guardare, tutta quella corrente<br />
Tutti i <a href="http://it.wikipedia.org/wiki/Transistor_a_giunzione_bipolare">BJT</a> urlavan: &#8220;Oh dannazione !<br />
chissà cos&#8217;è capace quando è in saturazione !&#8221;</em></p>
<p style="text-align:center;"><em>Sua mamma gli disse: &#8220;Un giorno sarai <a href="http://it.wikipedia.org/wiki/MOSFET#La_supremazia_dei_MOSFET">il re dei bit</a><br />
Magari integrato in un <a href="http://it.wikipedia.org/wiki/Trigger_di_Schmitt">trigger di Schmitt</a>&#8220;<br />
Invidia di tutte quante le <a href="http://it.wikipedia.org/wiki/Algebra_di_Boole">funzioni di Boole</a><br />
avrai un <a href="http://it.wikipedia.org/wiki/Dissipatore_(elettronica)">dissipatore</a> per esser tu, il più cool<br />
e spinto <a href="http://it.wikipedia.org/wiki/Velocit%C3%A0_di_clock">a frequenze di lavoro</a> inaudite<br />
aiuterai nel calcolo una montagna di vite.</em></p>
<p style="text-align:left;">e ora devo solo chiudermi in uno studio di registrazione e inciderla <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .<em><br />
</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dainaccio.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dainaccio.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dainaccio.wordpress.com/300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dainaccio.wordpress.com&amp;blog=2094755&amp;post=300&amp;subd=dainaccio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dainaccio.wordpress.com/2008/11/24/johnny-n-mos/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f55784717646ea26d981909d673cd030?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Dainaccio</media:title>
		</media:content>
	</item>
	</channel>
</rss>
