<?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:media="http://search.yahoo.com/mrss/" version="2.0">

<channel>
	<title>Blog do Neis</title>
	
	<link>http://danielneis.wordpress.com</link>
	<description>...tecnologia sem frescura</description>
	<lastBuildDate>Wed, 08 Jul 2009 03:50:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain="danielneis.wordpress.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
<image>
		<url>http://www.gravatar.com/blavatar/cea9e527f3bc3d5d6fb616d1f742a2e6?s=96&amp;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Blog do Neis</title>
		<link>http://danielneis.wordpress.com</link>
	</image>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/blog-do-neis" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>broadcom patch to work on 2.6.31 kernel</title>
		<link>http://danielneis.wordpress.com/2009/07/08/broadcom-patch-to-work-on-2-6-31-kernel/</link>
		<comments>http://danielneis.wordpress.com/2009/07/08/broadcom-patch-to-work-on-2-6-31-kernel/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 03:50:33 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://danielneis.wordpress.com/?p=176</guid>
		<description><![CDATA[here is a patch to make broadcom sta linux driver wok on the new kernel.
diff &#8211;git a/src/wl/sys/wl_iw.c b/src/wl/sys/wl_iw.c
index 83b8dbf..70ee4e4 100644
&#8212; a/src/wl/sys/wl_iw.c
+++ b/src/wl/sys/wl_iw.c
@@ -118,7 +118,11 @@ dev_wlc_ioctl(
        fs = get_fs();
        set_fs(get_ds());
+#if LINUX_VERSION_CODE do_ioctl(dev, &#38;ifr, SIOCDEVPRIVATE);
+#else
+       ret [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=176&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>here is a patch to make broadcom sta linux driver wok on the new kernel.</p>
<p>diff &#8211;git a/src/wl/sys/wl_iw.c b/src/wl/sys/wl_iw.c<br />
index 83b8dbf..70ee4e4 100644<br />
&#8212; a/src/wl/sys/wl_iw.c<br />
+++ b/src/wl/sys/wl_iw.c<br />
@@ -118,7 +118,11 @@ dev_wlc_ioctl(</p>
<p>        fs = get_fs();<br />
        set_fs(get_ds());<br />
+#if LINUX_VERSION_CODE do_ioctl(dev, &amp;ifr, SIOCDEVPRIVATE);<br />
+#else<br />
+       ret = dev-&gt;netdev_ops-&gt;ndo_do_ioctl(dev, &amp;ifr, SIOCDEVPRIVATE);<br />
+#endif<br />
        set_fs(fs);</p>
<p>        return ret;<br />
diff &#8211;git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c<br />
index 7d6bba1..bfa90d0 100644<br />
&#8212; a/src/wl/sys/wl_linux.c<br />
+++ b/src/wl/sys/wl_linux.c<br />
@@ -293,20 +293,36 @@ module_param_string(name, name, IFNAMSIZ, 0);<br />
 #define        SRCBASE &#8220;.&#8221;<br />
 #endif </p>
<p>-#if WIRELESS_EXT &gt;= 19<br />
+#if WIRELESS_EXT &gt;= 22<br />
+static const struct net_device_ops wl_ethtool_ops =<br />
+{<br />
+    .ndo_open = wl_open,<br />
+    .ndo_stop = wl_close,<br />
+    .ndo_start_xmit = wl_start,<br />
+    .ndo_get_stats = wl_get_stats,<br />
+    .ndo_set_mac_address = wl_set_mac_address,<br />
+    .ndo_set_multicast_list = wl_set_multicast_list,<br />
+    .ndo_do_ioctl = wl_ioctl<br />
+};<br />
+#elif WIRELESS_EXT &gt;= 19<br />
 #if LINUX_VERSION_CODE &lt; KERNEL_VERSION(2, 6, 19)<br />
 static struct ethtool_ops wl_ethtool_ops =<br />
-#else<br />
+{<br />
+       .get_drvinfo = wl_get_driver_info<br />
+};<br />
+#elif LINUX_VERSION_CODE &lt;= KERNEL_VERSION(2, 6, 30)<br />
 static const struct ethtool_ops wl_ethtool_ops =<br />
-#endif<br />
 {<br />
        .get_drvinfo = wl_get_driver_info<br />
 };<br />
+#endif<br />
 #endif </p>
<p>+<br />
 static<br />
 void wl_if_setup(struct net_device *dev)<br />
 {<br />
+#if LINUX_VERSION_CODE open = wl_open;<br />
        dev-&gt;stop = wl_close;<br />
        dev-&gt;hard_start_xmit = wl_start;<br />
@@ -314,6 +330,8 @@ void wl_if_setup(struct net_device *dev)<br />
        dev-&gt;set_mac_address = wl_set_mac_address;<br />
        dev-&gt;set_multicast_list = wl_set_multicast_list;<br />
        dev-&gt;do_ioctl = wl_ioctl;<br />
+#endif<br />
+<br />
 #ifdef CONFIG_WIRELESS_EXT<br />
 #if WIRELESS_EXT get_wireless_stats = wl_get_wireless_stats;<br />
@@ -321,7 +339,9 @@ void wl_if_setup(struct net_device *dev)<br />
 #if WIRELESS_EXT &gt; 12<br />
        dev-&gt;wireless_handlers = (struct iw_handler_def *) &amp;wl_iw_handler_def;<br />
 #endif<br />
-#if WIRELESS_EXT &gt;= 19<br />
+#if WIRELESS_EXT &gt;= 22<br />
+       dev-&gt;netdev_ops = &amp;wl_ethtool_ops;<br />
+#elif WIRELESS_EXT &gt;= 19<br />
        dev-&gt;ethtool_ops = &amp;wl_ethtool_ops;<br />
 #endif </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=176&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/07AQ37_AJuY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2009/07/08/broadcom-patch-to-work-on-2-6-31-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>Copiando vídeos do YouTube e Google Videos do jeito divertido</title>
		<link>http://danielneis.wordpress.com/2009/01/26/copiando-videos-do-youtube-e-google-videos-do-jeito-divertido/</link>
		<comments>http://danielneis.wordpress.com/2009/01/26/copiando-videos-do-youtube-e-google-videos-do-jeito-divertido/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 13:37:50 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dicas videos youtube linux fun]]></category>

		<guid isPermaLink="false">http://danielneis.wordpress.com/?p=172</guid>
		<description><![CDATA[Os dois sites do título, quando acessados via Firefox, no Linux, têm o comportamento interessante de gravar os vídeos que estão sendo atualmente carregados ou assistidos no diretório /tmp. Algo como:
daniel@sheena:~$ ls -hl /tmp/
total 103M
drwxr-xr-x 2 daniel daniel   48 2009-01-26 11:06 acroread_1000_1000
-rw------- 1 daniel daniel 103M 2009-01-26 11:29 Flash48K72J
drwx------ 2 daniel daniel  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=172&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Os <a title="youtube" href="http://youtube.com">dois</a> <a title="google videos" href="http://video.google.com">sites</a> do título, quando acessados via Firefox, no Linux, têm o comportamento interessante de gravar os vídeos que estão sendo atualmente carregados ou assistidos no diretório /tmp. Algo como:<code><br />
daniel@sheena:~$ ls -hl /tmp/<br />
total 103M<br />
drwxr-xr-x 2 daniel daniel   48 2009-01-26 11:06 acroread_1000_1000<br />
<strong>-rw------- 1 daniel daniel 103M 2009-01-26 11:29 Flash48K72J</strong><br />
drwx------ 2 daniel daniel  208 2009-01-26 08:48 kde-daniel<br />
drwx------ 2 daniel daniel  128 2009-01-26 08:46 keyring-ffXC5o<br />
drwx------ 2 daniel daniel 1.2K 2009-01-26 11:27 orbit-daniel<br />
drwx------ 2 daniel daniel  160 2009-01-26 11:27 plugtmp<br />
drwx------ 2 daniel daniel   96 2009-01-26 08:46 pulse-daniel<br />
drwx------ 2 daniel daniel   80 2009-01-26 08:46 seahorse-wHSQ8k<br />
drwx------ 2 daniel daniel   48 2009-01-26 08:46 virtual-daniel.OObxjB<br />
</code></p>
<p>Aquele arquivo Flash48K72J, era o arquivo parcial <a title="Communicating With Computers." href="http://video.google.com/googleplayer.swf?docId=-533537336174204822">desse vídeo</a>.</p>
<p>Enquanto a aba em que o vídeos é exibido ou carregado, o arquivo permanecerá lá. Basta copiá-lo para onde você quiser.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=172&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/NcyRHFI6MPI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2009/01/26/copiando-videos-do-youtube-e-google-videos-do-jeito-divertido/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>Instalando driver Broadcom 802.11 Linux STA a partir dos fontes no linux</title>
		<link>http://danielneis.wordpress.com/2009/01/06/instalando-driver-broadcom-80211-linux-sta-a-partir-dos-fontes-no-linux/</link>
		<comments>http://danielneis.wordpress.com/2009/01/06/instalando-driver-broadcom-80211-linux-sta-a-partir-dos-fontes-no-linux/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 14:17:16 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[drivers]]></category>

		<guid isPermaLink="false">http://danielneis.wordpress.com/?p=170</guid>
		<description><![CDATA[Adaptei este passo-a-passo desse outro , que por sua vez adptou do passo-a-passo oferecido pela Broadcom na mesma página para download do driver, aqui.
Segundo  o site, os pacotes oferecidos (e sobre o qual traterei) contêm &#8220;Broadcom&#8217;s IEEE 802.11a/b/g/n hybrid Linux® device driver&#8221; para ser usado em hardware baseado em &#8220;Broadcom&#8217;s BCM4311-, BCM4312-, BCM4321-, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=170&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Adaptei este passo-a-passo <a href="http://jomcode.com/fadhil/?p=59">desse outro</a> , que por sua vez adptou do passo-a-passo oferecido pela Broadcom na mesma página para download do driver, <a href="http://www.broadcom.com/support/802.11/linux_sta.php">aqui</a>.<br />
Segundo  o site, os pacotes oferecidos (e sobre o qual traterei) contêm &#8220;Broadcom&#8217;s IEEE 802.11a/b/g/n hybrid Linux® device driver&#8221; para ser usado em hardware baseado em &#8220;Broadcom&#8217;s BCM4311-, BCM4312-, BCM4321-, and BCM4322&#8243;.<br />
Existem diferentes tarballs par arquiteturas 32 bit e 64 bit x86.</p>
<p>Pelo que que parece os caras estão realmente trabalhando nesse código. Desde o fim de outubro já disponibilizaram umas trêsversões diferentes, sendo que a última é de 31 de dezembro de 2008 e que já compila e roda sem problemas nos kernels 2.6.27 e 2.6.28.</p>
<p>Bom, depois que você baixou o driver (lembrando de conferir a sua arquitetura. digite <code>uname -m</code> em um terminal e se aparecer qualquer coisa como <code>x86_64</code>, baixe o 64bits; caso contrário, o 32 deve funcionar), decompacte-o em algum diretório. Cuidado aqui, pois ele não vai criar um diretório para colocar tudo dentro, mas sim decompactar no diretório corrente, caso você use <code>tar xf hybrid-portsrc***.tar.gz</code>. &lt; a href=&#8221;http://en.wikipedia.org/wiki/Tarbomb#Tarbombs&#8221;&gt;Tarbomb?!.</p>
<p>Depois disso você vai precisar ter os headers do seu kernel instalado. Se você compilou seu próprio kernel, eles estarão lá. Se você usa o kernel da sua distribuição, você terá que baixar alguns pacotes como linux-headers-2.6.27 ou algo assim. Para saber a versão do kernel que você está usando no momento, use <code>uname -r</code>.</p>
<p>De posse desses pacotes e da versão do seu kernel, tudo que você precisa é digitar, no diretório raiz dos fontes do driver:<code><br />
make -C /lib/modules/`uname -r`/build M=`pwd`<br />
</code><br />
Ainda existe um warning sobre a falta de  <code>MODULE_LICENSE()</code>, mas nada que impeça o funcionamento.<br />
Se você digitar <code>echo $?</code> e receber um 0, então o driver foi compilado com sucesso.</p>
<p>Esse módulo depende de pelo menos um outro, chamado <code>ieee80211_crypt</code>. É interessante, além dele, carregar os módulos que dão suporte a métodos de encriptação, caso eles não tenham sido compilados built-in. Para tal, faça:<br />
<code><br />
sudo modprobe ieee80211_crypt<br />
sudo modprobe ieee80211_crypt_tkip<br />
sudo modprobe ieee80211_crypt_ccmp<br />
sudo insmod wl.ko<br />
</code></p>
<p>Certo, só que você não quer ter que fazer isso toda vez que inicia a máquina, não é mesmo? Então copie o novo driver para o diretório de módulos do kernel e atualize a relação de dependências:<br />
<code><br />
cp wl.ko /lib/modules/`uname -r`/kernel/net/wireless/<br />
depmod -a<br />
</code></p>
<p>Por fim, edite o arquivo <code>/etc/modules</code> adicionando as seguintes linhas:<br />
<code><br />
ieee80211_crypt<br />
ieee80211_crypt_tkip<br />
ieee80211_crypt_ccmp<br />
wl<br />
</code></p>
<p>Isso vai fazer com que os módulos sejam carregados na inicialização.</p>
<p>Prontinho, agora você tem sua wireless funcionando, &#8220;rodando&#8221; um código que você pode conhecer. =o)</p>
<p>Ah, quase ia esquecendo. Caso você esteja usando os drivers b43, b43legacy ou b43xx, certifique-se de removê-los antes de carregado o novo driver hybrid. Remover o ndiswrapper também pode ser uma boa pedida, caso você não dependa dele para mais nada.<br />
<code><br />
rmmod bcm43xx; rmmod b43; rmmod b43legacy; rm ndiswrapper<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=170&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/8NvELhIcHMg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2009/01/06/instalando-driver-broadcom-80211-linux-sta-a-partir-dos-fontes-no-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 8.10 e libpangocairo-1.0.so.0</title>
		<link>http://danielneis.wordpress.com/2008/12/30/ubuntu-810-e-libpangocairo-10so0/</link>
		<comments>http://danielneis.wordpress.com/2008/12/30/ubuntu-810-e-libpangocairo-10so0/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 12:51:28 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux tips bugs]]></category>

		<guid isPermaLink="false">http://danielneis.wordpress.com/?p=168</guid>
		<description><![CDATA[Opa, essa é quente.
Se você atualizou seu Ubuntu para a versão mais nova e teve problemas com o GDM e outros aplicativos GTK que te diziam algo como:
/usr/lib/libpangocairo-1.0.so.0: undefined symbol: cairo_surface_has_show_text_glyphs
seus problemas estão resolvidos!
basta fazet o seguinte:
sudo rm /usr/local/lib/libcairo.*
ps.: solução adaptada de https://bugs.launchpad.net/ubuntu/+bug/255660
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=168&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Opa, essa é quente.<br />
Se você atualizou seu Ubuntu para a versão mais nova e teve problemas com o GDM e outros aplicativos GTK que te diziam algo como:</p>
<p>/usr/lib/libpangocairo-1.0.so.0: undefined symbol: cairo_surface_has_show_text_glyphs</p>
<p>seus problemas estão resolvidos!<br />
basta fazet o seguinte:</p>
<p>sudo rm /usr/local/lib/libcairo.*</p>
<p>ps.: solução adaptada de https://bugs.launchpad.net/ubuntu/+bug/255660</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=168&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/Fj0CxhTe7HY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/12/30/ubuntu-810-e-libpangocairo-10so0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>Desabilitando o touchpad do seu notebook no Linux</title>
		<link>http://danielneis.wordpress.com/2008/11/23/desabilitando-o-touchpad-do-seu-notebook-no-linux/</link>
		<comments>http://danielneis.wordpress.com/2008/11/23/desabilitando-o-touchpad-do-seu-notebook-no-linux/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 18:41:46 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[dicas]]></category>
		<category><![CDATA[rapidinhas]]></category>
		<category><![CDATA[linux modules]]></category>

		<guid isPermaLink="false">http://danielneis.wordpress.com/?p=164</guid>
		<description><![CDATA[Então você comprou aquele super mouse novinho em folha e quer finalmente se livrar do seu touchpad? Principalmente por quê você sempre acaba tocando nele enquanto escreve e o clique acidental leva o foco embora ? Bom, no linux é muito fácil desabilitar temporariamente o touchpad, basta fazer:

$ sudo modprobe -r psmouse

E voilá! Fim dos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=164&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Então você comprou <a title="Logitech VX Revolution" href="http://www.logitech.com/index.cfm/394/165&amp;cl=us,en">aquele super mouse novinho em folha</a> e quer finalmente se livrar do seu touchpad? Principalmente por quê você sempre acaba tocando nele enquanto escreve e o clique acidental leva o foco embora ? Bom, no linux é muito fácil desabilitar temporariamente o touchpad, basta fazer:<br />
<code><br />
$ sudo modprobe -r psmouse<br />
</code></p>
<p>E voilá! Fim dos cliques acidentais. Mas é verdade que isso só irá durar até o próximo reboot. Se você quiser desabilitá-lo para sempre, adicione-o à lista negra de módulos. Como superusuário, digite:<br />
<code><br />
$ echo blacklist psmouse &gt;&gt; /etc/modprobe.d/blacklist<br />
</code></p>
<p>Agora seu touchpad ficará desligado para sempre.</p>
<p>ps.: talvez vocês não tenham percebido, mas a URL do blog mudou para <a class="linkification-ext" title="http://danielneis.wordpress.com" href="http://danielneis.wordpress.com">http://danielneis.wordpress.com</a>, visitando o endereço antigo o seu navegador receberá uma resposta <a title="301 Moved Permanently" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.2">&#8220;301 Moved Permanently&#8221;</a> e será automaticamente redirecionado para o endereço novo. Simples assim.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=164&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/zAb_rS5AvKY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/11/23/desabilitando-o-touchpad-do-seu-notebook-no-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-10-28</title>
		<link>http://danielneis.wordpress.com/2008/10/28/links-for-2008-10-28/</link>
		<comments>http://danielneis.wordpress.com/2008/10/28/links-for-2008-10-28/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 01:05:13 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[favoritadosdodia]]></category>

		<guid isPermaLink="false">http://blogs.floriparug.org/neis/2008/10/28/links-for-2008-10-28/</guid>
		<description><![CDATA[

Redirecionamento 404 com PHP &#124; Linux para Todos
(tags: php tips)


ext/mysqli: Part I &#8211; Overview and Prepared Statements
(tags: php mysqli)


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=161&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.linuxparatodos.com.br/artigos/redirecionamento-404-com-php">Redirecionamento 404 com PHP | Linux para Todos</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/php">php</a> <a href="http://delicious.com/danielneis/tips">tips</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://devzone.zend.com/node/view/id/686">ext/mysqli: Part I &#8211; Overview and Prepared Statements</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/php">php</a> <a href="http://delicious.com/danielneis/mysqli">mysqli</a>)</div>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=161&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/xptuhlM-B3w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/10/28/links-for-2008-10-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-10-26</title>
		<link>http://danielneis.wordpress.com/2008/10/26/links-for-2008-10-26/</link>
		<comments>http://danielneis.wordpress.com/2008/10/26/links-for-2008-10-26/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 01:02:33 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[favoritadosdodia]]></category>

		<guid isPermaLink="false">http://blogs.floriparug.org/neis/2008/10/26/links-for-2008-10-26/</guid>
		<description><![CDATA[

Rusty Razor Blade » Blog Archive » Executing MySQL queries within VIM
(tags: vim tips mysql)


Wonderfull World of MySQL Storage Engines slides are now published &#124; MySQL Performance Blog
(tags: talks mysql)


Oktapodi
(tags: movies animation)


Dailymotion &#8211; Oktapodi, um vídeo de gamaniak. oktapodi, animation, goblins
(tags: videos dailymotion animation)


Kernel oops bugcount
(tags: linux kernel tools)


How PowerTOP, LatencyTOP, and Five-Second Boot Improve [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=160&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.rustyrazorblade.com/2008/08/01/executing-mysql-queries-within-vim/">Rusty Razor Blade » Blog Archive » Executing MySQL queries within VIM</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/vim">vim</a> <a href="http://delicious.com/danielneis/tips">tips</a> <a href="http://delicious.com/danielneis/mysql">mysql</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.mysqlperformanceblog.com/2008/08/11/wonderfull-world-of-mysql-storage-engines-slides-are-now-published/">Wonderfull World of MySQL Storage Engines slides are now published | MySQL Performance Blog</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/talks">talks</a> <a href="http://delicious.com/danielneis/mysql">mysql</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.oktapodi.com/">Oktapodi</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/movies">movies</a> <a href="http://delicious.com/danielneis/animation">animation</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.dailymotion.com/video/x6hlr6_oktapodi_fun">Dailymotion &#8211; Oktapodi, um vídeo de gamaniak. oktapodi, animation, goblins</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/videos">videos</a> <a href="http://delicious.com/danielneis/dailymotion">dailymotion</a> <a href="http://delicious.com/danielneis/animation">animation</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.kerneloops.org/">Kernel oops bugcount</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/linux">linux</a> <a href="http://delicious.com/danielneis/kernel">kernel</a> <a href="http://delicious.com/danielneis/tools">tools</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://broadcast.oreilly.com/2008/09/how-powertop-latencytop-and-fi.html">How PowerTOP, LatencyTOP, and Five-Second Boot Improve Desktop Linux &#8211; O&#39;Reilly Broadcast</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/linux">linux</a> <a href="http://delicious.com/danielneis/interviews">interviews</a> <a href="http://delicious.com/danielneis/performance">performance</a> <a href="http://delicious.com/danielneis/powertop">powertop</a> <a href="http://delicious.com/danielneis/latencytop">latencytop</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.latencytop.org/">LatencyTOP</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/tuning">tuning</a> <a href="http://delicious.com/danielneis/tools">tools</a> <a href="http://delicious.com/danielneis/linux">linux</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://tuxtraining.com/2008/09/28/how-to-make-ubuntu-extremely-fast/">Tux Training » Blog Archive » How to make Ubuntu extremely fast</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/tips">tips</a> <a href="http://delicious.com/danielneis/ubuntu">ubuntu</a> <a href="http://delicious.com/danielneis/performance">performance</a> <a href="http://delicious.com/danielneis/tuning">tuning</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.linux.com/feature/143896">Linux.com :: Using free software for HTTP load testing</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/performance">performance</a> <a href="http://delicious.com/danielneis/testing">testing</a> <a href="http://delicious.com/danielneis/tools">tools</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html">mod_deflate &#8211; Apache HTTP Server</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/apache">apache</a> <a href="http://delicious.com/danielneis/mod_deflate">mod_deflate</a> <a href="http://delicious.com/danielneis/optimization">optimization</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://baheyeldin.com/technology/linux/installing-php-apc-on-ubuntu-dapper-and-debian.html">Installing PHP APC on Ubuntu Dapper (and Debian?) | The Baheyeldin Dynasty</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/apc">apc</a> <a href="http://delicious.com/danielneis/tutorial">tutorial</a> <a href="http://delicious.com/danielneis/php">php</a> <a href="http://delicious.com/danielneis/linux">linux</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.villafanestudios.com/pumpkins.htm">Gallery / Toys and Collectibles &#8211; Villafane Studios Artist Ray Villafane</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/images">images</a> <a href="http://delicious.com/danielneis/skulls">skulls</a>)</div>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=160&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/W7dL1NOu5rM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/10/26/links-for-2008-10-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-10-25</title>
		<link>http://danielneis.wordpress.com/2008/10/25/links-for-2008-10-25/</link>
		<comments>http://danielneis.wordpress.com/2008/10/25/links-for-2008-10-25/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 01:01:41 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[favoritadosdodia]]></category>

		<guid isPermaLink="false">http://blogs.floriparug.org/neis/2008/10/25/links-for-2008-10-25/</guid>
		<description><![CDATA[

A quick and ditry alternative to Cacti &#124; blog.arithm
(tags: cacti monitoring)


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=159&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul class="delicious">
<li>
<div class="delicious-link"><a href="http://blog.arithm.com/2008/02/09/a-quick-and-ditry-alternative-to-cacti/">A quick and ditry alternative to Cacti | blog.arithm</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/cacti">cacti</a> <a href="http://delicious.com/danielneis/monitoring">monitoring</a>)</div>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=159&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/drdgJliglH0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/10/25/links-for-2008-10-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-10-23</title>
		<link>http://danielneis.wordpress.com/2008/10/23/links-for-2008-10-23/</link>
		<comments>http://danielneis.wordpress.com/2008/10/23/links-for-2008-10-23/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 01:05:12 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[favoritadosdodia]]></category>

		<guid isPermaLink="false">http://blogs.floriparug.org/neis/2008/10/23/links-for-2008-10-23/</guid>
		<description><![CDATA[

Using Moodle 2nd Edition
(tags: moodle online book)


cannot execute files from other partition &#8211; Ubuntu Forums
(tags: linux fstab)


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=158&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul class="delicious">
<li>
<div class="delicious-link"><a href="http://issuu.com/iusher/docs/usingmoodle2?mode=embed&amp;documentId=080624142903-4cc5c9e016844a70b2d4b211268b5d82&amp;layout=grey">Using Moodle 2nd Edition</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/moodle">moodle</a> <a href="http://delicious.com/danielneis/online">online</a> <a href="http://delicious.com/danielneis/book">book</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://ubuntuforums.org/showthread.php?t=196369">cannot execute files from other partition &#8211; Ubuntu Forums</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/linux">linux</a> <a href="http://delicious.com/danielneis/fstab">fstab</a>)</div>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=158&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/f0negP1BJAs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/10/23/links-for-2008-10-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-10-22</title>
		<link>http://danielneis.wordpress.com/2008/10/22/links-for-2008-10-22/</link>
		<comments>http://danielneis.wordpress.com/2008/10/22/links-for-2008-10-22/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 01:04:00 +0000</pubDate>
		<dc:creator>danielneis</dc:creator>
				<category><![CDATA[favoritadosdodia]]></category>

		<guid isPermaLink="false">http://blogs.floriparug.org/neis/2008/10/22/links-for-2008-10-22/</guid>
		<description><![CDATA[

JOIN Performance &#38; Charsets &#124; MySQL Performance Blog
(tags: mysql performance)


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=157&subd=danielneis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.mysqlperformanceblog.com/2008/10/21/join-performance-charsets/">JOIN Performance &amp; Charsets | MySQL Performance Blog</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/danielneis/mysql">mysql</a> <a href="http://delicious.com/danielneis/performance">performance</a>)</div>
</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielneis.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielneis.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielneis.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielneis.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielneis.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielneis.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielneis.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielneis.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielneis.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielneis.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielneis.wordpress.com&blog=5351373&post=157&subd=danielneis&ref=&feed=1" /></div><img src="http://feeds.feedburner.com/~r/blog-do-neis/~4/DAFtuOtyV7E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://danielneis.wordpress.com/2008/10/22/links-for-2008-10-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">danielneis</media:title>
		</media:content>
	</item>
	</channel>
</rss>
