<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog do Cadu</title>
	<atom:link href="http://eduardobuarque.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eduardobuarque.wordpress.com</link>
	<description>por Carlos Eduardo Buarque em eduardobuarque.wordpress.com</description>
	<lastBuildDate>Fri, 20 Jan 2012 19:47:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='eduardobuarque.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog do Cadu</title>
		<link>http://eduardobuarque.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://eduardobuarque.wordpress.com/osd.xml" title="Blog do Cadu" />
	<atom:link rel='hub' href='http://eduardobuarque.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing NS-2 2.33 or 2.34 on Mac OS X 10.6 (aka Snow Leopard)</title>
		<link>http://eduardobuarque.wordpress.com/2011/09/08/installing-ns-2-2-33-or-2-34-on-mac-os-x-10-6-aka-snow-leopard/</link>
		<comments>http://eduardobuarque.wordpress.com/2011/09/08/installing-ns-2-2-33-or-2-34-on-mac-os-x-10-6-aka-snow-leopard/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 13:43:45 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[computação]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ns2]]></category>
		<category><![CDATA[redes]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[simulation]]></category>
		<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[2.33]]></category>
		<category><![CDATA[2.34]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=179</guid>
		<description><![CDATA[Apply the following modifications to the file ns-allinone-2.34/install: (add what&#8217;s in red and in green*) * the lines in green are, possibly, only necessary to Mac OS X 10.6 (aka Snow Leopard). With Mac OS X 10.5 (aka Leopard), the red lines should be enough. Modification 1 echo "============================================================" echo "* Build OTcl-$OTCLVER" echo "============================================================" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=179&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apply the following modifications to the file ns-allinone-2.34/install: (add what&#8217;s in <span style="color:#ff0000;">red</span> and in <span style="color:#00ff00;">green</span>*)</p>
<p><em>* the lines in green are, possibly, only necessary to Mac OS X 10.6 (aka Snow Leopard). With Mac OS X 10.5 (aka Leopard), the red lines should be enough.</em></p>
<p><strong><em>Modification 1</em></strong></p>
<pre>echo "============================================================"
echo "* Build OTcl-$OTCLVER"
echo "============================================================"
cd ./otcl-$OTCLVER
blame='Please check <a href="http://www.isi.edu/nsnam/ns/ns-problems.html">http://www.isi.edu/nsnam/ns/ns-problems.html</a>
for common problems and bug fixes.'
if  [ "${test_cygwin}" = "true" ]; then
        ./configure --x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include || die "otcl-$OTCLVER configuration failed! Exiting ...";
else
        ./configure <span style="color:#ff0000;">--x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include</span><span style="color:#00ff00;"> CFLAGS="-framework CoreFoundation"</span> || die "otcl-$OTCLVER configuration failed! Exiting ...";
fi
if make
then
     echo "otcl-$OTCLVER has been installed successfully."
else
     echo "otcl-$OTCLVER make failed! Exiting ..."
     echo "See <a href="http://www.isi.edu/nsnam/ns/ns-problems.html">http://www.isi.edu/nsnam/ns/ns-problems.html</a> for problems"
     exit
fi
cd ..</pre>
<p><strong><em>Modification 2</em></strong></p>
<pre>echo "============================================================"
echo "* Build Tclcl-$TCLCLVER"
echo "============================================================"
cd ./tclcl-$TCLCLVER
if  [ "${test_cygwin}" = "true" ]; then
        ./configure --x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include || die "tclcl-$TCLCLVER configuration failed! Exiting ...";
else
        ./configure <span style="color:#ff0000;">--x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include</span> --with-otcl=../otcl-$OTCLVER || die "tclcl-$TCLCLVER configuration failed! Exiting ..."
fi
if make
then
     echo "tclcl-$TCLCLVER has been installed successfully."
else
     echo "tclcl-$TCLCLVER make failed! Exiting ..."
     echo "See <a href="http://www.isi.edu/nsnam/ns/ns-problems.html">http://www.isi.edu/nsnam/ns/ns-problems.html</a> for problems"
     exit
fi    
cd ../</pre>
<p><strong><em>Modification 3</em></strong></p>
<pre>echo "============================================================"
echo "* Build ns-$NSVER"
echo "============================================================"
cd ./ns-$NSVER
if [ -f Makefile ] ; then
     make distclean
fi
if  [ "${test_cygwin}" = "true" ]; then
        ./configure --x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include || die "Ns configuration failed! Exiting ...";
else
        ./configure <span style="color:#ff0000;">--x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include</span> <span style="color:#00ff00;">LIBS="-framework CoreFoundation"</span> --with-otcl=../otcl-$OTCLVER --with-tclcl=../tclcl-$TCLCLVER || die "Ns configuration failed! Exiting ...";
fi
if make
then
     echo " Ns has been installed successfully."
else
     echo "Ns make failed!"
     echo "See <a href="http://www.isi.edu/nsnam/ns/ns-problems.html">http://www.isi.edu/nsnam/ns/ns-problems.html</a> for problems"
     exit
fi
cd ../</pre>
<p><strong><em>Modification 4</em></strong></p>
<pre>echo "============================================================"
echo "* Build nam-$NAMVER"
echo "============================================================"
ln -s otcl-$OTCLVER otcl
ln -s tclcl-$TCLCLVER tclcl
cd ./nam-$NAMVER
# XXX temporary OS X hack
if  [ "${test_darwin}" = "true" ]; then
ln -s /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation libcorefoundation.dylib
fi
if  [ "${test_cygwin}" = "true" ]; then
        ./configure --x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include --with-tclcl=$CUR_PATH/tclcl-$TCLCLVER  || die "Nam configuration failed! Exiting ...";
else
        ./configure <span style="color:#ff0000;">--x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include</span> <span style="color:#00ff00;">V_LIBS="-framework CoreFoundation"</span> --with-otcl=../otcl-$OTCLVER --with-tclcl=../tclcl-$TCLCLVER || die "Nam configuration failed! Exiting ...";
fi
............
cd ../</pre>
<p>After applying those modifications, use Terminal app to go to the ns-allinone-2.3x directory and enter  ./install.</p>
<p>Those installation procedures were tested with Max OS X 10.6, but they should work just fine with 10.5.</p>
<p><em><strong>STILL HAVING PROBLEMS DURING INSTALLATION?</strong></em></p>
<p>1. If, even after applying the above modifications, your installation fails, proceed as follows:</p>
<p>Install first Xcode development tools. They come with Mac OS X 10.6 CD as an optional installation. After doing that, proceed as explained above.</p>
<p>2. Still failing? Check the following instruction:</p>
<p>In the <em>configure</em> files inside nam, ns, otcl and tclcl directories, look for xlibdirs and xincdirs and check if the following lines, respectively, can be found:</p>
<p>/Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/lib \</p>
<p>and</p>
<p>/Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include \</p>
<p>In NS-2 version 2.34, those lines are present. You should carefully  look for them when using other versions.</p>
<p>&nbsp;</p>
<p>Anything to say about it? Drop a line in the comments!</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=179&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2011/09/08/installing-ns-2-2-33-or-2-34-on-mac-os-x-10-6-aka-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
		<item>
		<title>Mandando notícias</title>
		<link>http://eduardobuarque.wordpress.com/2010/08/26/mandando-noticias/</link>
		<comments>http://eduardobuarque.wordpress.com/2010/08/26/mandando-noticias/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 22:53:49 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[notícias]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=176</guid>
		<description><![CDATA[Faz muito, mas muito tempo mesmo que eu não posto nada aqui. Mac, Android, Nagios, Centreon, Linux&#8230; Assunto é o que não falta, o que falta é tempo. Estou com uma série de tutoriais, dicas e comentários sobre uma tonelada de coisas. Aos poucos pretendo postá-las, só não sei se nesse blog ou se em outro [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=176&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Faz muito, mas muito tempo mesmo que eu não posto nada aqui.</p>
<p>Mac, Android, Nagios, Centreon, Linux&#8230; Assunto é o que não falta, o que falta é tempo.</p>
<p>Estou com uma série de tutoriais, dicas e comentários sobre uma tonelada de coisas. Aos poucos pretendo postá-las, só não sei se nesse blog ou se em outro voltado a assuntos mais técnicos.</p>
<p>Bem, enquanto não encontro tempo pra postar, agradeço aos milhares (sim! milhares!) de visitas que o blog recebe por mês.</p>
<p>Espero que mesmo desatualizado, esse blog ajude muitos de vocês.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=176&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2010/08/26/mandando-noticias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
		<item>
		<title>Covertendo WMA em MP3 no Mac OS. De graça ;)</title>
		<link>http://eduardobuarque.wordpress.com/2010/02/15/covertendo-wma-em-mp3-no-mac-os-de-graca/</link>
		<comments>http://eduardobuarque.wordpress.com/2010/02/15/covertendo-wma-em-mp3-no-mac-os-de-graca/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:07:48 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[musica]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[áudio]]></category>
		<category><![CDATA[mac os]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[wma]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=172</guid>
		<description><![CDATA[Hoje em dia, a regra é arquivo de áudio em MP3. Mesmo assim, vez ou outra você pode encontrar um em WMA. Executar e lidar com esses arquivos no Windows não é nenhum problema, já que ele é um formato proprietário da Microsoft (Windows Media Audio &#8211; WMA). Já no Mac a história é diferente. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=172&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hoje em dia, a regra é arquivo de áudio em MP3. Mesmo assim, vez ou outra você pode encontrar um em WMA.</p>
<p>Executar e lidar com esses arquivos no Windows não é nenhum problema, já que ele é um formato proprietário da Microsoft (<em>Windows Media Audio</em> &#8211; WMA). Já no Mac a história é diferente. Você pode até usar plugins capazes de executar os arquivos, mas nem espere adicioná-los ao iTunes.</p>
<p>Existem diversos conversores de WMA para MP3 para o Mac oS, mas ou eles são pagos e/ou não funcionavam como prometido.</p>
<p>Uma alternativa é um programa chamado <a title="Download o All2MP3" href="http://download.cnet.com/All2MP3/3000-2140_4-190407.html" target="_blank">All2MP3</a>. Ele é grátis, simples E funciona.</p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 494px"><img class="size-full wp-image-173" title="All2MP3" src="http://eduardobuarque.files.wordpress.com/2010/02/picture.png?w=510" alt="Janela do All2MP3"   /><p class="wp-caption-text">Janela do All2MP3</p></div>
<p style="text-align:center;">
<p>Tudo que você tem que fazer é arrastar para a janela do programa os arquivos de áudio que você quer converter, escolher a qualidade dos arquivos a serem gerados, clicar em &#8216;Convert&#8217; e pronto!</p>
<p>Como visto na imagem, o programa converte diversos formatos de áudio para MP3, desde OGG até WMA.</p>
<p>Biaxe <a title="Download do All2MP3" href="http://download.cnet.com/All2MP3/3000-2140_4-190407.html" target="_blank">aqui</a> o All2MP3.</p>
<p>P.S.: Não testei o programa quanto ao uso com arquivos WMA protegidos. Se você testar, deixe um comentário com a sua experiência.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=172&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2010/02/15/covertendo-wma-em-mp3-no-mac-os-de-graca/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>

		<media:content url="http://eduardobuarque.files.wordpress.com/2010/02/picture.png" medium="image">
			<media:title type="html">All2MP3</media:title>
		</media:content>
	</item>
		<item>
		<title>Bairros atendidos pela GVT em Recife e Jaboatão</title>
		<link>http://eduardobuarque.wordpress.com/2009/10/27/bairros-atendidos-pela-gvt-em-recife-e-jaboatao/</link>
		<comments>http://eduardobuarque.wordpress.com/2009/10/27/bairros-atendidos-pela-gvt-em-recife-e-jaboatao/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 00:31:32 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[recife]]></category>
		<category><![CDATA[telecom]]></category>
		<category><![CDATA[gvt]]></category>
		<category><![CDATA[jaboatão]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=160</guid>
		<description><![CDATA[Hoje recebi uma correspondência da GVT dizendo que em breve poderei contratar o serviço deles. Na correspondência há uma lista com os bairros que serão atendidos (pelo menos de primeiro momento) completa ou parcialmente em Recife e Jaboatão. Os bairros são os seguintes: Atendidos totalmente em Recife: Aflitos, Boa Viagem, Casa Forte, Derby, Encruzilhada, Espinheiro, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=160&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-162" title="GVT" src="http://eduardobuarque.files.wordpress.com/2009/10/gvt.jpg?w=510" alt="GVT"   /></p>
<p>Hoje recebi uma correspondência da GVT dizendo que em breve poderei contratar o serviço deles. Na correspondência há uma lista com os bairros que serão atendidos (pelo menos de primeiro momento) completa ou parcialmente em Recife e Jaboatão. Os bairros são os seguintes:</p>
<ul>
<li><strong>Atendidos totalmente em Recife:</strong> Aflitos, Boa Viagem, Casa Forte, Derby, Encruzilhada, Espinheiro, Graças, Hipódromo, Madalena, Parnamirim, Porto de Parada, Santo Antônio, Soledade, Torreão</li>
<li><strong>Atendidos parcialmente em Recife:</strong> Casa Amarela, Coelhos, Cordeiro, Ilha do Leite, Ilha do Retiro, Jaqueira, Pina, Poço da Panela, Rosarinho, Santana, Santo Amaro, Torre, Zumbi</li>
<li><strong>Atendidos totalmente em Jaboatão:</strong> Piedade</li>
<li><strong>Atendidos parcialmente em Jaboatão:</strong> Jardim Jordão, Guararapes, Cajueiro Seco, Candeias, Barra de Jangada, Prazeres</li>
</ul>
<p>Para saber mais, acesse <a title="GVT" href="http://www.gvt.com.br" target="_blank">www.gvt.com.br</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=160&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2009/10/27/bairros-atendidos-pela-gvt-em-recife-e-jaboatao/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>

		<media:content url="http://eduardobuarque.files.wordpress.com/2009/10/gvt.jpg" medium="image">
			<media:title type="html">GVT</media:title>
		</media:content>
	</item>
		<item>
		<title>Conta na iTunes Store sem cartão de crédito (v 2.0)</title>
		<link>http://eduardobuarque.wordpress.com/2008/10/27/conta-na-itunes-store-sem-cartao-de-credito-v-20/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/10/27/conta-na-itunes-store-sem-cartao-de-credito-v-20/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 22:27:04 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[conta]]></category>
		<category><![CDATA[itunes store]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=155</guid>
		<description><![CDATA[Há algum tempo atrás, postei sobre uma promoção da Billboard que oferecia downloads gratuitos de algumas músicas na iTunes Store americana e, por consequência, uma conta na iTunes Stores sem precisar de cartão de crédito. Claro, essa promoção chegou ao fim (há muito tempo). Mas acabei de achar uma maneira de fazer sua conta na [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=155&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Há algum tempo atrás, <a href="http://eduardobuarque.wordpress.com/2007/05/08/conta-na-itunes-store-sem-cartao-de-credito-seja-rapido/" target="_blank">postei</a> sobre uma promoção da Billboard que oferecia downloads gratuitos de algumas músicas na iTunes Store americana e, por consequência, uma conta na iTunes Stores sem precisar de cartão de crédito.</p>
<p>Claro, essa promoção chegou ao fim (há muito tempo). Mas acabei de achar uma maneira de fazer sua conta na iTS sem precisar de cartão de crédito. Vá nesse <a href="http://www.ghacks.net/2008/10/25/create-a-free-us-itunes-account/" target="_blank">link</a> e siga o passo-a-passo. É bem simples.</p>
<p>Testei e funcionou. O código que eu usei foi esse: XMFYNWG37CG3G9V5.</p>
<p>Espero que funcione com vocês.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=155&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/10/27/conta-na-itunes-store-sem-cartao-de-credito-v-20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
		<item>
		<title>Frequências GSM das operadoras brasileiras de celular</title>
		<link>http://eduardobuarque.wordpress.com/2008/09/14/frequencias-gsm-das-operadoras-brasileiras-de-celular/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/09/14/frequencias-gsm-das-operadoras-brasileiras-de-celular/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 14:45:27 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[brasil]]></category>
		<category><![CDATA[celular]]></category>
		<category><![CDATA[móvel]]></category>
		<category><![CDATA[frequencia]]></category>
		<category><![CDATA[gsm]]></category>
		<category><![CDATA[operadoras]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=146</guid>
		<description><![CDATA[Quando escrevi o post falando sobre a Vivo há mais de um ano atrás, nunca pensei que ele fosse render tanto até hoje. Muitos dos comentários são sobre dúvidas relacionadas às frequências de operação das operadoras. Aqui vai uma lista com as frequências GSM, em MHz, de todas as operadoras do país: Amazônia Celular GSM [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=146&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quando escrevi o <a href="http://eduardobuarque.wordpress.com/2007/03/25/vivo-gsmvivo-gsm/">post falando sobre a Vivo</a> há mais de um ano atrás, nunca pensei que ele fosse render tanto até hoje.</p>
<p>Muitos dos comentários são sobre dúvidas relacionadas às frequências de operação das operadoras.</p>
<p>Aqui vai uma lista com as frequências GSM, em MHz, de todas as operadoras do país:</p>
<table border="0" cellspacing="1" cellpadding="4" width="100%">
<tbody>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Amazônia Celular</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Brasil Telecom</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Claro</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>CTBC</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Oi</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Sercomtel</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Telemig Celular</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>TIM</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 900/1800</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>Vivo</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 850</td>
</tr>
<tr>
<td bgcolor="#ffffff">
<ul>
<li>aeiou</li>
</ul>
</td>
<td bgcolor="#ffffff">GSM 1800</td>
</tr>
</tbody>
</table>
<p>Vale lembrar que em algumas regiões certas operadoras funcionam em apenas uma das frequências indicadas, por isso entre em contato com a sua operadora para saber mais detalhes.</p>
<p>Fontes: <a href="http://www.pontofrio.com.br/pagina/frqueciaCelular.html">Ponto frio</a> e <a href="http://guia.mercadolivre.com.br/saiba-qual-frequncia-operadora-telefonia-celular-43258-VGP">Guia MercadoLivre</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eduardobuarque.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eduardobuarque.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=146&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/09/14/frequencias-gsm-das-operadoras-brasileiras-de-celular/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
		<item>
		<title>Not so Cuil</title>
		<link>http://eduardobuarque.wordpress.com/2008/07/28/not-so-cuil/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/07/28/not-so-cuil/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 13:26:43 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tecnologia]]></category>
		<category><![CDATA[cuil]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=136</guid>
		<description><![CDATA[Hoje um grupo de ex-engenheiros do Google lançou com certo estardalhaço na web um novo serviço de busca chamado Cuil (pronuncia-se cool). Eles dizem que conseguem gastar muito menos que o Google para fazer buscas e que indexam mais páginas que o Google. Te dão uma search box que embaixo diz que eles procuram em [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=136&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hoje um grupo de ex-engenheiros do Google lançou com certo estardalhaço na web um novo serviço de busca chamado Cuil (pronuncia-se cool). Eles dizem que conseguem gastar muito menos que o Google para fazer buscas e que indexam mais páginas que o Google.</p>
<p>Te dão uma search box que embaixo diz que eles procuram em 120bi+ páginas e aí é onde eles falham: em buscas simples (como Barack Obama’s technology policy [via <a href="http://scobleizer.com/" target="_blank">Scoble</a>]) não retornam resultado algum ou quando retornam muitas vezes não tem relevância, enquanto o Google retorna centenas (ou milhares) e a maioria relevante.</p>
<p style="text-align:center;"><a href="http://eduardobuarque.files.wordpress.com/2008/07/cuil-image.jpg"><img class="aligncenter size-full wp-image-137" src="http://eduardobuarque.files.wordpress.com/2008/07/cuil-image.jpg?w=510&#038;h=363" alt="" width="510" height="363" /></a></p>
<p>Tudo bem que eles mesmo assumiram que eles não pretendem competir com o Google (agora) e que eles estão fazendo o que eles acreditam ser a próxima geração de mecanismos de buscas, mas entregar menos do que as pessoas estão acostumadas e menos do que você promete não é bom, principalmente pra um começo&#8230;</p>
<p>Mas o serviço tem algumas coisas que eu gostei: a disposição dos resultados se dá em colunas o que dá pra você ver os resultados (10 por página, assim como o Google) de uma vez só, consegue relacionar as pesquisas e agrupá-las, te dá sugestões de pesquisa enquanto você digita (por default) e tem gente boa por trás dele.</p>
<p>Vale ficar de olho.</p>
<p>Quer tentar? <a href="http://www.cuil.com">www.cuil.com</a></p>
<p>Quer saber mais? Procura no Google <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eduardobuarque.wordpress.com/136/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eduardobuarque.wordpress.com/136/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=136&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/07/28/not-so-cuil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>

		<media:content url="http://eduardobuarque.files.wordpress.com/2008/07/cuil-image.jpg" medium="image" />
	</item>
		<item>
		<title>Existe vida inteligente na Microsoft</title>
		<link>http://eduardobuarque.wordpress.com/2008/04/24/existe-vida-inteligente-na-microsoft/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/04/24/existe-vida-inteligente-na-microsoft/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 00:42:17 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Steve Ballmer]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=123</guid>
		<description><![CDATA[Segundo notícia do site da INFO Online, Steve Ballmer diz que funcionários da Microsoft pedem que ele desista do Yahoo!. Leia a notícia inteira que ainda diz que Steve Ballmer, pela primeira vez, falou em desistir de comprar o Yahoo!.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=123&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Segundo notícia do site da INFO Online, Steve Ballmer diz que funcionários da Microsoft pedem que ele desista do Yahoo!.</p>
<p><a href="http://info.abril.com.br/aberto/infonews/042008/24042008-1.shl" target="_blank">Leia a notícia inteira</a> que ainda diz que Steve Ballmer, pela primeira vez, falou em desistir de comprar o Yahoo!.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eduardobuarque.wordpress.com/123/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eduardobuarque.wordpress.com/123/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=123&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/04/24/existe-vida-inteligente-na-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
		<item>
		<title>O ataque dos Macs</title>
		<link>http://eduardobuarque.wordpress.com/2008/04/21/o-ataque-dos-macs/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/04/21/o-ataque-dos-macs/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 15:09:23 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[computador]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[universidade]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=121</guid>
		<description><![CDATA[O incrível dessa foto da sala de aula de uma universidade americana não é nem o fato de quase todos usarem notebooks, já que notebooks são bem acessíveis por lá (e estou falando de notebooks com boas configurações), o incrível mesmo é todo mundo (ou quase) estar usando um Mac. Com essa foto, fica mais fácil de entender [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=121&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://eduardobuarque.files.wordpress.com/2008/04/mac01.jpg"><img class="aligncenter size-full wp-image-122" src="http://eduardobuarque.files.wordpress.com/2008/04/mac01.jpg?w=510&#038;h=278" alt="" width="510" height="278" /></a></p>
<p>O incrível dessa foto da sala de aula de uma universidade americana não é nem o fato de quase todos usarem notebooks, já que notebooks <a href="http://www.amazon.com/s/ref=sr_nr_n_0?ie=UTF8&amp;rs=541966&amp;keywords=notebook&amp;rh=i%3Aaps%2Ck%3Anotebook%2Ci%3Aelectronics%2Cn%3A172282%2Cn%3A541966%2Cn%3A565108" target="_blank">são bem acessíveis por lá</a> (e estou falando de notebooks com boas configurações), o incrível mesmo é todo mundo (ou quase) estar usando um Mac.</p>
<p>Com essa foto, fica mais fácil de entender <a href="http://www.gartner.com/it/page.jsp?id=648619" target="_blank">os números da análise do Gartner sobre o mercado de computadores pessoais nos EUA</a>.</p>
<p>P.S.: Sempre tem aqueles que preferem manter tudo no <em>old school</em>. <a href="http://feeds.feedburner.com/~r/Omedi/~3/274489459/" target="_blank">Achou</a>? Ou estaria ele usando um <a href="http://www.apple.com/macbookair/" target="_blank">MacBook Air</a>?</p>
<p>P.S.2: Algumas universidades americanas dão notebooks aos seus alunos quando eles entram, talvez seja esse o caso.</p>
<p>Fontes: <a href="http://feeds.feedburner.com/~r/Omedi/~3/274489459/" target="_blank">OMEdI</a> e <a href="http://feeds.tuaw.com/~r/weblogsinc/tuaw/~3/272225557/" target="_blank">TUAW</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eduardobuarque.wordpress.com/121/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eduardobuarque.wordpress.com/121/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=121&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/04/21/o-ataque-dos-macs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>

		<media:content url="http://eduardobuarque.files.wordpress.com/2008/04/mac01.jpg?w=510" medium="image" />
	</item>
		<item>
		<title>Atualização iTunes (7.6.2) e teclado multimídia</title>
		<link>http://eduardobuarque.wordpress.com/2008/04/07/atualizacao-itunes-762-e-teclado-multimidia/</link>
		<comments>http://eduardobuarque.wordpress.com/2008/04/07/atualizacao-itunes-762-e-teclado-multimidia/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 12:18:57 +0000</pubDate>
		<dc:creator>eduardobuarque</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mutimídia]]></category>
		<category><![CDATA[utilidades]]></category>
		<category><![CDATA[multimídia]]></category>
		<category><![CDATA[teclado]]></category>
		<category><![CDATA[teclado multimídia]]></category>

		<guid isPermaLink="false">http://eduardobuarque.wordpress.com/?p=120</guid>
		<description><![CDATA[Há algum tempo atrás, eu dei uma dica de como fazer seu teclado multimídia funcionar com o iTunes, mesmo a janela do programa não sendo a ativa. Com a última atualização do iTunes, a 7.6.2, notei que ele apagou o arquivo que faz o teclado funcionar da pasta Plug-Ins. Além disso, quando o salvei nela [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=120&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Há algum tempo atrás, <a href="http://eduardobuarque.wordpress.com/2007/12/03/teclado-multimidia-funcionando-com-o-itunes/" target="_blank">eu dei uma dica de como fazer seu teclado multimídia funcionar com o iTunes</a>, mesmo a janela do programa não sendo a ativa.</p>
<p>Com a última atualização do iTunes, a 7.6.2, notei que ele apagou o arquivo que faz o teclado funcionar da pasta Plug-Ins. Além disso, quando o salvei nela novamente, para que ele funcionasse, foi preciso reiniciar o iTunes.</p>
<p>Se aconteceu isso com vocês, então já fica a dica.</p>
<p>Valeu pelas visitas e comentários (tanto os postados aqui quanto os ditos diretamente a mim ;D).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/eduardobuarque.wordpress.com/120/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/eduardobuarque.wordpress.com/120/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eduardobuarque.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eduardobuarque.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eduardobuarque.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eduardobuarque.wordpress.com&amp;blog=929415&amp;post=120&amp;subd=eduardobuarque&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eduardobuarque.wordpress.com/2008/04/07/atualizacao-itunes-762-e-teclado-multimidia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a84dbeade0967a80ee7f415eadd2da4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Cadu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
