<?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"
	>

<channel>
	<title>Supra-Net</title>
	<atom:link href="http://supra-net.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://supra-net.org</link>
	<description>por Enrique Sardon</description>
	<pubDate>Sun, 29 Jun 2008 15:29:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>RSS con PHP usando magpierss</title>
		<link>http://supra-net.org/160/rss-con-php-usando-magpierss/</link>
		<comments>http://supra-net.org/160/rss-con-php-usando-magpierss/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 15:04:32 +0000</pubDate>
		<dc:creator>Enrique Sardon</dc:creator>
		
		<category><![CDATA[off topic]]></category>

		<category><![CDATA[opinion]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[Programacion]]></category>

		<category><![CDATA[tutoriales]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://supra-net.org/?p=160</guid>
		<description><![CDATA[magpierss es una librería de PHP que te permite obtener datos de feeds RSS, RDF y RSS2 asi que trabaja con los tipos mas conocidos de feds. Esta librería hace facil el parseo(decodificacion,traduccion del XML), ara eso solo es necesario bajrse la libreria de su archivo en Sourceforge y descomprimirla en el directorio donde estas [...]]]></description>
			<content:encoded><![CDATA[<p><strong>magpierss</strong> es una librería de PHP que te permite obtener datos de feeds RSS, RDF y RSS2 asi que trabaja con los tipos mas conocidos de feds. Esta librería hace facil el parseo(decodificacion,traduccion del XML), ara eso solo es necesario bajrse la libreria de su <a href="http://sourceforge.net/project/showfiles.php?group_id=55691">archivo en Sourceforge</a> y descomprimirla en el directorio donde estas trabajando tu proyecto, para esto la libreria trae muchos archivos en su comprimido, pero mychos de ellos osn solo ejemplos, solo nos quedaremos con los archivos <strong>.inc</strong> y el directorio <strong>extlib</strong>.</p>
<p>bueno empecemos creando un index.php en el cual estará nuestro primer feed obtenido. este index.php contendra:</p>
<blockquote><p><strong> &lt;?php<br />
require(&#8217;rss_fetch.inc&#8217;);<br />
$rss = fetch_rss(&#8217;http://supra-net.org/feed&#8217;); //este es el feed de mi blog<br />
?&gt;</strong></p></blockquote>
<p>con eso ya esta todo,con eso ya obtuvimos el feed y lo podemos usar en forma de arreglo o colocarlo  genericamente en nuestra página:</p>
<p>De Forma Generica:</p>
<blockquote><p><strong>&lt;?php<br />
include(&#8217;rss_fetch.inc&#8217;);</strong></p>
<p><strong>$rss = fetch_rss(&#8217;http://</strong><strong>supra-net.org/feed</strong><strong>&#8216;);</strong><br />
<strong>echo &#8216;&lt;pre&gt;&#8217;;<br />
print_r($rss);<br />
echo &#8216;&lt;/pre&gt;&#8217;;<br />
?&gt;</strong></p></blockquote>
<p>En Forma de Arreglo:</p>
<blockquote><p><strong>include &#8216;rss_fetch.inc&#8217;;</strong></p>
<p><strong>$url = &#8216;</strong><strong>http://</strong><strong>supra-net.org/feed&#8217;;<br />
$rss = fetch_rss($url);</strong></p>
<p><strong>echo &#8220;Site: &#8220;, $rss-&gt;channel['title'], &#8220;&lt;br&gt;<br />
&#8220;;<br />
foreach ($rss-&gt;items as $item ) {<br />
$title = $item[title];<br />
$url   = $item[link];<br />
echo &#8220;&lt;a href=$url&gt;$title&lt;/a&gt;&lt;/li&gt;&lt;br&gt;<br />
&#8220;;<br />
}</strong></p></blockquote>
<p>En este ultimo ejemploprimero se muestra el titulo de la web de donde se sacó el feed, luego recorre todos los items del feed, para despues mostrar el titulo del item que linkea al articulo, real.</p>
<p>ahora hagamos algo mas innteresante:</p>
<blockquote><p><strong>&lt;?php<br />
include(&#8217;rss_fetch.inc&#8217;);</strong></p>
<p><strong>// Set error reporting for this<br />
error_reporting(E_ERROR);</strong></p>
<p><strong>// Obtenemos el Feed RSS<br />
$rss = fetch_rss(&#8217;</strong><strong>http://</strong><strong>supra-net.org/feed</strong><strong>&#8216;);</strong></p>
<p><strong>if ($rss)<br />
{</strong></p>
<p><strong> // coloca los 5 primeros Items a un nuestro arreglo<br />
$items = array_slice($rss-&gt;items, 0, 5);</strong></p>
<p><strong> // explora todos los Items en el arreglo<br />
foreach ($items as $item ) </strong></p>
<p><strong> {<br />
// obtenemos la URL, Título y descripción de cada Item obtenido<br />
echo &#8216;&lt;li&gt;&lt;a href=&#8221;&#8216;.$item['link'].&#8217;&#8221;&gt;&#8217;.$item['title'].&#8217;&lt;/a&gt; - &#8216;.$item['description'].&#8217;&lt;/li&gt;&#8217;;<br />
}<br />
}<br />
else<br />
{<br />
//si es que hay un error o no hay nada en el feed, muestra el error<br />
echo &#8216;&lt;h2&gt;Error:&lt;/h2&gt;&lt;p&gt;&#8217;.magpie_error().&#8217;&lt;/p&gt;&#8217;;<br />
}</strong><br />
<strong>// Restaura el Valor Original del error<br />
@ini_restore(&#8217;error_reporting&#8217;);<br />
?&gt;</strong></p></blockquote>
<p>Se Pueden hacer un monton de cosas con el el magpierss, toda la documentacion está en su web, y <a href="http://magpierss.sourceforge.net/links.php#howto">hay una serie de HowTo</a>, pero estan en ingles.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://supra-net.org/160/rss-con-php-usando-magpierss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Manejadores De Ventanas Livianos En Linux</title>
		<link>http://supra-net.org/158/manejadores-de-ventanas-livianos-en-linux/</link>
		<comments>http://supra-net.org/158/manejadores-de-ventanas-livianos-en-linux/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 04:25:24 +0000</pubDate>
		<dc:creator>Enrique Sardon</dc:creator>
		
		<category><![CDATA[opinion]]></category>

		<category><![CDATA[informacion]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Software Libre]]></category>

		<category><![CDATA[X]]></category>

		<guid isPermaLink="false">http://supra-net.org/?p=158</guid>
		<description><![CDATA[Mucha gente se queja que GNU/linux es muy pesado, prto en si eso es porque muchos usan linux sin saber que hay programas y servicios que nunca se usan y ocupan el precioso espacio en memoria, eso realmente no es bueno, y menos cuando tenemos un entonrno grafico que consume recursos hasta decir basta!!!.
¿Pero a [...]]]></description>
			<content:encoded><![CDATA[<p>Mucha gente se queja que GNU/linux es muy pesado, prto en si eso es porque muchos usan linux sin saber que hay programas y servicios que nunca se usan y ocupan el precioso espacio en memoria, eso realmente no es bueno, y menos cuando tenemos un entonrno grafico que consume recursos hasta decir basta!!!.</p>
<p>¿Pero a que sistemas de escritorio me refiero?</p>
<p>GNOME, KDE, XFCE4 son sistemas de escritorio compuestos de varias aplicaciones las cuales muchas nunca se ejecutan o solo se ejecutan cada cierto tiempo. pero tiene un gran Ventaja!!! Estas Aplicaciones son muy amigables con el usuario final y a la vez son bien faciles de usar pero esta amabilidad se traduce en consumo inecesario de recursos.</p>
<p>Hay una gran solucion apara estos problemas de consumo de memora y es no usar un sisteama de escritorio completo sino usar solo un manejador de ventanas, que puede hacer muchas funciones basicas, como meus, paneles de ventanas, escritorios virtuales, etc. pero no pasan de ser un manejadores de ventanas.</p>
<p>estos manejadores de ventanas ocupan un espacio de memoria RAM bajisimo, esto dá espacio a nuevos programas a que puedan usar Ram que no es consumida por el entorno gáfico, entre estos tenemos a:</p>
<p><strong>FVWM</strong> es un manejador de ventanas bien personalizable el cual puedes modificarlo a tu antojo y como quieras, pero su configuracion es bien complicada, incluso algunos se atreven a decir que configurar un FVWM es programar y no configurar.</p>
<p><strong>IceWM</strong> es bien similar a windows95 con los paneles colocados en esa forma, pero su customizacion es mas facil que FVWM, los menues pueden ser generados con algun syncronizaor de menues de KDE o GNOME pero tambien pueden ser personalizados a tu antojo.</p>
<p><strong>SfterStep</strong> basado en FVWM creado originalmente para el sistema opertativo NexStep. es bien customisale pero poco usado</p>
<p><strong>Fluxbox</strong> Es Uno de los mas usados por los que buscan un entorno gráfico liviano, es muy facil de usar y su configuracion es practicamente hecha por sus menues. su facilidad de uso lo hace un poco menos configurable.</p>
<p><strong>Window Maker</strong> es bien parecido al AfterStep pero es mas personalizable y mucho mas usado que AfterStep.</p>
<p>todos estos gestors de ventanas estan disponibles en todas las distribuciones de GNU/Linux en sus respectivos Gestors de Paquetes.</p>
<p>De echo que hay muchos mas y pueden Uds mismos investigarlo en las siguentes webs:</p>
<blockquote><p><a href="http://xwinman.org/">http://xwinman.org/</a><br />
<a href="http://es.wikipedia.org/wiki/Gestor_de_ventanas">http://es.wikipedia.org/wiki/Gestor_de_ventanas</a></p></blockquote>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://supra-net.org/158/manejadores-de-ventanas-livianos-en-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wine ya saco a relucir su version 1.0</title>
		<link>http://supra-net.org/157/wine-ya-saco-a-relucir-su-version-10/</link>
		<comments>http://supra-net.org/157/wine-ya-saco-a-relucir-su-version-10/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 03:16:44 +0000</pubDate>
		<dc:creator>Enrique Sardon</dc:creator>
		
		<category><![CDATA[noticias]]></category>

		<category><![CDATA[emuladores]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Software Libre]]></category>

		<guid isPermaLink="false">http://supra-net.org/?p=157</guid>
		<description><![CDATA[
BREVES CONCEPTOS:
Wine es una implementación del API de windows 16 y 32 bits en GNU/linux que hace que los programas funcionen de una forma casi nativa desde linux. asíi se pueden ejecutar muchos programas de windows en linux sin perder performance, velocidad y estabilidad.
ahora Wine ha lanzado su primera version final, la cual tiene soporte [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/51/WINE-Logo.svg/248px-WINE-Logo.svg.png" alt="" width="181" height="292" /></p>
<p>BREVES CONCEPTOS:</p>
<blockquote><p><em>Wine es una implementación del API de windows 16 y 32 bits en GNU/linux que hace que los programas funcionen de una forma casi nativa desde linux. asíi se pueden ejecutar muchos programas de windows en linux sin perder performance, velocidad y estabilidad.</em></p></blockquote>
<p>ahora Wine ha lanzado su primera version final, la cual tiene soporte con muchos programas de Windows, emntre estos son <strong>PhotoShop CS3,</strong> <strong>Watchtower Library 2007, Call of Duty 2</strong><strong> </strong>y muchos mas.</p>
<p>hace algunos años el Wine no era capaz de ejecutar muchos programas, se nota que han evolucionado muchisimo, ahora son miles las aplicaciones que se pueden ejecutar <a href="http://appdb.winehq.org/objectManager.php?bIsQueue=false&amp;bIsRejected=false&amp;sClass=application&amp;sTitle=Browse+Applications&amp;sReturnTo=&amp;iId=0&amp;sOrderBy=appName&amp;bAscending=true&amp;iItemsPerPage=200">aqui hay una lista</a> de las aplicaciones en su base de datos, pero hay muchas otras que no estasn en su base de datos, que si se pueden ejecutar.</p>
<p>esta Version de Wine aun no esta para todas las distribuciones, pero se puede descrgar e instalar manualmente <a href="http://www.winehq.org/site/download">desde su web</a>, puedes compilar su codigo fuente y listo.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://supra-net.org/157/wine-ya-saco-a-relucir-su-version-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VirtualBox, problema con modulo del kernel</title>
		<link>http://supra-net.org/155/virtualbox-problema-con-modulo-del-kernel/</link>
		<comments>http://supra-net.org/155/virtualbox-problema-con-modulo-del-kernel/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 21:44:13 +0000</pubDate>
		<dc:creator>Enrique Sardon</dc:creator>
		
		<category><![CDATA[tutoriales]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[sistemas operativos]]></category>

		<guid isPermaLink="false">http://supra-net.org/?p=155</guid>
		<description><![CDATA[bueno hace un tanto de hartarme con VMware decid probar virtualBox y me dio gusto haber descubierto esta maquina virtual, es mas rápida y potente pero me dio un problema que creo que a muchos les ha pasado:
cuando creas una nueva maquina Virtual y la  quieres iniciar te bota un error buen feo y frustrante, [...]]]></description>
			<content:encoded><![CDATA[<p>bueno hace un tanto de hartarme con VMware decid probar virtualBox y me dio gusto haber descubierto esta maquina virtual, es mas rápida y potente pero me dio un problema que creo que a muchos les ha pasado:</p>
<p>cuando creas una nueva maquina Virtual y la  quieres iniciar te bota un error buen feo y frustrante, sobre un driver que hay que cargar desde el <strong>/etc/init.d/</strong> pero hay unas distribuciones que no tienen ese script. pero para eso hay una solución y es cargar el modulo del kernel manualmente. para eso, tienes que estas como <strong>suerusuario</strong> y digitar el siguiente comando:</p>
<blockquote><p>#modprobe vboxdrv</p></blockquote>
<p>con eso ya debe funcionar cualquier maquina virtual que hayas creado en VirtualBox</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://supra-net.org/155/virtualbox-problema-con-modulo-del-kernel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 3, lanzado en  pocas horas</title>
		<link>http://supra-net.org/154/firefox-3-lanzado-en-pocas-horas/</link>
		<comments>http://supra-net.org/154/firefox-3-lanzado-en-pocas-horas/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 13:34:51 +0000</pubDate>
		<dc:creator>Enrique Sardon</dc:creator>
		
		<category><![CDATA[noticias]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[navegadores]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://supra-net.org/?p=154</guid>
		<description><![CDATA[mozilla firefoz ha lanzado la fecha y la hora ezacta de lsnzamiento, sera rdtr martes 17 de junio a las 17:00 horas UTC, pero si eso no te da mucha informacion, aqui hay un cuadro de ha hora de lanzaamiento en tu localidad en tu localidad






Afghanistan - Kabul
mar 21:30


Mexico - Federal District - Mexico City [...]]]></description>
			<content:encoded><![CDATA[<p>mozilla firefoz ha lanzado la fecha y la hora ezacta de lsnzamiento, sera rdtr martes 17 de junio a las 17:00 horas UTC, pero si eso no te da mucha informacion, aqui hay un cuadro de ha hora de lanzaamiento en tu localidad en tu localidad</p>
<table class="border2" border="1" cellspacing="0" cellpadding="3" align="center">
<tbody>
<tr>
<td class="head" colspan="6"><a href="http://www.timeanddate.com/custom/site.html"></a></td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=113">Afghanistan - Kabul</a></td>
<td class="r">mar 21:30</td>
<td class="bb" rowspan="71"></td>
<td rowspan="71"></td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=155">Mexico - Federal District - Mexico City</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=14">Algeria - Algiers</a></td>
<td class="r">mar 18:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=60">Morocco - Casablanca</a> *</td>
<td class="r">mar 18:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=51">Argentina - Buenos Aires</a></td>
<td class="r">mar 14:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=208">Myanmar - Yangon</a></td>
<td class="r">mar 23:30</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=57">Australia - Australian Capital Territory - Canberra</a></td>
<td class="r">mie 3:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=117">Nepal - Kathmandu</a></td>
<td class="r">mar 22:45</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=240">Australia - New South Wales - Sydney</a></td>
<td class="r">mie 3:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=16">Netherlands - Amsterdam</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=72">Australia - Northern Territory - Darwin</a></td>
<td class="r">mie 2:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=22">New Zealand - Auckland</a></td>
<td class="r">mie 5:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=47">Australia - Queensland - Brisbane</a></td>
<td class="r">mie 3:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=63">New Zealand - Chatham Island</a></td>
<td class="r">mie 5:45</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=5">Australia - South Australia - Adelaide</a></td>
<td class="r">mie 2:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=143">Nicaragua - Managua</a></td>
<td class="r">mar 11:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=152">Australia - Victoria - Melbourne</a></td>
<td class="r">mie 3:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=125">Nigeria - Lagos</a></td>
<td class="r">mar 18:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=196">Australia - Western Australia - Perth</a></td>
<td class="r">mie 1:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=187">Norway - Oslo</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=259">Austria - Vienna</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=106">Pakistan - Islamabad</a> *</td>
<td class="r">mar 23:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=173">Bahamas - Nassau</a> *</td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=757">Pakistan - Karachi</a> *</td>
<td class="r">mar 23:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=73">Bangladesh - Dhaka</a></td>
<td class="r">mar 23:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=756">Pakistan - Lahore</a> *</td>
<td class="r">mar 23:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=285">Belarus - Minsk</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=21">Paraguay - Asuncion</a></td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=48">Belgium - Brussels</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=131">Peru - Lima - Lima</a></td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=124">Bolivia - La Paz</a></td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=145">Philippines - Manila</a></td>
<td class="r">mie 1:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=45">Brazil - Distrito Federal - Brasilia</a></td>
<td class="r">mar 14:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=262">Poland - Warsaw</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=213">Brazil - Rio de Janeiro - Rio de Janeiro</a></td>
<td class="r">mar 14:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=133">Portugal - Lisbon</a> *</td>
<td class="r">mar 18:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=233">Brazil - São Paulo - Sao Paulo</a></td>
<td class="r">mar 14:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=226">Puerto Rico - San Juan</a></td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=238">Bulgaria - Sofia</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=49">Romania - Bucharest</a> *</td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=80">Canada - Alberta - Edmonton</a> *</td>
<td class="r">mar 11:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=17">Russia - Anadyr</a> *</td>
<td class="r">mie 6:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=256">Canada - British Columbia - Vancouver</a> *</td>
<td class="r">mar 10:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=114">Russia - Kamchatka</a> *</td>
<td class="r">mie 6:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=265">Canada - Manitoba - Winnipeg</a> *</td>
<td class="r">mar 12:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=166">Russia - Moscow</a> *</td>
<td class="r">mar 21:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=175">Canada - Newfoundland and Labrador - St. John&#8217;s</a> *</td>
<td class="r">mar 14:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=261">Russia - Vladivostok</a> *</td>
<td class="r">mie 4:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=286">Canada - Nova Scotia - Halifax</a> *</td>
<td class="r">mar 14:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=214">Saudi Arabia - Riyadh</a></td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=188">Canada - Ontario - Ottawa</a> *</td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=35">Serbia - Belgrade</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=250">Canada - Ontario - Toronto</a> *</td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=236">Singapore - Singapore</a></td>
<td class="r">mie 1:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=165">Canada - Quebec - Montreal</a> *</td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=56">South Africa - Cape Town</a></td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=232">Chile - Santiago</a></td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=111">South Africa - Johannesburg</a></td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=33">China - Beijing</a></td>
<td class="r">mie 1:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=235">South Korea - Seoul</a></td>
<td class="r">mie 2:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=102">China - Hong Kong</a></td>
<td class="r">mie 1:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=31">Spain - Barcelona</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=237">China - Shanghai</a></td>
<td class="r">mie 1:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=141">Spain - Madrid</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=41">Colombia - Bogota</a></td>
<td class="r">mar 12:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=118">Sudan - Khartoum</a></td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=281">Croatia - Zagreb</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=239">Sweden - Stockholm</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=99">Cuba - Havana</a> *</td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=87">Switzerland - Geneva</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=204">Czech Republic - Prague</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=268">Switzerland - Zürich</a> *</td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=69">Denmark - Copenhagen</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=241">Taiwan - Taipei</a></td>
<td class="r">mie 1:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=230">Dominican Republic - Santo Domingo</a></td>
<td class="r">mar 13:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=28">Thailand - Bangkok</a></td>
<td class="r">mie 0:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=53">Egypt - Cairo</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=19">Turkey - Ankara</a> *</td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=228">El Salvador - San Salvador</a></td>
<td class="r">mar 11:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=107">Turkey - Istanbul</a> *</td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=242">Estonia - Tallinn</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=136">U.K. - England - London</a> *</td>
<td class="r">mar 18:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=7">Ethiopia - Addis Ababa</a></td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=407">U.S.A. - Alabama - Montgomery</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=82">Fiji - Suva</a></td>
<td class="r">mie 5:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=18">U.S.A. - Alaska - Anchorage</a> *</td>
<td class="r">mar 9:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=101">Finland - Helsinki</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=197">U.S.A. - Arizona - Phoenix</a></td>
<td class="r">mar 10:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=195">France - Paris</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=137">U.S.A. - California - Los Angeles</a> *</td>
<td class="r">mar 10:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=37">Germany - Berlin - Berlin</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=224">U.S.A. - California - San Francisco</a> *</td>
<td class="r">mar 10:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=83">Germany - Hesse - Frankfurt</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=75">U.S.A. - Colorado - Denver</a> *</td>
<td class="r">mar 11:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=26">Greece - Athens</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=263">U.S.A. - District of Columbia - Washington DC</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=94">Guatemala - Guatemala</a></td>
<td class="r">mar 11:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=156">U.S.A. - Florida - Miami</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=245">Honduras - Tegucigalpa</a></td>
<td class="r">mar 11:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=25">U.S.A. - Georgia - Atlanta</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=50">Hungary - Budapest</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=103">U.S.A. - Hawaii - Honolulu</a></td>
<td class="r">mar 7:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=211">Iceland - Reykjavik</a></td>
<td class="r">mar 17:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=64">U.S.A. - Illinois - Chicago</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=176">India - Delhi - New Delhi</a></td>
<td class="r">mar 22:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=105">U.S.A. - Indiana - Indianapolis</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=44">India - Maharashtra - Mumbai</a></td>
<td class="r">mar 22:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=178">U.S.A. - Louisiana - New Orleans</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=54">India - West Bengal - Kolkata</a></td>
<td class="r">mar 22:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=43">U.S.A. - Massachusetts - Boston</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=108">Indonesia - Java - Jakarta</a></td>
<td class="r">mie 0:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=77">U.S.A. - Michigan - Detroit</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=246">Iran - Tehran</a> *</td>
<td class="r">mar 21:30</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=159">U.S.A. - Minnesota - Minneapolis</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=27">Iraq - Baghdad</a></td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=219">U.S.A. - Minnesota - St. Paul</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=78">Ireland - Dublin</a> *</td>
<td class="r">mar 18:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=179">U.S.A. - New York - New York</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=110">Israel - Jerusalem</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=198">U.S.A. - Pennsylvania - Philadelphia</a> *</td>
<td class="r">mar 13:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=215">Italy - Rome</a> *</td>
<td class="r">mar 19:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=104">U.S.A. - Texas - Houston</a> *</td>
<td class="r">mar 12:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=120">Jamaica - Kingston</a></td>
<td class="r">mar 12:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=234">U.S.A. - Washington - Seattle</a> *</td>
<td class="r">mar 10:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=248">Japan - Tokyo</a></td>
<td class="r">mie 2:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=367">Ukraine - Kyiv</a> *</td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=11">Jordan - Amman</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=776">United Arab Emirates - Dubai - Dubai</a></td>
<td class="r">mar 21:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=382">Kazakstan - Almaty</a></td>
<td class="r">mar 23:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=163">Uruguay - Montevideo</a></td>
<td class="r">mar 14:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=170">Kenya - Nairobi</a></td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=244">Uzbekistan - Tashkent</a></td>
<td class="r">mar 22:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=274">Kiribati - Christmas Islands - Kiritimati</a></td>
<td class="r">mie 7:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=58">Venezuela - Caracas</a></td>
<td class="r">mar 12:30</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=123">Kuwait - Kuwait City</a></td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=95">Vietnam - Hanoi</a></td>
<td class="r">mie 0:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=34">Lebanon - Beirut</a> *</td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=6">Yemen - Aden</a></td>
<td class="r">mar 20:00</td>
</tr>
<tr class="c1">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=20">Madagascar - Antananarivo</a></td>
<td class="r">mar 20:00</td>
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=96">Zimbabwe - Harare</a></td>
<td class="r">mar 19:00</td>
</tr>
<tr class="c0">
<td><a href="http://www.timeanddate.com/worldclock/city.html?n=122">Malaysia - Kuala Lumpur</a></td>
<td class="r">mie 1:00</td>
</tr>
</tbody>
</table>
<p>asi que todo mundo a colaboraborar con el record, habran obserbadores guinnes en todos los servidores de descarga, asi quie a apoyar!!!! el mundo cuenta con su voto</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://supra-net.org/154/firefox-3-lanzado-en-pocas-horas/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
