<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom">
    <title>Tulio Magno Quites Machado Filho</title>
    <id>http://www.quites.com.br/feed/</id>
    <updated>2019-01-23T16:25:25-02:00</updated>
    <link href="http://www.quites.com.br/feed/" rel="self" type="application/atom+xml" />
    <link href="https://www.quites.com.br" />
    <generator uri="http://chyrp.net/" version="2.5.2">Chyrp</generator>
    <entry>
        <title type="html">Reading the serial number of a POWER server from Linux</title>
        <id>tag:www.quites.com.br,2020-02-02:/id/29/</id>
        <updated>2020-02-02T19:34:36-03:00</updated>
        <published>2019-01-23T16:25:25-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2019/01/23/reading-the-serial-number-of-a-power-server-from-linux/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">From time to time, I have to identify which physical server I'm connected to.  That usually involves reading the manufacturer serial number of the server.

That information is provided to Linux by the device tree, which is exported via procfs at `/proc/device-tree/`.

However, the file that hosts the serial number of your server may vary according to the virtualization mechanism in place, e.g. bare-metal and LPARs use the file `system-id`, while KVM guests use the file `host-serial`.

With that said, we can read the serial number of our server with the following command:

```find /proc/device-tree/ -name host-serial -o -name system-id | xargs cat; echo```</content>
        <category scheme="https://www.quites.com.br/tag/" term="linux" label="Linux" />
        <category scheme="https://www.quites.com.br/tag/" term="powerpc" label="powerpc" />
    </entry>
    <entry>
        <title type="html">Updated tutorial on Optimized libraries for Linux on Power</title>
        <id>tag:www.quites.com.br,2018-12-01:/id/28/</id>
        <updated>2018-12-01T23:55:30-02:00</updated>
        <published>2018-12-01T23:55:30-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2018/12/01/updated-tutorial-on-optimized-libraries-for-linux-on-power/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">A while ago, David Flaherty wrote a nice tutorial about writing optimized libraries for Linux on Power.

As time passed, parts of the tutorial became obsolete and needed some love.

