<?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>Pablo Martínez Weblog</title>
	<atom:link href="http://pmartinez.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pmartinez.wordpress.com</link>
	<description>&#34;Si pones un CD de Microsoft al revés se oyen cosas satánicas... pero eso no es nada: si lo pones del derecho te instala Windows!&#34;</description>
	<lastBuildDate>Tue, 29 Nov 2011 22:32:08 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pmartinez.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Pablo Martínez Weblog</title>
		<link>http://pmartinez.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pmartinez.wordpress.com/osd.xml" title="Pablo Martínez Weblog" />
	<atom:link rel='hub' href='http://pmartinez.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Atajos útiles en Netbeans</title>
		<link>http://pmartinez.wordpress.com/2011/05/02/atajos-utiles-en-netbeans/</link>
		<comments>http://pmartinez.wordpress.com/2011/05/02/atajos-utiles-en-netbeans/#comments</comments>
		<pubDate>Mon, 02 May 2011 11:00:30 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programacion]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=218</guid>
		<description><![CDATA[Netbeans es uno de los IDE mas populares junto con Eclipse para programar no solo en java sino en múltiples lenguajes como ser PHP, Ruby y C/C++ . Existen algunos atajos de teclado que son de mucha ayuda a la hora de escribir código java evitando así escribir estructuras que se repiten a lo largo de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=218&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://www.netbeans.org/" target="_blank"><img class="alignleft size-thumbnail wp-image-219" title="netbeans0" src="http://pmartinez.files.wordpress.com/2011/04/netbeans0.png?w=69&#038;h=62" alt="" width="69" height="62" />Netbeans</a> es uno de los IDE mas populares junto con <a href="http://www.eclipse.org" target="_blank">Eclipse</a> para programar no solo en java sino en múltiples lenguajes como ser PHP, Ruby y C/C++ . Existen algunos atajos de teclado que son de mucha ayuda a la hora de escribir código java evitando así escribir estructuras que se repiten a lo largo de todo el código.</p>
<p>Atajos:</p>
<ul>
<li><strong>Ctrl + Space</strong> : Completa el código que estamos escribiendo. Por ejemplo, si queremos escribir LocateRegistry solamente escribimos Loc y presionamos el atajo para que nos sugiera la palabra completa. Si presionamos dos veces el atajo, muestra todas las opciones que comiencen con los caracteres escritos.</li>
<li><strong>Alt + Insert:</strong> Agrega constructores, métodos accesores, propiedaes, overrides, etc..</li>
<li><strong>Alt + Enter :</strong> Se usa sobre el texto subrayado para ver la sugerencia que nos hace el IDE cuando hay algún error de sintaxis o se necesita realizar algun import o surround</li>
<li><strong>Ctrl + R:</strong> Si lo hacemos sobre el identificador, renombra todas las ocurrencias.</li>
</ul>
<p>Los atajos siguientes son escribiendo la palabra mencionada y presionando tabulador:</p>
<ul>
<li><strong>fcom + Tab:</strong> Se obtiene el código para agrupar y comentar. Ejemplo</li>
</ul>
<pre style="padding-left:60px;">// &lt;editor-fold defaultstate="collapsed" desc="comment"&gt;
// &lt;/editor-fold&gt;</pre>
<ul>
<li><strong>fori + Tab:</strong> Genera el código necesario para hacer un for.Ejemplo</li>
</ul>
<pre style="padding-left:60px;">for (int idx = 0; idx &lt; arr.length; idx++) {
   Object elem = arr[idx];
   }</pre>
<p style="padding-left:60px;"> Otros similares a &#8220;fori&#8221; son “forc”, “fore”, “forl”, and “forv”</p>
<ul>
<li><strong>sout + Tab o soutv + Tab:</strong> Genera los System.out.println(&#8220;&#8221;).</li>
<li><strong>iff + Tab: </strong>Genera los bloques if. Ejemplo</li>
</ul>
<pre style="padding-left:60px;">if (exp) {

}</pre>
<ul>
<li><strong>sw + Tab:</strong> Genera el switch. Ejemplo:</li>
</ul>
<pre style="padding-left:60px;">switch (var) {
        case val:
            break;
default:
            throw new AssertionError();
}</pre>
<ul>
<li><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;line-height:19px;white-space:normal;"><strong>whilexp + Tab:</strong> Genera los bloques While. Otras variantes son whilen y whileit. Ejemplo:</span></li>
</ul>
<p style="padding-left:60px;">whilexp :</p>
<pre style="padding-left:90px;">while (exp) { 

}</pre>
<p style="padding-left:60px;">whileit:</p>
<pre style="padding-left:90px;">while(it.hasNext()) {
   Object elem =  it.next();
   }</pre>
<p style="padding-left:60px;">whilen:</p>
<pre style="padding-left:90px;">while(en.hasMoreElements()) {
   Object elem =  en.nextElement();
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=218&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2011/05/02/atajos-utiles-en-netbeans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2011/04/netbeans0.png?w=150" medium="image">
			<media:title type="html">netbeans0</media:title>
		</media:content>
	</item>
		<item>
		<title>Problemas 2.0 &#8211; Recopilación de datos personales en la red</title>
		<link>http://pmartinez.wordpress.com/2011/04/27/209/</link>
		<comments>http://pmartinez.wordpress.com/2011/04/27/209/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 10:45:30 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[datos personales]]></category>
		<category><![CDATA[Geolocalización]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[privacidad]]></category>
		<category><![CDATA[recopilación de datos]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=209</guid>
		<description><![CDATA[ Una de las cosas que siempre me ha llamado la atencion es que cada vez que sale una noticia avisando que Google,  Apple o quien sea guarda información sin consentimiento, las listas de correo, blogs y redes sociales explotan  de información fundada o infundada de forma casi paranoica. Recuerdo hace un tiempo cuando Gmail guarda (o  guardaba) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=209&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pmartinez.files.wordpress.com/2011/04/privacidad.jpg"><img class="alignleft size-thumbnail wp-image-212" title="Privacidad" src="http://pmartinez.files.wordpress.com/2011/04/privacidad.jpg?w=150&#038;h=132" alt="" width="150" height="132" /></a> Una de las cosas que siempre me ha llamado la atencion es que cada vez que sale una noticia avisando que Google,  Apple o quien sea guarda información sin consentimiento, las listas de correo, blogs y redes sociales explotan  de información fundada o infundada de forma casi paranoica. Recuerdo hace un tiempo cuando Gmail guarda (o  guardaba) por tiempo indefinido los correos electronicos de gmail aunque el usuario los haya borrado; o el sonado  caso de las recopilacion de informacion redes inalambricas abierta por parte de Google Street View .. millones de  mails, articulos de blogs y etceteras avisando de lo terrible de eso y que poco mas que nos estaban espiando&#8230;y sin ir  mas lejos estos dias circula la noticia que tanto Apple como Google a través de sus dispositivos con iOS y Android (respectivamente) guardan información acerca de la localización del dispositivo. Y yo me pregunto&#8230; si manejo información sensible para mi persona  o para mi compañia (licita o ilicita), alojaria mi correo electronico con Gmail? No asumo que cualquier informatico (idóneo o no) se preocupe por la seguridad, pero aun así, dejaría mi red wifi personal o de la compañia sin encriptacion y sin clave? Cual es el problema que el dispositivo movil que uso guarde información de mi localización si las compañias celulares ya lo hacen con una precisión aceptable? Usamos la tarjeta de credito para pagar todo, usamos la tarjeta de transporte para movernos por la ciudad&#8230; todo eso no guarda la posicion en que estamos? Y me sigo preguntando de cuantos servicios usamos al día que no tenemos ni idea de la informacion que envían, a quién la envían .. incluso, poniendome mas paranoico, no sabemos si los sistemas operativos que usamos habitualmente envían alguna información (bueno, en el caso de iOS ya sabemos..y en el caso de Windows los informes de errores enviaban alguna información mas que el error). Los mismos que criticamos la intromisión de estas empresas en información personal despues ponemos en cualquier red social quienes son nuestros familiares, números de telefonos móviles,fotos de nuestra casa, donde vivimos, cuando nos vamos de vacaciones y queda todo solo algo así como &#8220;Estoy en el campo desactivando la geolocalizacion de mi Android para que no sepan donde estoy&#8221; o &#8220;Mañana salgo con toda la familia de vacaciones por 15 dias&#8221;. Y tambien pensemos en ejemplos mas cotidianos, de pronto tiramos el sobre de correspondiencia con nuestro nombre y dirección a la basura sin romperlo o borrar los datos&#8230;</p>
<p>No nos preocupamos por la privacidad de las redes sociales, donde generalmente exponemos cada segundo de nuestras vidas (con fotos y todo) pero si nos preocupamos cuando alguna compañia guarda datos sin nuestro consentimiento para usos &#8220;comerciales&#8221; o si guarda nuestros correos para que &#8220;acceda el FBI&#8221;. Y me pregunto nuevamente: existe algo/alguien sobre la faz de la tierra que pueda analizar de forma personalizada (identificando al usuario) toda esa información? . No es tirar recursos a la basura que Google &#8220;escanee&#8221; una wifi sin clave para ver que se navega en esa red cuando los usuarios usan Google y éste ya guarda un historial de tus preferencias? Le interesa a Google o Apple si estoy en Montevideo o Groenlandia?</p>
<p>Creo que  <strong>de una vez por todas </strong>empecemos a preocuparnos  por nuestros datos personales todo el tiempo y con todo, y no solo cuando no nos dimos cuenta que las compañias de moda usan nuestros datos para fines desconocidos.. Nos compramos PC&#8217;s (o Mac&#8217;s <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ), smartphones, Tablets y todo lo que venga conectado a internet simplemente para eso, para estar conectados. Y cuando por 30 segundos nos damos cuenta de los riesgos de estarlo, queremos estar desconectados&#8230;</p>
<p>y si.. es un Problema 2.0</p>
<address><em>Enlaces:</em></address>
<address><em><a href="http://gizmovil.com/2011/04/android-tambien-almacena-informacion-sobre-nuestra-ubicacion">http://gizmovil.com/2011/04/android-tambien-almacena-informacion-sobre-nuestra-ubicacion</a></em></address>
<address><em><a href="http://www.guardian.co.uk/technology/2010/may/15/google-admits-storing-private-data">http://www.guardian.co.uk/technology/2010/may/15/google-admits-storing-private-data</a></em></address>
<address><em><a href="http://alt1040.com/tag/privacidad">http://alt1040.com/tag/privacidad</a></em></address>
<address> </address>
<address> </address>
<address> </address>
<address> </address>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=209&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2011/04/27/209/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2011/04/privacidad.jpg?w=150" medium="image">
			<media:title type="html">Privacidad</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup en Linux y Windows</title>
		<link>http://pmartinez.wordpress.com/2011/04/25/backup-en-linux-y-windows/</link>
		<comments>http://pmartinez.wordpress.com/2011/04/25/backup-en-linux-y-windows/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 12:00:55 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Soporte]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copias de seguridad]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[respaldo en linux]]></category>
		<category><![CDATA[respaldo en windows]]></category>
		<category><![CDATA[respaldos]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=186</guid>
		<description><![CDATA[En Linux Rsync Rsync es una herramienta para linux (aunque es posible instalarla en windows con CygWin) para sincronizar archivos y directorios dentro del mismo pc o de forma remota. Muy util para realizar respaldos ya sea completos o incrementales. Para sincronizar dos directorios simplemente ponemos lo siguiente en la consola: rsync -av directorio1 directorio2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=186&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h4>En Linux</h4>
<h5>Rsync</h5>
<p>Rsync es una herramienta para linux (aunque es posible instalarla en windows con CygWin) para sincronizar archivos y directorios dentro del mismo pc o de forma remota. Muy util para realizar respaldos ya sea completos o incrementales.</p>
<p>Para sincronizar dos directorios simplemente ponemos lo siguiente en la consola:</p>
<pre>rsync -av directorio1 directorio2</pre>
<p>Esto copiará el directorio1 dentro del directorio2.</p>
<p>La opcion -a es el modo archivo y -v es para que muestre la salida. Les recomiendo el articulo de la fuente que realiza una revisión detallada de rsync.</p>
<p>Fuente: <a href="http://www.vicente-navarro.com/blog/2008/01/13/backups-con-rsync/">http://www.vicente-navarro.com/blog/2008/01/13/backups-con-rsync/</a></p>
<h5>Backuppc</h5>
<p>Este es una utilidad web que puede instalarse desde los repositorios de <a href="http://www.ubuntu.com">Ubuntu </a>o descargarlo desde el <a href="http://backuppc.sourceforge.net/">sitio oficial</a>. Soporta backups remotos a través de samba para respaldar equipos con Windows o equipos linux a través de rsync</p>
<p>Para instalarlo ponemos en la consola:</p>
<blockquote>
<pre>apt-get install backuppc</pre>
</blockquote>
<p>Una vez instalado, tenemos que establecer el password, para ello ejecutamos:</p>
<blockquote>
<pre>htpasswd /etc/backuppc/htpasswd backuppc</pre>
</blockquote>
<p>Luego ingresamos a través de la URL http://localhost/backuppc y nos pedira el usuario (backuppc) y la contraseña que seteamos en el paso anterior.</p>
<p>Para configurar los equipos a respaldar pueden seguir esta guia: <a href="http://www.howtoforge.com/linux_backuppc">http://www.howtoforge.com/linux_backuppc</a></p>
<p>Más información la encuentran en la <a href="http://backuppc.sourceforge.net/faq/BackupPC.html">documentación del Proyecto</a></p>
<h4>Windows</h4>
<h5>SyncToy</h5>
<p>SyncToy es una utilidad para Windows que nos permite sincronizar dos directorios. Lo pueden descargar de <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c26efa36-98e0-4ee9-a7c5-98d0592d8c52">aquí</a> y les recomiendo seguir <a href="http://www.neoteo.com/synctoy-2-0-sincronizacion-al-estilo-5507">este tutorial</a> bastante completo de como configurarlo.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=186&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2011/04/25/backup-en-linux-y-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>
	</item>
		<item>
		<title>Borrar discos duros de forma segura</title>
		<link>http://pmartinez.wordpress.com/2011/04/04/borrar-discos-duros-de-forma-segura/</link>
		<comments>http://pmartinez.wordpress.com/2011/04/04/borrar-discos-duros-de-forma-segura/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 12:44:25 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[formatear disco]]></category>
		<category><![CDATA[Formatear disco seguro]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shred]]></category>
		<category><![CDATA[utilidades disco duro]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=149</guid>
		<description><![CDATA[Cuando desechamos un pc o nos deshacemos de un disco duro generalmente formateamos el disco o borramos la información  personal para evitar que otras personas accedan a nuestros datos. Cuando borramos archivos o formateamos el disco, no se esta  haciendo un  borrado físico de los datos sino que la información se borra de forma lógica. Básicamente se borra la [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=149&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pmartinez.files.wordpress.com/2011/03/disco_roto.jpg"><img class="alignleft size-thumbnail wp-image-150" title="disco_roto" src="http://pmartinez.files.wordpress.com/2011/03/disco_roto.jpg?w=150&#038;h=87" alt="" width="150" height="87" /></a> Cuando desechamos un pc o nos deshacemos de un disco duro generalmente formateamos el disco o borramos la información  personal para evitar que otras personas accedan a nuestros datos. Cuando borramos archivos o formateamos el disco, no se esta  haciendo un  borrado físico de los datos sino que la información se borra de forma lógica. Básicamente se borra la referencia a los  datos, pero esto se puede recuperar con cualquier software disponible en internet, como ser el GetDataBack disponible en Hiren&#8217;s  Boot CD .</p>
<p>Para borrar los datos completamente en el disco duro y que no haya forma de recuperarlos, existen varias opciones pagas y gratis que lo que hacen es sobrescribir con distintos métodos todo el disco duro borrando así de forma permanente los datos.</p>
<h4><span style="color:#000000;">Shred (linux)</span></h4>
<p>abrimos una consola y ejecutamos</p>
<pre>sudo shred -vfz -n 100 /dev/sdc</pre>
<p><strong>v </strong>(verbose) muestra el progreso, <strong>f</strong> (force) cambia los permisos para permitir la escritura ,<strong> z</strong> indica que utiliza ceros para sobreescribir y <strong>-n</strong> indica la cantidad de pasadas (en este caso 100)</p>
<p>Tengamos en cuenta que no es necesario ser usuario habitual de linux para utilizar esta herramienta. Es posible bootear el equipo con cualquier distribución que nos de la opción de LIVE CD (como ser <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> o <a href="http://www.knopper.net/knoppix/index-en.html" target="_blank">Knoppix</a>) y ejecutar el comando desde la terminal.</p>
<p>Si bien setear el numero de pasadas en 100 es una medida razonable, el proceso es muy lento si estamos formateando un disco de mas de 80GB  a través de USB</p>
<h4><span style="color:#000000;">Active Kill Disk</span></h4>
<p>Esta opción es para Windows y tiene una version paga y una gratuita. La version gratuita solo tiene un método de borrado que es One Pass Zero que solo permite una pasada sobreescribiendo los datos con cero. Es posible descargarlo para Windows, DOS, y en formato de CD booteable.</p>
<p>La version paga permite destruir los datos utilizando los siguientes metodos:</p>
<ul>
<li>Bruce Schneier&#8217;s algorithm</li>
<li>Canadian OPS-II</li>
<li><a href="http://www.killdisk.com/dod.htm" target="_blank">DoD 5220.22 M</a></li>
<li>Gutmann&#8217;s algorithm</li>
<li>German VSITR</li>
<li>HMG IS5 Baseline</li>
<li>HMG IS5 Enhanced</li>
<li>Navso P-5329-26 (RL)</li>
<li>Navso P-5329-26 (MFM)</li>
<li>NCSC-TG-025</li>
<li>Russian GOST p50739-95</li>
<li>US Army AR380-19</li>
<li>US Air Force 5020</li>
<li>One-pass zeros method</li>
<li>One-pass random characters method</li>
<li>User defined method (user’s pattern and specified number of passes)</li>
<li>User-defined number of passes (up to 99)</li>
</ul>
<p>Lo he probado en Linux usando Wine y funciona solo con discos locales, no detecta discos conectados por USB</p>
<p>Mas información sobre Active Kill Disk se puede encontrar en su <a href="http://www.killdisk.com/" target="_blank">página</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=149&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2011/04/04/borrar-discos-duros-de-forma-segura/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2011/03/disco_roto.jpg?w=150" medium="image">
			<media:title type="html">disco_roto</media:title>
		</media:content>
	</item>
		<item>
		<title>Java vs .NET</title>
		<link>http://pmartinez.wordpress.com/2010/07/08/java-vs-net/</link>
		<comments>http://pmartinez.wordpress.com/2010/07/08/java-vs-net/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:36:57 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[java vs .NET]]></category>
		<category><![CDATA[pelicula]]></category>
		<category><![CDATA[programacion]]></category>
		<category><![CDATA[trailer]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=134</guid>
		<description><![CDATA[Hace tiempo tengo abandonado el blog&#8230; pero este video merece una entrada!! No se lo pierdan!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=134&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace tiempo tengo abandonado el blog&#8230; pero este video merece una entrada!! No se lo pierdan!</p>
<object width="425" height="334"><param name="movie" value="http://www.dailymotion.com/swf/xdwk35"></param><param name="allowfullscreen" value="true"></param><param name="wmode" value="opaque"></param><embed src="http://www.dailymotion.com/swf/xdwk35" width="425" height="334" allowfullscreen="true" wmode="opaque"></embed></object>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=134&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2010/07/08/java-vs-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux vs Windows 7</title>
		<link>http://pmartinez.wordpress.com/2009/05/07/linux-vs-windows-7/</link>
		<comments>http://pmartinez.wordpress.com/2009/05/07/linux-vs-windows-7/#comments</comments>
		<pubDate>Thu, 07 May 2009 14:21:36 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[Descargar Linux]]></category>
		<category><![CDATA[Descargar Windows 7]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux vs Windows 7]]></category>
		<category><![CDATA[Ubuntu 9.04]]></category>
		<category><![CDATA[Virtualbox]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=124</guid>
		<description><![CDATA[Desde esta semana esta disponible para todos los mortales (o no) la nueva Release Candidate de Windows 7, la cual promete subsanar todas las penas provocadas por Windows Vista, ese &#8220;gran virus&#8221; lanzado en 2007  que hecho por tierra todas las previsiones de Microsoft. Como buen curioso y desde ya hace tiempo usuario ocasional de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=124&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Desde esta semana esta disponible para todos los mortales (o no) la nueva <a href="http://www.microsoft.com/windows/windows-7/download.aspx">Release Candidate de Windows 7</a>, la cual promete subsanar todas las penas provocadas por <a href="http://es.wikipedia.org/wiki/Windows_Vista">Windows Vista</a>, ese &#8220;gran virus&#8221; lanzado en 2007  que hecho por tierra todas las previsiones de Microsoft.</p>
<p>Como buen curioso y desde ya hace tiempo usuario ocasional de Windows, me dispuse a descargarlo y ver que es lo que trae denuevo.</p>
<p>Una vez instalado en <a href="http://www.virtualbox.org">Virtualbox</a> mi asombro fue grande: el escritorio es muy similar a <a href="http://www.kde.org">KDE</a>. Como tampoco soy usuario de KDE (uso <a href="http://www.gnome.org">gnome</a> desde siempre)  me dispuse nuevamente a instalar la ultima version de <a href="http://www.kubuntu.org">KUbuntu, la 9.04 Jaunty Jackalope</a> que trae el escritorio KDE en virtualbox. Dicen que una imagen vale mas que mil palabras:</p>
<div id="attachment_125" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-125" title="windows7" src="http://pmartinez.files.wordpress.com/2009/05/windows7.png?w=620" alt="Escritorio Windows 7 RC"   /><p class="wp-caption-text">Escritorio Windows 7 RC</p></div>
<div id="attachment_126" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-126" title="kde" src="http://pmartinez.files.wordpress.com/2009/05/kde.png?w=620" alt="Escritorio Kubuntu 9.04"   /><p class="wp-caption-text">Escritorio Kubuntu 9.04</p></div>
<p>El fondo de pantalla es original de Windows 7, pero se lo puse a KDE para la compraracion..</p>
<div id="attachment_127" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-127" title="windows7_2" src="http://pmartinez.files.wordpress.com/2009/05/windows7_2.png?w=620" alt="Menu de Windows 7 RC"   /><p class="wp-caption-text">Menu de Windows 7 RC</p></div>
<div id="attachment_128" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-128" title="kde_2" src="http://pmartinez.files.wordpress.com/2009/05/kde_2.png?w=620" alt="Menu KUbuntu 9.04"   /><p class="wp-caption-text">Menu KUbuntu 9.04</p></div>
<p><a href="http://www.zdnet.com.au/insight/software/soa/Is-it-Windows-7-or-KDE-4-/0,139023769,339294810,00.htm">En ZDNet Australia hicieron un pequeño experimiento</a> el cual le mostraban a la gente un notebook con KDE 4.2 y decian que era Windows 7.. imperdible</p>
<p>Después del fiasco de Vista que hizo acercar mucha gente a Linux  gracias a companias que decidieron preinstalar linux en sus pc,  la gente encontro una opción mas que satisfactoria.</p>
<p>Si Windows siempre fue amigable con el usuario y lo usaron como argumento en contra de linux&#8230;. ahora que van a decir?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=124&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2009/05/07/linux-vs-windows-7/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2009/05/windows7.png" medium="image">
			<media:title type="html">windows7</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2009/05/kde.png" medium="image">
			<media:title type="html">kde</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2009/05/windows7_2.png" medium="image">
			<media:title type="html">windows7_2</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2009/05/kde_2.png" medium="image">
			<media:title type="html">kde_2</media:title>
		</media:content>
	</item>
		<item>
		<title>Lanzamiento Ubuntu 9.04 &#8211; Jaunty jackalope</title>
		<link>http://pmartinez.wordpress.com/2009/04/23/lanzamiento-ubuntu-904-jaunty-jackalope/</link>
		<comments>http://pmartinez.wordpress.com/2009/04/23/lanzamiento-ubuntu-904-jaunty-jackalope/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 14:03:23 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Distribuciones]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=120</guid>
		<description><![CDATA[No voy a profundizar mucho en la instalación , ya que hay miles de blogs que le dedicarán el día de hoy a postear con imágenes y howto&#8217;s paso a paso&#8230; pero si hoy celebrar el lanzamiento de la version 9.04 de Ubuntu llamada Jaunty Jackalope. Hay varias mejoras que pude corroborar en los 15 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=120&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/"><img src="http://www.ubuntu.com/files/countdown/904/countdown-9.04-1/00.png" border="0" alt="Ubuntu 9.04 - on desktops, netbooks, servers and in the cloud" width="180" height="150" /></a></p>
<p>No voy a profundizar mucho en la instalación , ya que hay miles de blogs que le dedicarán el día de hoy a postear con imágenes y howto&#8217;s paso a paso&#8230; pero si hoy celebrar el lanzamiento de la version 9.04 de Ubuntu llamada Jaunty Jackalope.</p>
<p>Hay varias mejoras que pude corroborar en los 15 minutos que lleva instalado y quizás encuentre más diferencias a medida que lo use ya que he saltado de la version 8.04 a la version 9.04 (la 8.10 la usaba pero no con tanta profundidad). Entre las mejoras que destaco son nuevas opciones de vista en nautilus, nueva interfaz de manejo de impresoras, como siempre mejor soporte de drivers, por primera vez Openoffce 3.0 instalado, el arte esta bastante mejorado y por ultimo algo que me llamo mucho la atencion: 19 segundos de arranque. Desde que grub pone el 0 hasta que presenta la pantalla de bienvenida 19 segundos. En la página de ubuntu mencionan menos de 25, pero la instalacion fresca levanta en 19&#8221; (Dual Core E2180, 1,5GB Memoria RAM, Disco 160GB).</p>
<p>Como siempre he tenido la costumbre de instalar una particion a parte para /home, el aspecto del escritorio, claves ssh, correos y demás se mantienen iguales&#8230; solo hay que instalar aquellos programas que no integran la version y aun asi, toman la configuracion antigua.</p>
<p>A medida que lo vaya usando postearé algunas cosas más, pero por ahora estoy contento con los 19 segundos de arranque!</p>
<p>A descargar!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=120&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2009/04/23/lanzamiento-ubuntu-904-jaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://www.ubuntu.com/files/countdown/904/countdown-9.04-1/00.png" medium="image">
			<media:title type="html">Ubuntu 9.04 - on desktops, netbooks, servers and in the cloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Grabar escritorio con Byzanz</title>
		<link>http://pmartinez.wordpress.com/2008/11/04/grabar-escritorio-con-byzanz/</link>
		<comments>http://pmartinez.wordpress.com/2008/11/04/grabar-escritorio-con-byzanz/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 19:56:17 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[captura pantalla]]></category>
		<category><![CDATA[escritorio]]></category>
		<category><![CDATA[grabar]]></category>
		<category><![CDATA[grabar escritorio]]></category>
		<category><![CDATA[grabar ventana]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=114</guid>
		<description><![CDATA[Hace unos días encontre un applet para Linux llamado Byzanz con el cual es posible grabar el escritorio o una ventana o un area en particular y lo guarda como gif. En ubuntu lo instalamos con sudo apt-get install byzanz y luego hay que añadirlo al panel. Sencillo, liviano y muy util si queremos usar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=114&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace unos días encontre un applet para Linux llamado Byzanz con el cual es posible grabar el escritorio o una ventana o un area en particular y lo guarda como gif. En ubuntu lo instalamos con</p>
<p>sudo apt-get install byzanz</p>
<p>y luego hay que añadirlo al panel. Sencillo, liviano y muy util si queremos usar gif de nuestras capturas</p>
<p>Les dejo un ejemplo (clickear la imagen para ver la animacion) :</p>
<p><a href="http://pmartinez.files.wordpress.com/2008/11/captura.gif"><img class="aligncenter size-full wp-image-115" title="captura" src="http://pmartinez.files.wordpress.com/2008/11/captura.gif?w=620" alt="captura"   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=114&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2008/11/04/grabar-escritorio-con-byzanz/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2008/11/captura.gif" medium="image">
			<media:title type="html">captura</media:title>
		</media:content>
	</item>
		<item>
		<title>Don&#8217;t hurt the web</title>
		<link>http://pmartinez.wordpress.com/2008/09/23/dont-hurt-the-web/</link>
		<comments>http://pmartinez.wordpress.com/2008/09/23/dont-hurt-the-web/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 12:32:23 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fondos firefox]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/2008/09/23/dont-hurt-the-web/</guid>
		<description><![CDATA[Pueden encontrar mas fondos de Firefox en RubiaGuru<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=106&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin-left:10px;margin-bottom:10px;">
<p><span style="font-size:.9em;margin-top:0;"><br />
<a href="http://www.flickr.com/photos/pablomartinez/2882263858/"></a><br />
</span></div>
<p style="text-align:center;"><a title="photo sharing" href="http://www.flickr.com/photos/pablomartinez/2882263858/"><img class="aligncenter" style="border:2px solid #000000;" src="http://farm4.static.flickr.com/3117/2882263858_9421440e23_m.jpg" alt="" width="240" height="150" /></a></p>
<p style="text-align:center;">Pueden encontrar mas fondos de Firefox en <a href="http://rubiaguru.com/2008/08/top-10-firefox-wallpapers/">RubiaGuru</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=106&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2008/09/23/dont-hurt-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3117/2882263858_9421440e23_m.jpg" medium="image" />
	</item>
		<item>
		<title>Curiosidad&#8230;.</title>
		<link>http://pmartinez.wordpress.com/2008/08/26/curiosidad/</link>
		<comments>http://pmartinez.wordpress.com/2008/08/26/curiosidad/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 14:39:22 +0000</pubDate>
		<dc:creator>Administrador</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[Construccion]]></category>
		<category><![CDATA[Curiosidad]]></category>
		<category><![CDATA[World Trade Center]]></category>

		<guid isPermaLink="false">http://pmartinez.wordpress.com/?p=93</guid>
		<description><![CDATA[Caminando cerca de la Rambla de Montevideo y al pasar por lo que será la tercera torre del World Trade Center me encontré con algo curioso&#8230; Por que señalar cual es el fin del edificio?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=93&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-94" src="http://pmartinez.files.wordpress.com/2008/08/imagen-176.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></p>
<p>Caminando cerca de la <a href="http://www.youtube.com/watch?v=9q6w18Z9iSc">Rambla de Montevideo</a> y al pasar por lo que será la tercera torre del <a href="http://www.worldtradecenter.com.uy/">World Trade Center</a> me encontré con algo curioso&#8230;</p>
<p><img class="aligncenter size-large wp-image-95" src="http://pmartinez.files.wordpress.com/2008/08/imagen-178.jpg?w=500&#038;h=375" alt="" width="500" height="375" /></p>
<p style="text-align:center;">Por que señalar cual es el fin del edificio?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmartinez.wordpress.com/93/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmartinez.wordpress.com/93/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmartinez.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmartinez.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmartinez.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmartinez.wordpress.com&amp;blog=1076491&amp;post=93&amp;subd=pmartinez&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmartinez.wordpress.com/2008/08/26/curiosidad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e02145bef70bfc0a3953d3d2fb2a27dd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pmartinez</media:title>
		</media:content>

		<media:content url="http://pmartinez.files.wordpress.com/2008/08/imagen-176.jpg?w=300" medium="image" />

		<media:content url="http://pmartinez.files.wordpress.com/2008/08/imagen-178.jpg?w=500" medium="image" />
	</item>
	</channel>
</rss>
