<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Michoacano&#039;s Blog &#187; Facebook</title>
	<atom:link href="http://michoacano.com.mx/tag/facebook/feed/" rel="self" type="application/rss+xml" />
	<link>http://michoacano.com.mx</link>
	<description>Blog de un mundialmente conocido habitante del estado de Michoacán. Estudiante del Tecnológico de Morelia, nerd, geek, cinéfilo, metalero, ateo y algo de activista.</description>
	<lastBuildDate>Tue, 15 May 2012 22:50:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Actualizar estado de facebook desde PHP y CURL</title>
		<link>http://michoacano.com.mx/actualizar-estado-de-facebook-desde-php-y-curl/</link>
		<comments>http://michoacano.com.mx/actualizar-estado-de-facebook-desde-php-y-curl/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 16:03:33 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[CURL]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=3225</guid>
		<description><![CDATA[&#60;?PHP /******************************* * Facebook Status Updater * Christian Flickinger * http://nexdot.net/blog * April 20, 2007 *******************************/ &#160; $status = 'YOUR_STATUS'; $first_name = 'YOUR_FIRST_NAME'; $login_email = 'YOUR_LOGIN_EMAIL'; $login_pass = 'YOUR_PASSWORD'; &#160; $ch = curl_init&#40;&#41;; curl_setopt&#40;$ch, CURLOPT_URL, 'https://login.facebook.com/login.php?m&#38;amp;next=http%3A%2F%2Fm.facebook.com%2Fhome.php'&#41;; curl_setopt&#40;$ch, CURLOPT_POSTFIELDS,'email='.urlencode&#40;$login_email&#41;.'&#38;pass='.urlencode&#40;$login_pass&#41;.'&#38;login=Login'&#41;; curl_setopt&#40;$ch, CURLOPT_POST, 1&#41;; curl_setopt&#40;$ch, CURLOPT_HEADER, 0&#41;; curl_setopt&#40;$ch, CURLOPT_FOLLOWLOCATION, 1&#41;; curl_setopt&#40;$ch, CURLOPT_SSL_VERIFYPEER, false&#41;; curl_setopt&#40;$ch, CURLOPT_COOKIEJAR, &#34;my_cookies.txt&#34;&#41;; curl_setopt&#40;$ch, CURLOPT_COOKIEFILE, [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?PHP</span>
<span style="color: #666666; font-style: italic;">/*******************************
*	Facebook Status Updater
*	Christian Flickinger
*	http://nexdot.net/blog
*	April 20, 2007
*******************************/</span>
&nbsp;
<span style="color: #000088;">$status</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'YOUR_STATUS'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$first_name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'YOUR_FIRST_NAME'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$login_email</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'YOUR_LOGIN_EMAIL'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$login_pass</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'YOUR_PASSWORD'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">'https://login.facebook.com/login.php?m&amp;amp;next=http%3A%2F%2Fm.facebook.com%2Fhome.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span><span style="color: #0000ff;">'email='</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$login_email</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;pass='</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$login_pass</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;login=Login'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_HEADER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_FOLLOWLOCATION<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_SSL_VERIFYPEER<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_COOKIEJAR<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;my_cookies.txt&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_COOKIEFILE<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;my_cookies.txt&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_USERAGENT<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://m.facebook.com/home.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$page</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/name=&quot;post_form_id&quot; value=&quot;(.*)&quot; \/&gt;'</span><span style="color: #339933;">.</span><span style="color: #990000;">ucfirst</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$first_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$page</span><span style="color: #339933;">,</span> <span style="color: #000088;">$form_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span><span style="color: #0000ff;">'post_form_id='</span><span style="color: #339933;">.</span><span style="color: #000088;">$form_id</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;status='</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$status</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;update=Update'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://m.facebook.com/home.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/actualizar-estado-de-facebook-desde-php-y-curl/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Noticias en tiempo real y el cambio del timeline de Facebook</title>
		<link>http://michoacano.com.mx/noticias-en-tiempo-real-y-el-cambio-del-timeline-de-facebook/</link>
		<comments>http://michoacano.com.mx/noticias-en-tiempo-real-y-el-cambio-del-timeline-de-facebook/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:10:38 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=3123</guid>
		<description><![CDATA[Seamos sinceros, facebook era una muy buena herramienta hasta que la gente común y corriente empezó ha llenarte tu timeline con la galleta de la suerte y el test sobre si tu novio te quiere. Una cosa es publicar algo que es gracioso la primera vez que hacerlo todo el tiempo y 20 veces al día. [...]]]></description>
			<content:encoded><![CDATA[<p>Seamos sinceros, facebook era una muy buena herramienta hasta que la gente común y corriente empezó ha llenarte tu timeline con la galleta de la suerte y el test sobre si tu novio te quiere.</p>
<p>Una cosa es publicar algo que es gracioso la primera vez que hacerlo todo el tiempo y 20 veces al día.  Yo he tenido que bloquear no solo aplicaciones si no personas completas. Si no es un desperdicio la red y se convierte en un metroflog, hi5 o myspace.  Cada quien buscara la manera del perder el tiempo, pero a mi no me gusta esa forma.</p>
<p>Desde hace algunas semanas facebook cambio nuestra página de inicio donde  solo muestra lo que cree que es importante para ti.</p>
<p style="text-align: center;"><a rel="attachment wp-att-3124" href="http://michoacano.com.mx/noticias-en-tiempo-real-y-el-cambio-del-timeline-de-facebook/facebook-noticias-en-tiempo-real/"><img class="aligncenter size-full wp-image-3124" title="facebook noticias en tiempo real" src="http://michoacano.com.mx/wp-content/uploads/2009/11/facebook-noticias-en-tiempo-real.jpg" alt="facebook noticias en tiempo real" width="590" height="453" /></a></p>
<p style="text-align: left;">No estoy seguro por que el cambio, pero quedas en un dilema. Por una parte era muy bueno el timeline como lo es el de twitter donde lo primero es lo último pero mostrando siempre todo. Ahora hace resúmenes un poco raros, donde quien sabe como escoge lo que para ti es relevante aunque muchas veces acierta, hay cosas que estan en &#8220;Ver las noticias en tiempo real&#8221; y me gustaría verlas ahí. </p>
<p>Via: <a href="http://adictosfacebook.com/noticias-en-tiempo-real-y-el-timeline-de-facebook/">Noticias en tiempo real facebook</a></p>
]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/noticias-en-tiempo-real-y-el-cambio-del-timeline-de-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook y Hitler</title>
		<link>http://michoacano.com.mx/facebook-y-hitler/</link>
		<comments>http://michoacano.com.mx/facebook-y-hitler/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 14:49:57 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=2954</guid>
		<description><![CDATA[¿Qué pasaría si facebook estuviera en la época de hitler?]]></description>
			<content:encoded><![CDATA[<p>¿Qué pasaría si facebook estuviera en la época de hitler?</p>
<p><a rel="attachment wp-att-2955" href="http://michoacano.com.mx/facebook-y-hitler/facesgiiv20/"><img class="aligncenter size-full wp-image-2955" title="facebook hitler" src="http://michoacano.com.mx/wp-content/uploads/2009/10/facesgiiv20.jpg" alt="facebook hitler" width="537" height="2650" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/facebook-y-hitler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Descargar aplicación facebook 3.0 para el iPhone</title>
		<link>http://michoacano.com.mx/descargar-facebook-3-0-para-el-iphone/</link>
		<comments>http://michoacano.com.mx/descargar-facebook-3-0-para-el-iphone/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 13:10:05 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aplicaciones iPhone]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[IPHONE]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=2515</guid>
		<description><![CDATA[Ya esta la nueva versión de la aplicación facebook para el iPhone. Me llama la atención se habla demasiado de una aplicación para un celular en particular como el iPhone. Quizás el iPhone nunca ha estado en comparación con todos los demás. Pero yo nunca he visto &#8220;ya salio app facebook para blackberry&#8221; en cientos [...]]]></description>
			<content:encoded><![CDATA[<p>Ya esta la nueva versión de la aplicación facebook para el iPhone.</p>
<p><a rel="attachment wp-att-2516" href="http://michoacano.com.mx/descargar-facebook-3-0-para-el-iphone/facebook-iphone/"><img class="aligncenter size-full wp-image-2516" title="facebook-iphone" src="http://michoacano.com.mx/wp-content/uploads/2009/08/facebook-iphone.png" alt="facebook-iphone" width="468" height="425" /></a></p>
<p>Me llama la atención se habla demasiado de una aplicación para un celular en particular como el iPhone. Quizás el iPhone nunca ha estado en comparación con todos los demás. Pero yo nunca he visto &#8220;ya salio app facebook para blackberry&#8221; en cientos de blogs por ejemplo.</p>
<p>Descargar la aplicación <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&#038;mt=8">aquí</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/descargar-facebook-3-0-para-el-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diputados con cuenta y perfil en Facebook</title>
		<link>http://michoacano.com.mx/diputados-con-cuenta-y-perfil-en-facebook/</link>
		<comments>http://michoacano.com.mx/diputados-con-cuenta-y-perfil-en-facebook/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 13:09:31 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[méxico]]></category>
		<category><![CDATA[partidos políticos]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=2506</guid>
		<description><![CDATA[César Nava, dirigente nacional del PAN, suma 4,242 amigos en su perfil de Facebook, convirtiéndose en el más popular de los diputados de este conteo. En el muro del político se pueden leer mensajes de apoyo por su nombramiento como diputado electo para la 61 legislatura, pero también encuestas publicadas por otros usuarios como &#8220;Crees [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://www.facebook.com/cesarn?ref=search&amp;sid=527132048.3657100363..1">César Nava</a>, dirigente nacional del PAN, suma 4,242 amigos en su perfil de Facebook, convirtiéndose en el más popular de los diputados de este conteo.</li>
<li>En el muro del político se pueden leer mensajes de apoyo por su nombramiento como diputado electo para la 61 legislatura, pero también encuestas publicadas por otros usuarios como &#8220;Crees que César Nava besa bien&#8221;.</li>
<li><a href="http://www.facebook.com/BeatrizParedesRangel?ref=search&amp;sid=527132048.2943427524..1">Beatriz Paredes</a></li>
<li><a href="http://www.cnnexpansion.com/actualidad/2009/08/26/3-porfirio-munoz-ledo">Porfirio Muñoz Ledo</a>, diputado electo por el Partido del Trabajo, cuenta con 1,249 amigos en su perfil en Facebook, colocándose como el tercero en la lista de los más populares.</li>
<li><a href="http://www.facebook.com/profile.php?id=1694959713&amp;ref=search&amp;sid=527132048.2318195374..1#/profile.php?id=1694959713">Josefina Vázquez Mota</a></li>
<li style="text-align: left;"><a href="http://www.facebook.com/profile.php?id=1811737983">Alejandro encinas</a></li>
</ol>
<p>Buenos para trollear un rato no?</p>
<p>Via. <a href="http://www.cnnexpansion.com/actualidad/2009/08/26/cesar-nava">Cnnexpansion</a></p>
]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/diputados-con-cuenta-y-perfil-en-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: La red social mas importante</title>
		<link>http://michoacano.com.mx/facebook-la-red-social-mas-importante/</link>
		<comments>http://michoacano.com.mx/facebook-la-red-social-mas-importante/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 16:58:15 +0000</pubDate>
		<dc:creator>julio</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Redes Sociales]]></category>

		<guid isPermaLink="false">http://michoacano.com.mx/?p=2306</guid>
		<description><![CDATA[Facebook se esta preparando a salir en la bosa y ahora se estima que tiene 250 millones de Usuarios. Empezamos a ver como empieza a ser cada día mas grande facebook. Recuerdo hace un año o mas que todos hablaban de la guerra ente Facebook y Myspace, pero pues ¿Cual guerra?, obvio que MySpace es [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://i719.photobucket.com/albums/ww198/shadow_eclipse/facebook.png" alt="facebook" width="159" height="61" />Facebook se esta preparando a salir en la bosa y ahora se estima que tiene 250 millones de Usuarios.</p>
<p>Empezamos a ver como empieza a ser cada día mas grande facebook. Recuerdo hace un año o mas que todos hablaban de la guerra ente <a href="http://adictosfacebook.com/" target="_blank">Facebook</a> y Myspace, pero pues  ¿Cual guerra?, obvio que MySpace es muy popular en USA, pero no tiene el potencial para durar años y años. Son de esas cosas que llegan al primer lugar pero no se pueden mantener por su poca capacidad.</p>
<p>Lo mejor de todo y como leí por ahí, twitter, facebook es bueno que no hayan sido adquiridas por una empresa grande como Google y Microsoft. Pues no siempre la compra mejora el producto, ¿Se imaginan que Yahoo hubiera  comprado google en sus inicios?. Tal vez ni existiria Gmail.</p>
<p>Sin duda la Red social mas importante y que en españa ya le gano <a href="http://www.tuentituenti.com/">tuenti</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://michoacano.com.mx/facebook-la-red-social-mas-importante/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

