<?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/"
	>

<channel>
	<title>O Blog do Gustavo Felisberto &#187; Gentoo</title>
	<atom:link href="http://blog.felisberto.net/category/cinciatecnologia/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.felisberto.net</link>
	<description>Life, the universe and all the rest</description>
	<lastBuildDate>Tue, 15 Mar 2011 11:57:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Oracle buys SUN</title>
		<link>http://blog.felisberto.net/2009/04/21/oracle-buys-sun/</link>
		<comments>http://blog.felisberto.net/2009/04/21/oracle-buys-sun/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 13:44:11 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Geral]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1522</guid>
		<description><![CDATA[Oracle bought Sun. The question in most of the Free Software advocates right now is what will happen to Suns Free Software products: 1- MySQL 2- OpenOffice 3- Netbeans 4- &#8230;&#8230; Although MySQL seems the first candidate to die I guess this is one of the products with the best chance to survive*. Databases is [...]]]></description>
			<content:encoded><![CDATA[<a href="http://http://developers.slashdot.org/article.pl?sid=09/04/20/128246"><span class="dropcap">O</span>racle bought Sun</a>.</p>
<p>The question in most of the Free Software advocates right now is what will happen to Suns Free Software products:<br />
1- MySQL<br />
2- OpenOffice<br />
3- Netbeans<br />
4- &#8230;&#8230;</p>
<p>Although MySQL seems the first candidate to die I guess this is one of the products with the best chance to survive*. Databases is the core business for Oracle so they will probably keep the product and in time make it more Oracle friendly. So that users that develop for MySQL can easily migrate to Oracle when requirements increase.<br />
Right now Oracle has the Oracle Express Edition but installation is sometimes complex and the limitations to the CPU/Memory/Disk Space make some developers run away. PostgreSQL is very good, but does not have the momentum. So MySQL is not a brand that any company wants to kill.</p>
<p>* &#8211; The Free Software products always have a chance to survive if the &#8220;Mother Company&#8221; kills them. The community can always pick the product and develop it. That is one of the base ideas that made Stallman create the concept. But it is always easier for a product to survive if there is a cash flow of some sort.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/04/21/oracle-buys-sun/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Vmware keyboard issues</title>
		<link>http://blog.felisberto.net/2009/04/01/vmware-keyboard-issues/</link>
		<comments>http://blog.felisberto.net/2009/04/01/vmware-keyboard-issues/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 16:22:16 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1508</guid>
		<description><![CDATA[I&#8217;m running Windows XP inside vmware. The host machine is running Linux (Ubuntu jaunty). I was having issues with the keyboard where the arrow keys would not work, or would do the wrong thing (down key would open the start menu). I found a solution that involved editing ~/.vmware/config and add a line like: xkeymap.nokeycodeMap [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">I</span>&#8217;m running Windows XP inside vmware. The host machine is running Linux (Ubuntu jaunty). I was having issues with the keyboard where the arrow keys would not work, or would do the wrong thing (down key would open the start menu).</p>
<p>I found a solution that involved editing <code>~/.vmware/config</code> and add a line like:<br />
<code>xkeymap.nokeycodeMap = true</code><br />
But this would not work properly as Vmware would think I had a Japanese keyboard and some keys would not work.</p>
<p>I found another solution and this one seems to be working fine. Instead of the previous code add this to your <code> ~/.vmware/config</code>:</p>
<p><code>xkeymap.keycode.108 = 0x138 # Alt_R<br />
xkeymap.keycode.106 = 0x135 # KP_Divide<br />
xkeymap.keycode.104 = 0x11c # KP_Enter<br />
xkeymap.keycode.111 = 0x148 # Up<br />
xkeymap.keycode.116 = 0x150 # Down<br />
xkeymap.keycode.113 = 0x14b # Left<br />
xkeymap.keycode.114 = 0x14d # Right<br />
xkeymap.keycode.105 = 0x11d # Control_R<br />
xkeymap.keycode.118 = 0x152 # Insert<br />
xkeymap.keycode.119 = 0x153 # Delete<br />
xkeymap.keycode.110 = 0x147 # Home<br />
xkeymap.keycode.115 = 0x14f # End<br />
xkeymap.keycode.112 = 0x149 # Prior<br />
xkeymap.keycode.117 = 0x151 # Next<br />
xkeymap.keycode.78 = 0x46 # Scroll_Lock<br />
xkeymap.keycode.127 = 0x100 # Pause<br />
xkeymap.keycode.133 = 0x15b # Meta_L<br />
xkeymap.keycode.134 = 0x15c # Meta_R<br />
xkeymap.keycode.135 = 0x15d # Menu</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/04/01/vmware-keyboard-issues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Life</title>
		<link>http://blog.felisberto.net/2009/02/23/new-life-2/</link>
		<comments>http://blog.felisberto.net/2009/02/23/new-life-2/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 01:05:42 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Jornalismo]]></category>
		<category><![CDATA[Laura]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1500</guid>
		<description><![CDATA[Laura: Chegaste no dia 21 a este mundo. Não tenho palavras para descrever o que senti quando te vi e peguei pela primeira vez, mas consigo dizer que foi a melhor sensação do mundo. Raquel: Chegou a nossa filha&#8230;.. Chegou a nossa filha&#8230;.. A todos os leitores: Estou aqui a olhar para o écran e [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">L</span>aura:<br />
Chegaste no dia 21 a este mundo. Não tenho palavras para descrever o que senti quando te vi e peguei pela primeira vez, mas consigo dizer que foi a melhor sensação do mundo.</p>
<p>Raquel:<br />
Chegou a nossa filha&#8230;.. Chegou a nossa filha&#8230;..</p>
<p>A todos os leitores:<br />
Estou aqui a olhar para o écran e não sei o que escrever. Nada me parece correcto. Tudo me parece demasiado pequeno ao pé desta sensação forte cá dentro que me faz o cérebro parar. Digam só uma coisa a este pai babádo&#8230;. Não é a bebé mais bonita que já viram?<br />
<a href="http://blog.felisberto.net/wp-content/uploads/2009/02/dsc_0510-800.jpg"><br />
<img src="http://blog.felisberto.net/wp-content/uploads/2009/02/dsc_0510-800.jpg" alt="dsc_0510-800" title="Laura dia 2" width="800" height="536" class="alignnone size-full wp-image-1499" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/02/23/new-life-2/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Betta Fish</title>
		<link>http://blog.felisberto.net/2009/01/25/betta-fish/</link>
		<comments>http://blog.felisberto.net/2009/01/25/betta-fish/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 22:15:09 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Desporto]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Geral]]></category>
		<category><![CDATA[Jornalismo]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1475</guid>
		<description><![CDATA[This beatifull fish is now mine. But it was breed by Martinho Brazão. If you are looking for Betta fish you can be sure his fish will be sent in very good packaging.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">T</span>his beatifull fish is now mine. But it was breed by <a href="http://bettamadeira.blogspot.com/">Martinho Brazão</a>. If you are looking for Betta fish you can be sure his fish will be sent in very good packaging.<br />
<a href="http://blog.felisberto.net/wp-content/uploads/2009/01/dsc_0477-tratada-pequena.jpg"><br />
<img src="http://blog.felisberto.net/wp-content/uploads/2009/01/dsc_0477-tratada-pequena.jpg" alt="My Betta" title="My Betta" width="300" height="201" class="alignnone size-medium wp-image-1482" /> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/01/25/betta-fish/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone to thunderbird+lightning</title>
		<link>http://blog.felisberto.net/2009/01/13/iphone-to-thunderbirdlightning/</link>
		<comments>http://blog.felisberto.net/2009/01/13/iphone-to-thunderbirdlightning/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 13:00:55 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Geral]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1469</guid>
		<description><![CDATA[Apple should add thunderbird+lightning support to at least iTunes on Windows. Not every windows user has Outlook installed. Right now almost all options to do this include some extra softwares (jailbroken iPhone) or thunderbird plugins and Google accounts. And I may not want my data in Google. If you do not mind having data in [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>pple should add thunderbird+lightning support to at least iTunes on Windows. Not every windows user has Outlook installed.</p>
<p>Right now almost all options to do this include some extra softwares (jailbroken iPhone) or thunderbird plugins and Google accounts. And I may not want my data in Google.<br />
If you do not mind having data in Google read on. Right now I just want to sync Calendar events. </p>
<p>As I need to have data synced I&#8217;ll post my findings were. So stay tunned.<br />
[UPDATE 2009-02-10]<br />
<strong>All this syncing is dangerous.</strong> The iPhone will delete all contacts and/or calendar events on the phone when adding a external sync.</p>
<p>Two solutions so far for Contacts and Calendar:</p>
<p>1- Get your company to install Exchange or one of the Free Software alternatives. And then just add the account on the iPhone and search for info on how to get Lightning to get the data from there.</p>
<p><strong>[New Update 2009-02-15 15:17]</strong> There is no need to use the Nuevasync Service<br />
2- This is the one I use. It involves having a Google Calendar account and Sync the iPhone and Lightning there. In the iPhone follow the instructions in the <a href="http://www.google.com/support/mobile/bin/answer.py?answer=138740&#038;topic=14252">Google Mobile Sync</a> page. To have Lightning use the calendar just add a new Calendar of <strong>type CalDAV</strong> and in the url put: https://www.google.com/calendar/dav/YOUREACCOUNT@gmail.com/events . </p>
<p>There is no &#8220;Sync now&#8221; and events will be propagated auto-magically. In my case if I have calendar open on the iPhone and add events in Lightning they propagate in 3 to 5 seconds.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/01/13/iphone-to-thunderbirdlightning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use the Wiimote writs band&#8230;. Always</title>
		<link>http://blog.felisberto.net/2008/12/16/wii/</link>
		<comments>http://blog.felisberto.net/2008/12/16/wii/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:15:00 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[wiimote]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1461</guid>
		<description><![CDATA[Why you should use the Wiimote writs band at all times:]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">W</span>hy you should use the Wiimote writs band at all times:</p>
<p><embed src='http://www.fandome.com/flashplayer/sportsbox.swf' height='391' width='494' bgcolor='234463' allowscriptaccess='always' allowfullscreen='true' flashvars='volume=100&#038;backcolor=234463&#038;frontcolor=FFFFFF&#038;lightcolor=B7B7B7&#038;logo=http%3A%2F%2Fwww.fandome.com%2Fimg%2Fwatermark.png&#038;state=BUFFERING&#038;stretching=exactfit&#038;link=http%3A%2F%2Fwww.fandome.com%2Fvideo%2F107595%2FAnother-Wii-Sports-Casualty%2F&#038;autostart=false&#038;file=http%3A%2F%2Fs3.amazonaws.com%2Flazyjock%2F107595.flv&#038;plugins=viral-1,googlytics-1'/></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2008/12/16/wii/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Home</title>
		<link>http://blog.felisberto.net/2008/11/16/new-home/</link>
		<comments>http://blog.felisberto.net/2008/11/16/new-home/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 02:47:01 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Gentoo-dev]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1452</guid>
		<description><![CDATA[After many years running on my home server this blog is now hosted at lylix. I went to them because it was the only Gentoo/Funtoo VPS provider I could find:) If something does not work, please drop me a note]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>fter many years running on my home server this blog is now hosted at <a href="http://lylix.net">lylix</a>. I went to them because it was the only Gentoo/Funtoo VPS provider I could find:)</p>
<p>If something does not work, please drop me a note <img src='http://blog.felisberto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2008/11/16/new-home/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>20 weeks, It&#8217;s a Girl</title>
		<link>http://blog.felisberto.net/2008/10/27/20-weeks-its-a-girl/</link>
		<comments>http://blog.felisberto.net/2008/10/27/20-weeks-its-a-girl/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:58:41 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Geral]]></category>
		<category><![CDATA[daughter]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[Laura]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1430</guid>
		<description><![CDATA[20 Weeks and we now know that were having a girl. We&#8217;ll name her Laura, and as you can see from the picture she has a beautiful nose&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.felisberto.net/wp-content/uploads/2008/10/eco_20semanas_menina.jpg"><img src="http://blog.felisberto.net/wp-content/uploads/2008/10/eco_20semanas_menina-224x300.jpg" alt="" title="eco_20semanas_menina" width="224" height="300" class="aligncenter size-medium wp-image-1429" /></a></p>
<p>20 Weeks and we now know that were having a girl. We&#8217;ll name her Laura, and as you can see from the picture she has a beautiful nose&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2008/10/27/20-weeks-its-a-girl/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>A Wiki for Gentoo</title>
		<link>http://blog.felisberto.net/2008/10/21/a-wiki-for-gentoo/</link>
		<comments>http://blog.felisberto.net/2008/10/21/a-wiki-for-gentoo/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 22:40:57 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Gentoo-dev]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1427</guid>
		<description><![CDATA[A long long time ago I voiced about the need for a wiki in the Gentoo project. In those days Gentoo-Wiki was starting up. For some reason or other people inside the project felt that having the users producing documentation was a bad idea. For some other reasons that I never understood the gentoo-wiki.com becamed [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span> long long time ago I voiced about the need for a wiki in the Gentoo project. In those days Gentoo-Wiki was starting up.<br />
For some reason or other people inside the project felt that having the users producing documentation was a bad idea. For some other reasons that I never understood the gentoo-wiki.com becamed a banned issue, and Gentoo developers were advised not to mention, and not to link to him. I wrote an extensive article about Gentoo on the <a href="http://www.genesi-usa.com/efika.php">Efika board</a> that got some raised eyebrows because it was written on the Wiki.</p>
<p>Now <a href="http://gentoo-wiki.com/">Gentoo Wiki</a> has been down for a few days. And according to the backup page it does not seem a fix is going to happen soon.</p>
<p>If we had taken this project under an umbrella a long time ago our users would not be missing on this very important resource.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2008/10/21/a-wiki-for-gentoo/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>The powerfull new VT100</title>
		<link>http://blog.felisberto.net/2008/10/16/the-powerfull-new-vt100/</link>
		<comments>http://blog.felisberto.net/2008/10/16/the-powerfull-new-vt100/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 10:09:18 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Arte]]></category>
		<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1421</guid>
		<description><![CDATA[My friend L0rd Saur0n made this nice retro chick image. I found it so hilarious that I just had to share.]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">M</span>y friend <a href="http://l0rd-saur0n.deviantart.com/">L0rd Saur0n</a> made this nice retro chick image. I found it so hilarious that I just had to share.</p>
<div id="attachment_1422" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.felisberto.net/wp-content/uploads/2008/10/retro.jpg"><img src="http://blog.felisberto.net/wp-content/uploads/2008/10/retro-300x214.jpg" alt="VT100" title="VT100" width="300" height="214" class="size-medium wp-image-1422" /></a><p class="wp-caption-text">VT100 in Bright Green</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2008/10/16/the-powerfull-new-vt100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

