<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>O Blog do Gustavo Felisberto</title>
	
	<link>http://blog.felisberto.net</link>
	<description>Life, the universe and all the rest</description>
	<lastBuildDate>Mon, 29 Jun 2009 00:06:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/OBlogDoGustavoFelisberto" type="application/rss+xml" /><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/OBlogDoGustavoFelisberto" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FOBlogDoGustavoFelisberto" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Convert video to iPhone/iPod Touch using ffmpeg</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/U2CUyMeeqY4/</link>
		<comments>http://blog.felisberto.net/2009/06/29/convert-video-to-iphoneipod-touch-using-ffmpeg/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 00:06:31 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1537</guid>
		<description><![CDATA[If you search for this topic you will find some examples of using ffmpeg to convert movies to a format that will work with the iPhone. I am a Linux user so I did not had much usage for this because there is no iTunes in linux   Until I needed to stream videos [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">I</span>f you search for this topic you will find some examples of using ffmpeg to convert movies to a format that will work with the iPhone. I am a Linux user so I did not had much usage for this because there is no iTunes in linux <img src='http://blog.felisberto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Until I needed to stream videos to the iPhone. Right now I&#8217;m using wowza for the actual streaming that involves creating a special playlist that will tell the iPhone how to get the file from the server. But that is another story.</p>
<p>So the actual ffmpeg command I&#8217;m using is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-threads</span> <span style="color: #000000;">2</span> <span style="color: #660033;">-i</span> INPUT_FILE <span style="color: #660033;">-r</span> <span style="color: #000000;">20</span>  <span style="color: #660033;">-vcodec</span> libx264 <span style="color: #660033;">-s</span> 320x240 <span style="color: #660033;">-flags</span> +loop \
<span style="color: #660033;">-cmp</span> +chroma <span style="color: #660033;">-deblockalpha</span> <span style="color: #000000;">0</span> <span style="color: #660033;">-deblockbeta</span> <span style="color: #000000;">0</span> <span style="color: #660033;">-crf</span> <span style="color: #000000;">24</span>  <span style="color: #660033;">-bt</span> 256k <span style="color: #660033;">-refs</span> <span style="color: #000000;">1</span> <span style="color: #660033;">-coder</span> <span style="color: #000000;">0</span> \ 
-me_range <span style="color: #000000;">16</span> <span style="color: #660033;">-subq</span> <span style="color: #000000;">5</span> <span style="color: #660033;">-partitions</span> +parti4x4+parti8x8+partp8x8 <span style="color: #660033;">-g</span> <span style="color: #000000;">250</span>  \
-keyint_min <span style="color: #000000;">25</span> <span style="color: #660033;">-level</span> <span style="color: #000000;">30</span> <span style="color: #660033;">-qmin</span> <span style="color: #000000;">10</span> <span style="color: #660033;">-qmax</span> <span style="color: #000000;">51</span> <span style="color: #660033;">-trellis</span> <span style="color: #000000;">2</span> -sc_threshold <span style="color: #000000;">40</span> \
-i_qfactor <span style="color: #000000;">0.71</span> <span style="color: #660033;">-acodec</span> libfaac  <span style="color: #660033;">-ab</span> 128k <span style="color: #660033;">-ar</span> <span style="color: #000000;">48000</span> <span style="color: #660033;">-ac</span> <span style="color: #000000;">2</span> OUTPUT_FILE</pre></div></div>

<p>So what does all this mean? I am no ffmpeg expert but I&#8217;ll try to give an explanation. If you can fill the gaps please post a reply.</p>
<ul>
<li><strong>-threads 2</strong> Number of threads ffmpeg will use. This should be the number of cores in your system</li>
<li><strong>-i INPUT_FILE</strong> The path to the file you want to convert</li>
<li><strong>-r 20</strong> The frame rate of the converted file. This should be the same as the input file. A lower value means a smaller file</li>
<li><strong>-vcodec libx264</strong> Codec of the output file. This means that output will be a H264 Mpeg4 file</li>
<li><strong>-s 320&#215;240</strong> Resolution of the output. Should not exceed the input file. In any case remember that iPhone resolution is: 480&#215;320 </li>
<li><strong>-acodec libfaac  -ab 128k -ar 48000 -ac 2</strong> Audio format. AAC audio with 128kbits bitrate, with 48000Hz sample rate and 2 channels. Lower values will give smaller files and less quality.</li>
</ul>
<p>If you know what the others do anf how do they affect the quality/size please post.</p>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/U2CUyMeeqY4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/06/29/convert-video-to-iphoneipod-touch-using-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/06/29/convert-video-to-iphoneipod-touch-using-ffmpeg/</feedburner:origLink></item>
		<item>
		<title>Um ano</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/mxLJhpVJVQk/</link>
		<comments>http://blog.felisberto.net/2009/06/15/um-ano/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 22:36:49 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1533</guid>
		<description><![CDATA[Fez ontem um ano.
]]></description>
			<content:encoded><![CDATA[<a href="http://www.joseraposo.com/photoblog/?p=987"><span class="dropcap">F</span>ez ontem um ano.</a></p>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/mxLJhpVJVQk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/06/15/um-ano/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/06/15/um-ano/</feedburner:origLink></item>
		<item>
		<title>Dia da Criança</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/e-eWg4DmgIk/</link>
		<comments>http://blog.felisberto.net/2009/06/01/dia-da-crianca/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 11:10:02 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Geral]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[Laura]]></category>
		<category><![CDATA[son]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1528</guid>
		<description><![CDATA[Laura:
Hoje é dia da criança. Um dia criado para que nós os grandes nos lembremos dos mais pequeninos. Como se fosse preciso um dia! Deveria ser nossa preocupação todos os dias os mais pequenos de entre nós. São vocês o futuro do mundo.
Hoje quando passei no teu berço dormias. Estava ali a ver-te há uns [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">L</span>aura:</p>
<p>Hoje é dia da criança. Um dia criado para que nós os grandes nos lembremos dos mais pequeninos. Como se fosse preciso um dia! Deveria ser nossa preocupação todos os dias os mais pequenos de entre nós. São vocês o futuro do mundo.</p>
<p>Hoje quando passei no teu berço dormias. Estava ali a ver-te há uns segundos quando abriste os olhos e olhaste para mim. Não sei se foi só a fominha a apertar ou se te estavas a sentir observada. Sorri para ti e tu devolveste o sorriso. Obrigado filha.</p>
<p>Bom dia Laurinha. Bom dia meu doce. Bom dia meu amor.</p>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/e-eWg4DmgIk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/06/01/dia-da-crianca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/06/01/dia-da-crianca/</feedburner:origLink></item>
		<item>
		<title>Oracle buys SUN</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/WsssiuD_rEg/</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 the core business for Oracle so [...]]]></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>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/WsssiuD_rEg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/04/21/oracle-buys-sun/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/04/21/oracle-buys-sun/</feedburner:origLink></item>
		<item>
		<title>OSX Dependency walker</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/KC9_EGF6vE0/</link>
		<comments>http://blog.felisberto.net/2009/04/15/osx-dependency-walker/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 14:32:20 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Ciência/Tecnologia]]></category>
		<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1515</guid>
		<description><![CDATA[It is not as nice as Windows &#8220;depends&#8221; but does the job:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env ruby
&#160;
paths = &#91;ARGV&#91;0&#93;&#93;
libs = &#123; ARGV&#91;0&#93; =&#62; 1 &#125;
&#160;
while paths.size &#62; 0 do
    path = paths.pop
    lines = `otool -L '#{path}'`.split&#40;&#34;\n&#34;&#41;&#91;2..-1&#93;
    new_libs = lines.collect do &#124;line&#124;
    line =~ /\s+&#40;.*&#41;\s+\&#40;.*\&#41;\s*/
   [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">I</span>t is not as nice as Windows &#8220;depends&#8221; but does the job:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">#!/usr/bin/env ruby</span>
&nbsp;
paths = <span style="color:#006600; font-weight:bold;">&#91;</span>ARGV<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#93;</span>
libs = <span style="color:#006600; font-weight:bold;">&#123;</span> ARGV<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006666;">1</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">while</span> paths.<span style="color:#9900CC;">size</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> <span style="color:#9966CC; font-weight:bold;">do</span>
    path = paths.<span style="color:#9900CC;">pop</span>
    lines = <span style="color:#996600;">`otool -L '#{path}'`</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;<span style="color:#000099;">\n</span>&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#91;</span>2..<span style="color:#006600; font-weight:bold;">-</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    new_libs = lines.<span style="color:#9900CC;">collect</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>line<span style="color:#006600; font-weight:bold;">|</span>
    line =~ <span style="color:#006600; font-weight:bold;">/</span>\s<span style="color:#006600; font-weight:bold;">+</span><span style="color:#006600; font-weight:bold;">&#40;</span>.<span style="color:#006600; font-weight:bold;">*</span><span style="color:#006600; font-weight:bold;">&#41;</span>\s<span style="color:#006600; font-weight:bold;">+</span>\<span style="color:#006600; font-weight:bold;">&#40;</span>.<span style="color:#006600; font-weight:bold;">*</span>\<span style="color:#006600; font-weight:bold;">&#41;</span>\s<span style="color:#006600; font-weight:bold;">*/</span>
    $<span style="color:#006666;">1</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
    new_libs.<span style="color:#9900CC;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>lib<span style="color:#006600; font-weight:bold;">|</span>
        <span style="color:#9966CC; font-weight:bold;">if</span> libs<span style="color:#006600; font-weight:bold;">&#91;</span>lib<span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#9966CC; font-weight:bold;">then</span>
            libs<span style="color:#006600; font-weight:bold;">&#91;</span>lib<span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">+</span>= <span style="color:#006666;">1</span>
        <span style="color:#9966CC; font-weight:bold;">else</span>
            libs<span style="color:#006600; font-weight:bold;">&#91;</span>lib<span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#006666;">1</span>
            paths <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006600; font-weight:bold;">&lt;</span> lib
        <span style="color:#9966CC; font-weight:bold;">end</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> libs.<span style="color:#9900CC;">keys</span>.<span style="color:#9900CC;">sort</span>.<span style="color:#9900CC;">join</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;<span style="color:#000099;">\n</span>&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span></pre></td></tr></table></div>

<p>Credit for finding this at <a href="http://www.idevapps.com/forum/archive/index.php/t-5735.html">idevapps</a>goes to <a href="http://www.0xff.net/">Armindo</a></pre>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/KC9_EGF6vE0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/04/15/osx-dependency-walker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/04/15/osx-dependency-walker/</feedburner:origLink></item>
		<item>
		<title>Vmware keyboard issues</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/SWqAOZ1eqMc/</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 = true
But [...]]]></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>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/SWqAOZ1eqMc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/04/01/vmware-keyboard-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/04/01/vmware-keyboard-issues/</feedburner:origLink></item>
		<item>
		<title>New Life</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/fIJaJgpe3I4/</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 não sei o que escrever. [...]]]></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>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/fIJaJgpe3I4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/02/23/new-life-2/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/02/23/new-life-2/</feedburner:origLink></item>
		<item>
		<title>iPhone MMS</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/7tD3rxaqflw/</link>
		<comments>http://blog.felisberto.net/2009/02/11/iphone-mms/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 17:35:44 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1491</guid>
		<description><![CDATA[An application that sends and receives MMS messages is now available for you&#8217;re iPhone. There is no need to have a Jailbroken iPhone as the application is available from Apple Store. Right now the application only works for clients of Vodafone Portugal. More info is available at the producers web site.
A video that shows the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>n application that sends and receives MMS messages is now available for you&#8217;re iPhone. There is no need to have a Jailbroken iPhone as the application is available from Apple Store. Right now the application only works for clients of Vodafone Portugal. <a href="http://products.wit-software.com/mms.html">More info</a> is available at the producers web site.</p>
<p>A video that shows the application working is also available:<br />
<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/5lvaZRgIjC0&#038;hl=pt-br&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5lvaZRgIjC0&#038;hl=pt-br&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/7tD3rxaqflw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/02/11/iphone-mms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/02/11/iphone-mms/</feedburner:origLink></item>
		<item>
		<title>Betta Fish</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/IkuIJBrMAPE/</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>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/IkuIJBrMAPE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/01/25/betta-fish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/01/25/betta-fish/</feedburner:origLink></item>
		<item>
		<title>Telephone Regular Expressions</title>
		<link>http://feedproxy.google.com/~r/OBlogDoGustavoFelisberto/~3/7ZA7YBFWaek/</link>
		<comments>http://blog.felisberto.net/2009/01/15/telephone-regular-expressions/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 15:02:26 +0000</pubDate>
		<dc:creator>Gustavo Felisberto</dc:creator>
				<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://blog.felisberto.net/?p=1471</guid>
		<description><![CDATA[Designing a regular expression to find phone numbers is some string are not trivial. The rules of what is a valid number are strange, and the phone itself can be present with any number of artifacts, like spaces, dashes and  parentheses.
This last morning I have been trying to design a good regular expression but [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">D</span>esigning a regular expression to find phone numbers is some string are not trivial. The rules of what is a valid number are strange, and the phone itself can be present with any number of artifacts, like spaces, dashes and  parentheses.</p>
<p>This last morning I have been trying to design a good regular expression but I&#8217;m still a bit far. So far I managed to do:<br />
<code>(\(?[\s]*(00|\+){1,1}[\d]{1,4}[\s]*\)?)?([\s]*|-)(-|[\s])?(\(?[\d]\)?([\s]*|\.|-)){7,15}</code></p>
<p>But it sill misses things like: +351 (21) 1111111</p>
<img src="http://feeds.feedburner.com/~r/OBlogDoGustavoFelisberto/~4/7ZA7YBFWaek" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.felisberto.net/2009/01/15/telephone-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://blog.felisberto.net/2009/01/15/telephone-regular-expressions/</feedburner:origLink></item>
	</channel>
</rss>