Earlier in November [I completed this update](https://developer.ibm.com/tutorials/optimized-libraries-for-linux-on-power/) and removed all the obsolete parts, added new sections mentioning glibc's `getauxval()` and GCC's `__builtin_cpu_is()` and attribute ifunc.</content>
        <category scheme="https://www.quites.com.br/tag/" term="linux" label="Linux" />
        <category scheme="https://www.quites.com.br/tag/" term="libraries" label="libraries" />
        <category scheme="https://www.quites.com.br/tag/" term="powerpc" label="powerpc" />
    </entry>
    <entry>
        <title type="html">Subscribe and unsubscribe from Google Groups without a Google account</title>
        <id>tag:www.quites.com.br,2018-03-29:/id/27/</id>
        <updated>2018-03-29T11:33:27-03:00</updated>
        <published>2018-03-29T11:33:27-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2018/03/29/subscribe-and-unsubscribe-from-google-groups-without-a-google-account/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">Many users still prefer to interact with mailing lists via email.  I'm one of them.

Some of the mailing lists I follow are maintained in Google Groups, which doesn't provide a good interface for subscription for people without a Google account.

Anyway, it's *still* possible to subscribe to these groups if you replace `group-name` with the name of the group you'd like to subscribe to and visit:

```https://groups.google.com/forum/#!forum/group-name/join```

In order to unsubscribe, visit the following link after replacing `group-name` with the name of the group:

```https://groups.google.com/forum/#!forum/group-name/unsubscribe```</content>
        <category scheme="https://www.quites.com.br/tag/" term="tutorial" label="tutorial" />
    </entry>
    <entry>
        <title type="html">If it's not practical to redistribute free software, it's not free...</title>
        <id>tag:www.quites.com.br,2015-11-20:/id/26/</id>
        <updated>2015-11-20T21:39:24-02:00</updated>
        <published>2015-11-20T21:38:42-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2015/11/20/quote.26/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;blockquote&gt;
	If it's not practical to redistribute free software, it's not free software in practice.
&lt;/blockquote&gt;
[Matthew Garrett](https://mjg59.dreamwidth.org/38467.html)</content>
        <category scheme="https://www.quites.com.br/tag/" term="free-software" label="Free Software" />
    </entry>
    <entry>
        <title type="html">If you don't have full source to your firmware you don't have a system...</title>
        <id>tag:www.quites.com.br,2015-11-20:/id/25/</id>
        <updated>2015-11-20T21:40:16-02:00</updated>
        <published>2014-01-04T23:36:49-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2014/01/04/quote.25/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;blockquote&gt;
	If you don't have full source to your firmware you don't have a system you can trust.
&lt;/blockquote&gt;
[Alan Cox](https://plus.google.com/+AlanCoxLinux/posts/9bCJPSdjT4t)</content>
        <category scheme="https://www.quites.com.br/tag/" term="free-software" label="Free Software" />
    </entry>
    <entry>
        <title type="html">OpenSUSE 12.2</title>
        <id>tag:www.quites.com.br,2016-01-30:/id/24/</id>
        <updated>2016-01-30T21:54:06-02:00</updated>
        <published>2012-08-30T14:04:59-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/08/30/opensuse-122/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">[![OpenSUSE 12.2](https://countdown.opensuse.org/medium.en.png "OpenSUSE 12.2")](http://software.opensuse.org)

We're less than a week for the release of OpenSUSE 12.2.
</content>
        <category scheme="https://www.quites.com.br/tag/" term="opensuse" label="OpenSUSE" />
    </entry>
    <entry>
        <title type="html">Don’t rely on the cloud. It’s great to have online storage you can...</title>
        <id>tag:www.quites.com.br,2015-11-10:/id/23/</id>
        <updated>2015-11-10T17:22:20-02:00</updated>
        <published>2012-08-04T20:33:25-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/08/04/quote.23/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;blockquote&gt;
	&lt;p&gt;Don’t rely on the cloud. It’s great to have online storage you can get at from all your various devices, but when the shit goes down and your under attack, nothing is more secure than a hard drive you can unplug and hide in a shoebox in the closet. It’s not the most convenient way to back up, but you’ll thank yourself for it.&lt;/p&gt;
&lt;/blockquote&gt;
[Gizmodo UK](http://www.gizmodo.co.uk/2012/08/how-gizmodo-got-hacked-and-how-you-should-defend-yourself/)</content>
        <category scheme="https://www.quites.com.br/tag/" term="free-software" label="Free Software" />
    </entry>
    <entry>
        <title type="html">How much do you depend on Google?</title>
        <id>tag:www.quites.com.br,2015-11-10:/id/22/</id>
        <updated>2015-11-10T15:49:40-02:00</updated>
        <published>2012-07-26T22:47:46-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/07/26/how-much-do-you-depend-on-google/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;p&gt;Have you ever thought how much do you depend on Google?
I've never thought, but I'm learning about it now.&lt;/p&gt;&lt;p&gt;It seems that Google is +almost+ down in Brazil right now and I don't know why, because the search is the most affected.
I can't access my email or chat to someone else. The social network I've been using recently isn't working.
But OK. I don't need to read my email everyday, right? Let's do something else.&lt;/p&gt;&lt;p&gt;Maybe I could watch some videos on YouTube. Wait... Let's try again...&lt;/p&gt;&lt;p&gt;The last week I was planning to learn a recipe, but I forgot about it. Great! Wait... The search is down.&lt;/p&gt;&lt;p&gt;OK. Let's read some news. At least I host my own RSS reader instead of using Google Reader. After reading some news I found a new word in English, but I couldn't look for its meaning. I read about an "interesting project(Projet Meshnet)":https://projectmeshnet.org/ that is planning to free the Internet, but I can't search for more information.&lt;/p&gt;&lt;p&gt;Obviously, I could use another search engine (and in fact I "did(DuckDuckGoog)":http://duckduckgoog.com/), but it's interesting to see how dependent we're on Google and The Cloud. And I can only conclude that freeing yourself from The Cloud is the best choice we have.&lt;/p&gt;</content>
        <category scheme="https://www.quites.com.br/tag/" term="free-software" label="Free Software" />
    </entry>
    <entry>
        <title type="html">Ocimum gratissimum</title>
        <id>tag:www.quites.com.br,2012-06-23:/id/21/</id>
        <updated>2012-06-23T11:08:50-03:00</updated>
        <published>2012-06-23T11:08:50-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/06/23/photo.21/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;img srcset="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2935v1.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100 1x, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2935v1.JPG&amp;max_width=960&amp;quality=100 960w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2935v1.JPG&amp;max_width=640&amp;quality=100 640w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2935v1.JPG&amp;max_width=320&amp;quality=100 320w" src="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2935v1.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100" alt="DSCF2935v1.JPG" class="image" /&gt;&lt;br /&gt;&lt;br /&gt;Ocimum gratissimum</content>
    </entry>
    <entry>
        <title type="html">Sky today in Campinas</title>
        <id>tag:www.quites.com.br,2012-05-19:/id/20/</id>
        <updated>2012-05-19T18:17:56-03:00</updated>
        <published>2012-05-19T18:17:56-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/05/19/sky-today-in-campinas/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;img srcset="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2842.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100 1x, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2842.JPG&amp;max_width=960&amp;quality=100 960w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2842.JPG&amp;max_width=640&amp;quality=100 640w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2842.JPG&amp;max_width=320&amp;quality=100 320w" src="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2842.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100" alt="Sky today in Campinas" class="image" /&gt;&lt;br /&gt;&lt;br /&gt;Sky today in Campinas</content>
        <category scheme="https://www.quites.com.br/tag/" term="campinas" label="Campinas" />
    </entry>
    <entry>
        <title type="html">OpenStreetMap and Osmand map of Brazil</title>
        <id>tag:www.quites.com.br,2015-11-10:/id/18/</id>
        <updated>2015-11-10T17:25:55-02:00</updated>
        <published>2012-05-02T13:32:41-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/05/02/openstreetmap-and-osmand-map-of-brazil/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">![OpenStreetMap logo](/uploads/200px-Public-images-osm_logo.png)

I have been contributing to [OpenStreetMap](http://www.openstreetmap.org/) recently and most of the times I use [Osmand](http://code.google.com/p/osmand) to view/navigate the maps. The maps in Campinas are still changing a lot, so it's necessary to update them frequently.

~~As the process to convert these maps requires a lot of RAM and cpu power, I'm sharing the result "here"~~.

**Edit**: this isn't necessary anymore.
</content>
        <category scheme="https://www.quites.com.br/tag/" term="openstreetmap" label="OpenStreetMap" />
    </entry>
    <entry>
        <title type="html">Touristic steam locomotive in Campinas</title>
        <id>tag:www.quites.com.br,2012-05-19:/id/19/</id>
        <updated>2012-05-19T18:19:35-03:00</updated>
        <published>2012-04-30T22:48:12-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2012/04/30/photo.19/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;img srcset="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2780.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100 1x, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2780.JPG&amp;max_width=960&amp;quality=100 960w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2780.JPG&amp;max_width=640&amp;quality=100 640w, https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2780.JPG&amp;max_width=320&amp;quality=100 320w" src="https://www.quites.com.br/includes/thumb.php?file=../uploads/DSCF2780.JPG&amp;max_width=500&amp;max_height=500&amp;quality=100" alt="DSCF2780.JPG" class="image" /&gt;&lt;br /&gt;&lt;br /&gt;Touristic steam locomotive in Campinas</content>
        <category scheme="https://www.quites.com.br/tag/" term="campinas" label="Campinas" />
    </entry>
    <entry>
        <title type="html">OpenSUSE 12.1</title>
        <id>tag:www.quites.com.br,2016-01-30:/id/17/</id>
        <updated>2016-01-30T21:54:58-02:00</updated>
        <published>2011-11-10T18:41:33-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/11/10/opensuse-12-1/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;p align="center"&gt;&lt;a href="http://en.opensuse.org/Portal:12.1"&gt;&lt;img src="https://countdown.opensuse.org/medium.en.png" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p align="justify"&gt;OpenSUSE 12.1 is going to be released November, 16th. Do not forget about that!&lt;/p&gt;</content>
        <category scheme="https://www.quites.com.br/tag/" term="opensuse" label="OpenSUSE" />
    </entry>
    <entry>
        <title type="html">Analisando o efeito da MP dos tablets</title>
        <id>tag:www.quites.com.br,2012-04-29:/id/16/</id>
        <updated>2012-04-29T19:16:40-03:00</updated>
        <published>2011-09-22T21:27:59-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/09/22/analisando-o-efeito-da-mp-dos-tablets/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">Ontem, o Senado aprovou a &lt;a title="MP 540" href="http://www.planalto.gov.br/ccivil_03/_Ato2011-2014/2011/Mpv/540.htm" target="_blank"&gt;medida provisória 540&lt;/a&gt; que, dentre outras coisas, torna os tablets isentos de Cofins e de contribuição ao PIS/PASEP, conforme os trechos do texto original:
&lt;blockquote&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art. 28. Ficam reduzidas a 0 (zero) as alíquotas da Contribuição para o PIS/Pasep e da Cofins incidentes sobre a receita bruta de venda a varejo:
...
&lt;span style="font-family: Arial; font-size: x-small;"&gt;VI - máquinas automáticas de processamento de dados, portáteis, sem teclado, que tenham uma unidade central de processamento com entrada e saída de dados por meio de uma tela sensível ao toque de área superior a 140 cm&lt;sup&gt;2&lt;/sup&gt; e inferior a 600 cm&lt;sup&gt;2&lt;/sup&gt;, e que não possuam função de comando remoto (&lt;strong&gt;Tablet PC&lt;/strong&gt;) classificadas na subposição 8471.41 da TIPI, produzidas no País conforme processo produtivo básico estabelecido pelo Poder Executivo.&lt;/span&gt;
&lt;/span&gt;&lt;/blockquote&gt;
Segundo a maioria das reportagens &lt;a title="Reportagem" href="http://economia.estadao.com.br/noticias/negocios%20tecnologia,senado-aprova-mp-dos-tablets-e-materia-segue-a-sancao-presidencial,85096,0.htm" target="_blank"&gt;[1]&lt;/a&gt; &lt;a title="Reportagem" href="http://veja.abril.com.br/noticia/economia/com-incentivos-tablets-poderao-ter-preco-ate-36-menor" target="_blank"&gt;[2]&lt;/a&gt; &lt;a title="Reportagem" href="http://agenciabrasil.ebc.com.br/noticia/2011-09-21/senado-aprova-mp-que-reduz-impostos-sobre-tablets-fabricados-no-brasil" target="_blank"&gt;[3]&lt;/a&gt;, isto pode representar uma queda de até 31% a 36% no valor final.

&lt;p&gt;Sendo assim, proponho armazenar uma lista com os preços atuais dos tablets para análise posterior. Para simplificar o trabalho de pesquisa, utilizei o &lt;a title="Buscapé" href="http://www.buscape.com.br" target="_blank"&gt;Buscapé&lt;/a&gt; e filtrei os resultados apenas por lojas com classificação ouro. Este filtro evita &lt;del&gt;a inserção de produtos sem imposto&lt;/del&gt; possíveis variações de preços típicas do mercado brasileiro.&lt;/p&gt;

&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Tablet&lt;/td&gt;
&lt;td&gt;Preço mínimo&lt;/td&gt;
&lt;td&gt;Preço máximo&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Acer Iconia Tab A500 16GB" href="http://compare.buscape.com.br/prod_unico?idu=313775&amp;ebit=30&amp;pos=1" target="_blank"&gt;Acer Iconia Tab A500 16GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1022,11&lt;/td&gt;
&lt;td&gt;R$1399,00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Acer Iconia Tab A500 32GB" href="http://compare.buscape.com.br/prod_unico?idu=341454&amp;ebit=30&amp;pos=2" target="_blank"&gt;Acer Iconia Tab A500 32GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1439,10&lt;/td&gt;
&lt;td&gt;R$1599,00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Motorola Xoom 32GB" href="http://compare.buscape.com.br/prod_unico?idu=313756&amp;ebit=30" target="_blank"&gt;Motorola Xoom 32GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1.347,19&lt;/td&gt;
&lt;td&gt;R$1999,90&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Semp Toshiba MP1003G" href="http://compare.buscape.com.br/prod_unico?idu=342104&amp;ebit=30&amp;pos=1" target="_blank"&gt;Semp Toshiba MP1003G&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$999,00&lt;/td&gt;
&lt;td&gt;R$999,00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Semp Toshiba Thrive 32 GB" href="http://compare.buscape.com.br/prod_unico?idu=330101&amp;ebit=30&amp;pos=1" target="_blank"&gt;Semp Toshiba Thrive 32 GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1521,00&lt;/td&gt;
&lt;td&gt;R$1521,00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Samsung Galaxy Tab 16 GB" href="http://compare.buscape.com.br/prod_unico?idu=299606&amp;ebit=30&amp;pos=1" target="_blank"&gt;Samsung Galaxy Tab 16 GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$849,15&lt;/td&gt;
&lt;td&gt;R$1749,00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Samsung Galaxy Tab 3G 16 GB" href="http://compare.buscape.com.br/prod_unico?idu=339196&amp;ebit=30&amp;pos=2" target="_blank"&gt;Samsung Galaxy Tab 3G 16 GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1149,00&lt;/td&gt;
&lt;td&gt;R$1661,55&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Asus Eee Pad Transformer TF101 16 GB" href="http://compare.buscape.com.br/prod_unico?idu=336758&amp;ebit=30&amp;pos=1" target="_blank"&gt;Asus Eee Pad Transformer TF101 16 GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1107,29&lt;/td&gt;
&lt;td&gt;R$1424,05&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a title="Apple iPad 2 16 GB" href="http://compare.buscape.com.br/prod_unico?idu=314277&amp;ebit=30&amp;pos=1" target="_blank"&gt;Apple iPad 2 16 GB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;R$1326,31&lt;/td&gt;
&lt;td&gt;R$2465,85&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;Dos modelos listados, apenas os da Samsung possuem tela de 7", enquanto o restante possui tela de 10". Apenas o iPad utiliza um sistema operacional diferente do Android. Entretanto, os tablets da Samsung e da Semp Toshiba são baseados na série 2.x do Android, que foi desenvolvida para celulares.&lt;/p&gt;</content>
        <category scheme="https://www.quites.com.br/tag/" term="market" label="market" />
    </entry>
    <entry>
        <title type="html">World IPv6 Day</title>
        <id>tag:www.quites.com.br,2012-04-30:/id/15/</id>
        <updated>2012-04-30T22:38:58-03:00</updated>
        <published>2011-06-08T10:41:09-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/06/08/world-ipv6-day/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">Today is the World IPv6 Day. According to the &lt;a title="World IPv6 day" href="http://www.worldipv6day.org" target="_blank"&gt;website&lt;/a&gt;, the goal of the day is "to motivate organizations across the industry to prepare their services for IPv6 to ensure a successful transition as IPv4 addresses run out."
&lt;p style="text-align: center;"&gt;&lt;a href="http://www.worldipv6day.org/"&gt;&lt;img class=" aligncenter" title="World Ipv6 Day" src="/uploads/IPv6-test-flight-blk-256-trans.png" alt="World Ipv6 Day logo" width="256" height="256" /&gt;&lt;/a&gt;&lt;/p&gt;
Unfortunately, my Internet Service Provider does not support IPv6. Anyway, this website should work fine with IPv6 only connections.
&lt;p style="text-align: center;"&gt;&lt;a href="http://ipv6-test.com/validate.php?url=referer"&gt;&lt;img class="aligncenter" style="border: 0pt none;" title="IPv6 ready" src="http://ipv6-test.com/button-ipv6-big.png" border="0" alt="IPv6 ready" width="100" height="50" /&gt;&lt;/a&gt;&lt;/p&gt;
If you want to test your connection, try &lt;a title="Test IPv6" href="http://test-ipv6.com/" target="_blank"&gt;http://test-ipv6.com&lt;/a&gt;.</content>
        <category scheme="https://www.quites.com.br/tag/" term="ipv6" label="IPv6" />
        <category scheme="https://www.quites.com.br/tag/" term="internet" label="Internet" />
    </entry>
    <entry>
        <title type="html">Realtek RTL8111/8168B on OpenSUSE (2)</title>
        <id>tag:www.quites.com.br,2012-04-29:/id/14/</id>
        <updated>2012-04-29T19:19:08-03:00</updated>
        <published>2011-04-12T18:16:52-03:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/04/12/realtek-rtl81118168b-on-opensuse-2/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;p&gt;On my &lt;a title="Realtek RTL8111/8168B on OpenSUSE" href="http://www.quites.com.br/2011/02/realtek-rtl81118168b-on-opensuse/"&gt;last post&lt;/a&gt; I've presented the &lt;a title="OpenSUSE Drivers:NIC" href="https://build.opensuse.org/project/show?package=&amp;project=drivers%3Anic" target="_blank"&gt;OpenSUSE Project Drivers:NIC&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;But since than I've installed OpenSUSE 11.4 and configured it to use the &lt;a title="OpenSUSE Tumbleweed" href="http://en.opensuse.org/Tumbleweed" target="_blank"&gt;OpenSUSE Tumbleweed&lt;/a&gt; repository with the 2.6.38 kernel that has a better support to the Realtek RTL8111/8168B ethernet card with the default r8169 module. I've been using this kernel (already on 2.6.38.2) for the last weeks and I haven't gotten those problems again.&lt;/p&gt;</content>
        <category scheme="https://www.quites.com.br/tag/" term="opensuse" label="OpenSUSE" />
    </entry>
    <entry>
        <title type="html">Realtek RTL8111/8168B on OpenSUSE</title>
        <id>tag:www.quites.com.br,2012-04-29:/id/13/</id>
        <updated>2012-04-29T19:19:55-03:00</updated>
        <published>2011-02-02T18:00:05-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/02/02/realtek-rtl81118168b-on-opensuse/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;p&gt;I've recently installed OpenSUSE 11.3 on a computer with a Realtek Ethernet controller recognized as &lt;code&gt;Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)&lt;/code&gt; by lspci. Although the network worked after the installation, it couldn't connect after a reboot. The only useful messages returned by dmesg were:&lt;/p&gt;

&lt;code&gt;r8169 0000:06:00.0: eth0: unable to apply firmware patch
r8169 0000:06:00.0: eth0: link down
r8169 0000:06:00.0: eth0: link down&lt;/code&gt;

&lt;p&gt;After googling for this I realized that the r8169 module was wrongly chosen and it was necessary to install the r8168 module provided by Realtek and not included in the Kernel. Just after concluding this I found the &lt;a title="OpenSUSE Build Service - Drivers:NIC" href="https://build.opensuse.org/project/show?package=&amp;project=drivers%3Anic" target="_blank"&gt;OpenSUSE Project Drivers:NIC&lt;/a&gt; that aims to provide drivers for network interface cards, including the r8168 that I needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update: I have more information in a &lt;a title="Realtek RTL8111/8168B on OpenSUSE (2)" href="http://www.quites.com.br/2011/04/realtek-rtl81118168b-on-opensuse-2/"&gt;newer post&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;</content>
        <category scheme="https://www.quites.com.br/tag/" term="opensuse" label="OpenSUSE" />
    </entry>
    <entry>
        <title type="html">Festa de lançamento do KDE SC 4.6</title>
        <id>tag:www.quites.com.br,2012-04-29:/id/11/</id>
        <updated>2012-04-29T12:08:11-03:00</updated>
        <published>2011-01-20T21:54:18-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/01/20/festa-de-lancamento-do-kde-sc-4-6/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">Com a aproximação do lançamento da versão 4.6 do KDE SC, o KDE-MG está organizando um encontro.&lt;br/&gt;
Todos são muito bem vindos!&lt;br/&gt;
&lt;br/&gt;
Maiores informações em:
&lt;a title="Festa de Lançamento do KDE SC 4.6" href="http://kde-mg.org/2011/01/20/festa-de-lancamento-do-kde-sc-4-6/" target="_blank"&gt;http://kde-mg.org/2011/01/20/festa-de-lancamento-do-kde-sc-4-6/&lt;/a&gt;
</content>
        <category scheme="https://www.quites.com.br/tag/" term="kde" label="KDE" />
    </entry>
    <entry>
        <title type="html">Moving around</title>
        <id>tag:www.quites.com.br,2011-01-16:/id/10/</id>
        <updated>2011-01-16T20:24:44-02:00</updated>
        <published>2011-01-16T20:24:44-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2011/01/16/moving-around/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">It has been a long time since I planned to move from &lt;a title="Blogger" href="http://www.blogger.com" target="_blank"&gt;Blogger&lt;/a&gt;. Blogger offers a simple service with the basic tools to start blogging. But as time  passes by you realize that you need more tools to improve the blog or to simplify your work.

Most of the tools you find surfing the web. Some are third party services and you start to distribute around your data. Images are stored in &lt;a title="Picasa web" href="http://picasaweb.google.com" target="_blank"&gt;Picasa Web&lt;/a&gt;. Files can be stored in your &lt;a title="Dropbox" href="http://www.dropbox.com" target="_blank"&gt;Dropbox&lt;/a&gt; account. Static pages can be stored at &lt;a title="Google Sites" href="http://sites.google.com" target="_blank"&gt;Google Sites&lt;/a&gt;. When you have a small blog, that is ok. But when things start growing, controlling all this mess is difficult.

Then I started thinking who was really the owner of the information: me or Blogger? If can't do what a want to, probably I'm not the owner. The migration to a new host proved this. Blogger offers you a way to export your data, but there isn't a way to redirect visitors to the new address. According to Blogger you just have to loose them... Some people offers a javascript redirection, but this won't work with search engines. The correct redirection should return an http 301.

From now on, both my website and blog will be available at &lt;a title="Tulio Magno Quites Machado Filho" href="http://www.quites.com.br" target="_blank"&gt;http://www.quites.com.br&lt;/a&gt;. Feed subscribers shouldn't have problems as &lt;a title="FeedBurner" href="http://feedburner.google.com" target="_blank"&gt;FeedBurner&lt;/a&gt; will redirect you to the new feed.

If you find a problem with the new site, please contact me.</content>
    </entry>
    <entry>
        <title type="html">Curso introdutório de git</title>
        <id>tag:www.quites.com.br,2012-04-30:/id/9/</id>
        <updated>2012-04-30T22:41:07-03:00</updated>
        <published>2010-12-10T13:30:00-02:00</published>
        <link rel="alternate" type="text/html" href="https://www.quites.com.br/2010/12/10/curso-introdutorio-de-git/" />
        <author>
            <name>Tulio Magno Quites Machado Filho</name>
            <uri>http://www.quites.com.br</uri>
        </author>
        <content type="html">&lt;div style="text-align: center;"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;img class="alignnone size-medium wp-image-113" title="Git logo" src="/uploads/500px-Git-logosvg-300x109.png" alt="Git logo" width="300" height="109" /&gt;&lt;/div&gt;
&lt;span id="goog_1653733235"&gt;&lt;span id="goog_1653733238"&gt; &lt;/span&gt;&lt;/span&gt;

&lt;/div&gt;
No último dia 13 de Novembro eu ministrei um curso introdutório sobre git durante a &lt;a href="http://www.betimopensource.com.br/eventos_saiba_mais.php"&gt;Semana da Computação da Faculdade Pitágoras-Betim&lt;/a&gt;.
O curso fala um pouco sobre a origem do git e dos comandos básicos para usá-lo. Procurei também mostrar um pouco da diferença que existe entre os sistemas de controle de versões distribuídos e centralizados, já que acredito que esta a maior causa de dificuldades ao utilizá-lo.
Como sempre, os arquivos estão disponíveis na &lt;a href="http://tuliom.quites.com.br/articles"&gt;página de artigos do meu site&lt;/a&gt;.</content>
        <category scheme="https://www.quites.com.br/tag/" term="git" label="git" />
    </entry>
</feed>
