<?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>Un patojo con un blog</title>
	<atom:link href="http://unpatojoconunblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unpatojoconunblog.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 07 Sep 2009 05:09:54 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='unpatojoconunblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Un patojo con un blog</title>
		<link>http://unpatojoconunblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://unpatojoconunblog.wordpress.com/osd.xml" title="Un patojo con un blog" />
	<atom:link rel='hub' href='http://unpatojoconunblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JGraph: Exportar grafos a archivos de imagen</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/09/07/jgraph-exportar-grafos-a-archivos-de-imagen/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/09/07/jgraph-exportar-grafos-a-archivos-de-imagen/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 05:09:54 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=120</guid>
		<description><![CDATA[Buscando por la web la solucion a este caso especifico con Jgraph pero como es comun nunca leo el manual y me gusta descubrir las cosas de forma mas rapida por medio de san google, pero esta vez no me funciono. Pero weno halle la solucion y la agrego a continuacion (sacada del manual jejeje). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=120&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 205px"><a href="http://www.jgraph.com/"><img title="JGraph" src="http://www.jgraph.com/images/jgraph_header.gif" alt="JGraph" width="195" height="95" /></a><p class="wp-caption-text">JGraph</p></div>
<p>Buscando por la web la solucion a este caso especifico con Jgraph pero como es comun nunca leo el manual y me gusta descubrir las cosas de forma mas rapida por medio de san google, pero esta vez no me funciono. Pero weno halle la solucion y la agrego a continuacion (sacada del manual jejeje). Por cierto <a title="JGraph" href="http://www.jgraph.com/">JGraph</a> es una libreria para generar grafos y diagramas muy vistosos por cierto (colores, formas, degradado en colores, etc.) bastante poderoso se puede hasta modificar el diagrama como si estuvieramos en Editor grafico (MS Visio, Dia, etc&#8230;).</p>
<div class="wp-caption alignnone" style="width: 409px"><a href="http://www.jgraph.com/jgraph.html"><img class="  " title="ejemplo de jGraph" src="http://www.jgraph.com/images/business.jpg" alt="Ejemplo de JGraph" width="399" height="256" /></a><p class="wp-caption-text">Ejemplo de JGraph</p></div>
<p>public void ExportarImagen(String path, String ext){</p>
<p>try {<br />
JGraph graph1 = getGraph(); // tomamos el valor actual del grafo<br />
FileOutputStream out = new FileOutputStream(path);// archivo de salida<br />
Color bg = null; // modificar el fondo de la imagen<br />
bg = graph1.getBackground(); //obtenemos el fondo del grafo<br />
Image imgs = graph1.createImage(200,200);// nueva imagen, dimensiones del la imagen<br />
graph1.refresh();<br />
BufferedImage img = graph1.getImage(null, 0);<br />
//ImageIO.write(instancia de imagen, extension de la imagen, archivo de salida);<br />
ImageIO.write(img, ext, out);<br />
out.flush();<br />
out.close();<br />
} catch (IOException ex) {<br />
Logger.getLogger(Grafico.class.getName()).log(Level.SEVERE, null, ex);<br />
System.out.println(ex.getMessage());<br />
}<br />
}</p>
<p>// si solo deseamos crear la imagen sin mostrar nada en Frames u otro contenedor debemos de cargarla en un objeto para que se genere la imagen, la solucion mas sencilla es cargarla en un Jpanel que no se muestre y listo&#8230;..<br />
public void cargarGrafo(){<br />
JPanel panel = new JPanel();<br />
panel.setDoubleBuffered(false);<br />
panel.add( graph );<br />
panel.setVisible( true );<br />
panel.setEnabled( true );<br />
panel.addNotify();   // workaround to pack() on a JFrame<br />
panel.validate();<br />
}<br />
// nos devuelve el valor del objeto JGraph actual<br />
public JGraph getGraph(){<br />
return graph;<br />
}</p>
<p>Es bastante interesante JGraph ya que ademas se puede exportar a formatos como .SVG (Graficos vectoriales), XML, y otros</p>
<p>Para mas informacion pueden revisar el manual de JGraph (para exportar a otros formatos chequen la pagina 98).</p>
<p>Pueden descargar el .jar y la documentacion desde <a title="JGraph" href="http://www.jgraph.com/downloads.html">aqui</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=120&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/09/07/jgraph-exportar-grafos-a-archivos-de-imagen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://www.jgraph.com/images/jgraph_header.gif" medium="image">
			<media:title type="html">JGraph</media:title>
		</media:content>

		<media:content url="http://www.jgraph.com/images/business.jpg" medium="image">
			<media:title type="html">ejemplo de jGraph</media:title>
		</media:content>
	</item>
		<item>
		<title>Michael Jackson y los Simpson</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/07/31/michael-jackson-y-los-simpson/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/07/31/michael-jackson-y-los-simpson/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 00:35:07 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=113</guid>
		<description><![CDATA[De regreso al blog&#8230;  estamos cumplir un mes desde que fallecio el &#8220;Rey del Pop&#8221; , lastimosamente se perdio a la persona que revoluciono al mundo, sinceramente yo cuando lo escuche en CNN pense que era una decir o una broma pero si era cierto se sintio raro, algo que nadie esperaba y se veia [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=113&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>De regreso al blog&#8230;  estamos cumplir un mes desde que fallecio el &#8220;Rey del Pop&#8221; , lastimosamente se perdio a la persona que revoluciono al mundo, sinceramente yo cuando lo escuche en CNN pense que era una decir o una broma pero si era cierto se sintio raro, algo que nadie esperaba y se veia en las noticias a aquella multitud de gente llorando que contagiaban esa tristeza.</p>
<p>Investigando en Internet la muerte de Michael Jackson se convirtio en el dia mas triste de Internet, pero weno el tema de este post es recordar los buenos tiempos, leyendo el blog de los simpson me recordaron el episodio de &#8220;Stark Raving Dad&#8221; o Papa esta loco en el cual sale un loco que dice ser Michael Jackson jejeje. La parte interesante de este episodio es que la voz de este loco la hace el verdadero Michael Jackson solo que bajo un seudonimo misterioso. Ahi se los dejo para recordar buenos tiempos&#8230;&#8230;..</p>
<p>la version corta, de mala calidad pero esta la mejor parte para mi&#8230;  (Thriller &#8230; tu lo seras, como haces eso con los pies.. patada NO!!!) jajaja (version español)</p>
<span class='embed-youtube' style='text-align:center; display:block;'><object width='510' height='317'><param name='movie' value='http://www.youtube.com/v/FgzYYIvenwc?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/FgzYYIvenwc?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='510' height='317' wmode='opaque'></embed> </object></span>
<p>En Ingles<a title="Papa esta loco - Los SImpson" href="http://www.wtso.net/movie/174-The_Simpsons_301_Stark_Raving_Dad.html"> En este link esta el capitulo completo</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=113&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/07/31/michael-jackson-y-los-simpson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>
	</item>
		<item>
		<title>Traducir Firefox-3.5.1pre a español en Ubuntu</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/07/09/traducir-firefox-3-5-1pre-a-espanol-en-ubuntu/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/07/09/traducir-firefox-3-5-1pre-a-espanol-en-ubuntu/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 21:53:42 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=106</guid>
		<description><![CDATA[Desde que instale firefox 3.5 beta en ubuntu, venia en ingles pero lo deje pasar y esperaba q cuando liberaran la version final ya viniera automaticamente en español, sorpresa!! no es asi la version es hasta mas actualizada que la de windows, la ultima version que tengo es la firefox-3.5.1pre pero sigue en ingles. Empecemos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=106&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-107" title="firefox-logo" src="http://unpatojoconunblog.files.wordpress.com/2009/07/firefox-logo.jpg?w=300&#038;h=290" alt="firefox-logo" width="300" height="290" />Desde que instale firefox 3.5 beta en ubuntu, venia en ingles pero lo deje pasar y esperaba q cuando liberaran la version final ya viniera automaticamente en español, sorpresa!! no es asi la version es hasta mas actualizada que la de windows, la ultima version que tengo es la firefox-3.5.1pre pero sigue en ingles. Empecemos antes de todo instalar firefox 3.5</p>
<p><a href="http://clinuxera.org/gulp/?p=1505">http://clinuxera.org/gulp/?p=1505</a> o <a href="http://mundogeek.net/archivos/2009/07/02/instalar-firefox-3-5-en-ubuntu/">http://mundogeek.net/archivos/2009/07/02/instalar-firefox-3-5-en-ubuntu/</a></p>
<p>luego vamos a <a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-firefox-3.5.x-l10n/">http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-firefox-3.5.x-l10n/</a></p>
<p>a buscar el archivo &#8220;.xpi&#8221; correspondiente al idioma que necesitamos para este caso el español firefox-3.5.1pre.es-ES.langpack.xpi</p>
<p><a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-firefox-3.5.x-l10n/firefox-3.5.1pre.es-ES.langpack.xpi">http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-firefox-3.5.x-l10n/firefox-3.5.1pre.es-ES.langpack.xpi</a></p>
<p>damos click desde ubuntu y el lo instala automaticamente como si fuese un complemento y listo!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=106&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/07/09/traducir-firefox-3-5-1pre-a-espanol-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://unpatojoconunblog.files.wordpress.com/2009/07/firefox-logo.jpg?w=300" medium="image">
			<media:title type="html">firefox-logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Armando Windows XP con aplicaciones gratuitas y/o libres</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/06/12/windows-xp-con-aplicaciones-libres-yo-gratuitas/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/06/12/windows-xp-con-aplicaciones-libres-yo-gratuitas/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 04:31:52 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=95</guid>
		<description><![CDATA[Ya en las ultimas de carrrera pense en hacer algo productivo como colaborar en el desarrollo de proyectos opensource, en la busqueda de un proyecto que me llamara la atencion empece a ojear el servidor de sourcefourge, ya sea para apoyar o conseguir software libre es un buen lugar para empezar. Despues de darme un [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=95&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ya en las ultimas de carrrera pense en hacer algo productivo como colaborar en el desarrollo de proyectos opensource, en la busqueda de un proyecto que me llamara la atencion empece a ojear el servidor de <a title="Sourceforge" href="http://sourceforge.net/softwaremap/">sourcefourge</a>, ya sea para apoyar o conseguir software libre es un buen lugar para empezar.</p>
<p><img class="size-medium wp-image-100 alignright" title="opensource" src="http://unpatojoconunblog.files.wordpress.com/2009/06/opensource.gif?w=300&#038;h=259" alt="opensource" width="300" height="259" /></p>
<p>Despues de darme un tour por el sitio y buscar otras aplicaciones en internet, probe algunas que son las que recomendare&#8230; empecemos:</p>
<ul>
<li>Editor de Texto (programacion): <a title="notepad++" href="http://notepad-plus.sourceforge.net/es/site.htm">Notepad ++</a> para que mas jajaja</li>
<li>Reproductor de musica : <a href="http://www.aimp.ru/index.php">AIMP2</a> (el preferido, si te gusta winamp este te gustara mas), Songbird (para los que les gusta itunes)</li>
<li>Reproductor de video/multimedia: <a href="http://www.gomlab.com/eng/">Goom Player</a> y <a href="http://www.videolan.org/vlc/download-windows.html">VLC</a></li>
<li>Compresor de Archivos: <a href="http://www.7-zip.org/">7zip</a> y <a href="http://peazip.sourceforge.net/">Peazip</a> (soportan zip, winrar, tar.gz, etc.)</li>
<li>Emular Unidades Virtuales: <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.slysoft.com/es/virtual-clonedrive.html">VirtualCloneDrive</a> (es + liviano, solo 6 MB) y <a href="http://www.alcohol-soft.com/">Alcohol 52%</a> (soporta mas formatos, pero son 30 MB)</li>
<li>Screenshots: (muy buenos) <a href="http://greenshot.sourceforge.net/">greenshot</a> y <a href="http://picpick.wiziple.net/">Picpick</a></li>
<li>Antivirus: es algo delicado pero estan<a href="http://www.free-av.com/"> Avira</a> y <a href="http://www.avast.com/esp/download-avast-home.html">Avast</a> (ambos son buenos). Otra herramienta, no es antivirus pero es muy util para apoyar al antivirus de <a href="http://www.ccleaner.com/">CCleaner</a>.</li>
<li>Quemador de Discos: Freeburn, Startburn, <a href="http://cdburnerxp.se/download.php">CdBurnXP</a>.</li>
<li>PDF: el tradicional adobe reader y un sustituto mas liviano <a href="http://www.foxitsoftware.com/pdf/rd_intro.php">Foxit Reader</a>.</li>
<li>Grabar videos del escritorio: <a href="http://www.debugmode.com/wink/">Wink</a> (excelente para tutoriales) y <a href="http://camstudio.es/">CamStudio</a> (la version libre de Camtasia)</li>
<li>Navegadores Web: Mozilla Firefox (si prefieren un motor HTML Gecko) y con el motor HTML Webkit,(KHTML el mismo de konqueror de kde) Safari, Google Chrome y Opera.</li>
<li>Cliente de Correo: Thunderbird y Windows Live Mail.</li>
<li>Editores de Imagenes: Gimp y Gimpshop  (un Gimp al estilo Photoshop)</li>
<li>Editor de Graficos Vectoriales: Inkscape</li>
</ul>
<p>Con estos programas ya tenemos para trabajar bastante bien, evitando piratear jajajaja</p>
<p style="text-align:center;"><img class="size-full wp-image-99 aligncenter" title="winpirata" src="http://unpatojoconunblog.files.wordpress.com/2009/06/winpirata.jpg?w=245&#038;h=244" alt="winpirata" width="245" height="244" /></p>
<p>Cuando me recuerde de mas los publico</p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:193px;width:1px;height:1px;">http://www.foxitsoftware.com/pdf/rd_intro.php</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=95&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/06/12/windows-xp-con-aplicaciones-libres-yo-gratuitas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://unpatojoconunblog.files.wordpress.com/2009/06/opensource.gif?w=300" medium="image">
			<media:title type="html">opensource</media:title>
		</media:content>

		<media:content url="http://unpatojoconunblog.files.wordpress.com/2009/06/winpirata.jpg" medium="image">
			<media:title type="html">winpirata</media:title>
		</media:content>
	</item>
		<item>
		<title>Dropbox &#8230; ya no mas perdidas de documentos</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/06/09/dropbox-ya-no-mas-perdidas-de-documentos/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/06/09/dropbox-ya-no-mas-perdidas-de-documentos/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 04:13:14 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=92</guid>
		<description><![CDATA[Yo tengo la mania, maña, costumbre de formatear mi compu cada vez que: el windows, cuando  se pone muy lento o no puedo quitar un virus Ubuntu, cada vez que sale una nueva version, me gusta instalar desde 0 La practica de hacer backup de mis datos es algo aburrida pero weno no hay de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=92&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yo tengo la mania, maña, costumbre de formatear mi compu cada vez que:</p>
<ul>
<li> el windows, cuando  se pone muy lento o no puedo quitar un virus</li>
<li>Ubuntu, cada vez que sale una nueva version, me gusta instalar desde 0 <img src='http://s1.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
</ul>
<p>La practica de hacer backup de mis datos es algo aburrida pero weno no hay de otra, lo mas odioso y detestable es cuando ya formatee e instale de nuevo mi sistema operativo o algun tiempo despues de este, me doy cuenta que no inclui algunas carpetas o documentos en el dichoso backup , Joder!! o mis hermanos me preguntan por su carpeta de documentos que estaba almacenada en otro lugar q no era el escritorio (lo comun) y no hice backup de ella, Joder otra vez!!!</p>
<p>Weno tenia tiempo no encontrar una aplicacion tan util y tan prometedora como Dropbox, para ser mas exactos desde que cree mi cuenta de gmail jejeje.</p>
<p>Dropbox es una aplicacion diseñada para tener un respaldo de tus archivos en un servidor (otra vez Cloud computing), los mas interesante de esto es que dropbox cuenta con un</p>
<ul>
<li>software que crea una carpeta especial en tu computadora en donde almacenas los archivos, estos se replican en cada computadora que sea instalado el software y se configure la misma cuenta.</li>
<li>Tienes acceso en cualquier momento sin necesidad de internet, y en cuanto te conectas a internet estos son actualizados en el servidor de manera automatica.</li>
<li>De igual forma si modificaste los archivos en una computadora, y te cambias a otra los archivos son actulizados en el momento si hay conexion a internet o en cuanto la computadora se conecta internet. Todo esto se realiza de manera automatica.</li>
<li>El backup como ven puede ser un Full Backup (al inicio es obvio o si quieres que sea asi siempre tambien se puede configurar) o un backup incremental (el ideal jajaja).</li>
<li>Lo mas practico, formateo mi compu y solo necesito reinstalar dropbox y recupero toda mi informacion nuevamente. SI asi ES jajajaja <img src='http://s1.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>Existe una carpeta &#8220;shared&#8221; con la cual podemos compartir archivos con otros usuarios.</li>
<li>Funciona en linux (ubuntu, fedora), windows y mac.</li>
<li>mas info http://www.getdropbox.com/screencast</li>
</ul>
<p>Desventajas</p>
<ul>
<li>Estamos limitados a 2 GB Maximo (por lo q solo documentos y uno q otro archivo especial jajaja).</li>
<li>La velocidad de actualizacion depende de nuestra conexion.</li>
</ul>
<p>Se los recomiendo, mas info http://www.getdropbox.com/screencast</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=92&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/06/09/dropbox-ya-no-mas-perdidas-de-documentos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>
	</item>
		<item>
		<title>La era del Cloud computing</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/06/09/la-era-del-cloud-computing/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/06/09/la-era-del-cloud-computing/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 03:10:35 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=85</guid>
		<description><![CDATA[En el curso redes 2, fue la primera que escuche el termino de cloud. El ingeniero hizo un diagrama de redes en donde incluia una cloud en ese momento ni idea, pero me quedo la duda y empece a investigar. Despues de tanto investigar me di cuenta que interactuo con clouds a diario y sin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=85&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En el curso redes 2, fue la primera que escuche el termino de cloud. El ingeniero hizo un diagrama de redes en donde incluia una cloud en ese momento ni idea, pero me quedo la duda y empece a investigar. Despues de tanto investigar me di cuenta que interactuo con clouds a diario y sin saberlo jajajaja.</p>
<p>Segun wikipedia &#8220;La <strong>computación en nube</strong> del ingles <em><strong>cloud computing</strong></em>, es una tecnología que permite ofrecer servicios de computación a través de Internet. La nube es una metafora de Internet.&#8221;</p>
<p>puede que se quede corto asi que aclaro mas el concepto:</p>
<p>El cloud computing esta pensado para que el usuario unicamente necesite una terminal tonta que le permita conectarse a internet y un ancho de banda suficiente, el usuario se conecta a un servidor que le proveera de servicios que necesite.</p>
<p>En mi opinion personal se sigue un patron los mainframe y sus terminales tontas, computadoras personales, notebooks y ahora el cloud computing ¿la evolucion del obsoleto mainframe? ¿Darwinismo digital? , para mi si&#8230; es evolucion.</p>
<div id="attachment_86" class="wp-caption alignnone" style="width: 430px"><img class="size-full wp-image-86" title="cloud" src="http://unpatojoconunblog.files.wordpress.com/2009/06/cloud.png?w=420&#038;h=308" alt="cloud" width="420" height="308" /><p class="wp-caption-text">cloud</p></div>
<p>Los ejemplos mas claros, los usamos a diario</p>
<ul>
<li>Servicios de correo: Gmail, Hotmail</li>
<li>Servicios de Oficina: Googledocs (totalmente web), Microsoft Office Lives (que permite que nuestros documentos creados o editados en Microsoft office sean almacenados en una cuenta de almacenamiento por parte de Microsoft.</li>
<li>Dropbox (sera mi  proximo post jajaja), gmaildrive, Skydrive, etc</li>
</ul>
<p>Como ven ya estamos en la era de cloud computing, y ya somos parte de ella.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=85&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/06/09/la-era-del-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://unpatojoconunblog.files.wordpress.com/2009/06/cloud.png" medium="image">
			<media:title type="html">cloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Reviviendo el Blog&#8230;. y como los blogs se pueden quedar obsoletos</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/06/09/reviviendo-el-blog-y-como-los-blogs-se-pueden-quedar-obsoletos/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/06/09/reviviendo-el-blog-y-como-los-blogs-se-pueden-quedar-obsoletos/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 02:42:10 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=81</guid>
		<description><![CDATA[Despues de tanto tiempo sin postear, pero tengo excusa fue un semestre muy estresante. Pero gracias a Dios los cursos de sistemas salieron. Y voy por el ultimo curso de vacas, el ultimo!!! Ya le cambie look al blog tambien &#8230;. Weno ya empiezo con el post&#8230; Desde que fue creado  el HTTP, por Tim [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=81&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Despues de tanto tiempo sin postear, pero tengo excusa fue un semestre muy estresante. Pero gracias a Dios los cursos de sistemas salieron. Y voy por el ultimo curso de vacas, el ultimo!!! <img src='http://s1.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Ya le cambie look al blog tambien <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230;.</p>
<p>Weno ya empiezo con el post&#8230;</p>
<p>Desde que fue creado  el HTTP, por <a title="Tim Berners-lee" href="http://es.wikipedia.org/wiki/Tim_Berners-Lee">Tim Bernerles-lee</a>, la web a evolucionado de la siguiente manera:</p>
<ul>
<li>la web: cuando la paginas web eran estaticas y no interactuaban para nada con el usuario</li>
<li>la web 2.0: un nuevo enfoque de las aplicaciones web, todo se encamina hacia el usuario (aplicaciones sociales)</li>
<li>la web 3.0: la web semantica (ontologias, busquedas inteligentes, enfocadas al contexto) y</li>
<li>la web 4.0: que se esperaba fuese ser un sistema operativo a nivel de web, pero el rumbo va por otro camino va hacia los dispositivos moviles que actualmente abundan y el acceso es mayor cada dia.</li>
</ul>
<p>El blog pertenece a la web 2.0 al igual que hi5, facebook, y demas aplicaciones sociales. Como nos damos cuenta el blog se esta quedando obsoleto, weno aunque no es el hecho de que vaya a desaparecer sino que va evolucionar para poder sobrevivir (Darwinismo Digital).</p>
<p>Les dejo la espinita de la evolucion del blog, Feevy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=81&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/06/09/reviviendo-el-blog-y-como-los-blogs-se-pueden-quedar-obsoletos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>
	</item>
		<item>
		<title>Regreso al pasado&#8230;</title>
		<link>http://unpatojoconunblog.wordpress.com/2009/01/19/regreso-al-pasado/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2009/01/19/regreso-al-pasado/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 23:17:12 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=77</guid>
		<description><![CDATA[Con tanto q hacer, se me olvido el blog&#8230;. pero weno ahorita q necesita inspirarme para ver q voy a hacer de proyecto de arqui2, me puse a navegar y me encontre con un sitio interesante (recordando mis conocimientos de las eras del internet) para ver como eran antes las paginas de sitios famosos como [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=77&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Con tanto q hacer, se me olvido el blog&#8230;. pero weno ahorita q necesita inspirarme para ver q voy a hacer de proyecto de arqui2, me puse a navegar y me encontre con un sitio interesante (recordando mis conocimientos de las eras del internet) para ver como eran antes las paginas de sitios famosos como hotmail, google, ibm, facebook&#8230;. pero weno el chiste es q en http://www.archive.org/web/web.php tienen almacenadas los sitios mas famosos, cada una de la paginas q los representaron anteriormente y podemos ver como han ido cambiando (este no esta, xq no lo he cambiado pero esperemos este pronto jajajaja). Pero weno ahi esta para que lo prueben<a href="http://www.archive.org"> http://www.archive.org</a></p>
<p><img class="alignnone" title="wayback" src="http://www.archive.org/images/wayback.gif" alt="" width="204" height="72" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=77&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2009/01/19/regreso-al-pasado/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://www.archive.org/images/wayback.gif" medium="image">
			<media:title type="html">wayback</media:title>
		</media:content>
	</item>
		<item>
		<title>ESI de Guatemala</title>
		<link>http://unpatojoconunblog.wordpress.com/2008/10/25/esi-de-guatemala/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2008/10/25/esi-de-guatemala/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 05:36:54 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=70</guid>
		<description><![CDATA[Una empresa de distribución de microcontroladores PIC&#8217;s ( PICS ) en Guatemala. Un sitio proyecto de Seminario de sistemas 1 www.esideguatemala.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=70&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Una empresa de distribución de microcontroladores PIC&#8217;s ( PICS ) en Guatemala.</p>
<p>Un sitio proyecto de Seminario de sistemas 1</p>
<p><a title="ESI de Guatemala" href="http://www.esideguatemala.com">www.esideguatemala.com</a></p>
<div class="wp-caption alignnone" style="width: 280px"><img title="ESI" src="http://esideguatemala.com/images/oscommerce.gif" alt="ESI de Guatemala" width="270" height="65" /><p class="wp-caption-text">ESI de Guatemala</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=70&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2008/10/25/esi-de-guatemala/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>

		<media:content url="http://esideguatemala.com/images/oscommerce.gif" medium="image">
			<media:title type="html">ESI</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux No es dificil, es solo un cambio</title>
		<link>http://unpatojoconunblog.wordpress.com/2008/10/08/linux-no-es-dificil-solo-hay-que-adaptarse/</link>
		<comments>http://unpatojoconunblog.wordpress.com/2008/10/08/linux-no-es-dificil-solo-hay-que-adaptarse/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 04:00:10 +0000</pubDate>
		<dc:creator>acuaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://unpatojoconunblog.wordpress.com/?p=63</guid>
		<description><![CDATA[He esta leyendo sobre las nuevas laptop MSI que traen linux preinstalado, algo que tambien he visto por parte de DELL, que alegre&#8230;. lastimosamente no todo va bien, las personas tienen miedo al cambio (por no decir no dejan windows) la excusa mas escuchada es: &#8220;es que no es igual&#8221;, &#8220;es que yo ya me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=63&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>He esta leyendo sobre las nuevas laptop MSI que traen linux preinstalado, algo que tambien he visto por parte de DELL, que alegre&#8230;. lastimosamente no todo va bien, las personas tienen miedo al cambio (por no decir no dejan windows) la excusa mas escuchada es: &#8220;es que no es igual&#8221;, &#8220;es que yo ya me acostumbre&#8221;. Lo mismo ocurre con cualquier cambio.</p>
<p>Como dicen los japoneses &#8220;El cambio es una oportunidad&#8221;, y si no hay cambio podemos quedarnos atras. El cambio es parte de la vida.</p>
<p>Solo necesitamos un poquito de tiempo, paciencia y muchas ganas de aprender. Para muestra este video</p>
<span class='embed-youtube' style='text-align:center; display:block;'><object width='510' height='317'><param name='movie' value='http://www.youtube.com/v/7mB-rTqQcYg?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/7mB-rTqQcYg?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='510' height='317' wmode='opaque'></embed> </object></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unpatojoconunblog.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unpatojoconunblog.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unpatojoconunblog.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unpatojoconunblog.wordpress.com&amp;blog=1890623&amp;post=63&amp;subd=unpatojoconunblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unpatojoconunblog.wordpress.com/2008/10/08/linux-no-es-dificil-solo-hay-que-adaptarse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c7aa11a1c108538f557c58380ec577b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acuaman</media:title>
		</media:content>
	</item>
	</channel>
</rss>
