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

<channel>
	<title>Zarpele! Linux and Software Libre &#187; Tips</title>
	<atom:link href="http://www.zarpele.com.ar/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zarpele.com.ar</link>
	<description>GNU/Linux, Programación, Tecnologia...</description>
	<lastBuildDate>Thu, 12 Jan 2012 14:26:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>[PHP] Variables de Apache</title>
		<link>http://www.zarpele.com.ar/2011/01/php-variables-de-apache/</link>
		<comments>http://www.zarpele.com.ar/2011/01/php-variables-de-apache/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 09:32:59 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=2442</guid>
		<description><![CDATA[<p>Estas variables son creadas por el servidor web Apache (<a href="http://www.apache.org/">http://www.apache.org/</a>). Si se está utilizando otro servidor web, no hay garantía de que proporcione las mismas variables; pueden faltar algunas, o proporcionar otras no listadas aquí. Dicho esto, también están presentes las variables de la especificación CGI 1.1, por lo que también se deben tener en cuenta.</p>
<p>Tenga en cuenta que unas pocas, como mucho, de estas variables van a estar disponibles (o simplemente tener sentido) si se ejecuta PHP desde la línea de comandos.</p>
<pre class="brush: php;">
&lt;?php
//Qué revisión de la especificación CGI está usando el servidor; por ejemplo ’CGI/1.1’.
echo '&lt;p&gt;'.var_dump($_SERVER['GATEWAY_INTERFACE']).'&lt;/p&gt;';

//El nombre del equipo servidor en el que se está ejecutando el script. Si el script se está ejecutando
//en un servidor virtual, este será el valor definido para dicho servidor virtual.
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_NAME']).'&lt;/p&gt;';

//Una cadena de identificación del servidor, que aparece en las cabeceras al responderse a las
//peticiones.
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_SOFTWARE']).'&lt;/p&gt;';

//Nombre y revisión del protocolo a través del que se solicitó la página; p.ej. ’HTTP/1.0’;
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_PROTOCOL']).'&lt;/p&gt;';

//Qué método de petición se usó para acceder a la página; p.ej. ’GET’, ’HEAD’, ’POST’, ’PUT’.
echo '&lt;p&gt;'.var_dump($_SERVER['REQUEST_METHOD']).'&lt;/p&gt;';

//La cadena de la petición, si la hubo, mediante la que se accedió a la página.
echo '&lt;p&gt;'.var_dump($_SERVER['QUERY_STRING']).'&lt;/p&gt;';

//El directorio raíz del documento bajo el que se ejecuta el script, tal y como está definido en el
//fichero de configuración del servidor.
echo '&lt;p&gt;'.var_dump($_SERVER['DOCUMENT_ROOT']).'&lt;/p&gt;';

//Los contenidos de la cabecera Accept: de la petición actual, si hay alguna.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_ACCEPT']).'&lt;/p&gt;';

//Los contenidos de la cabecera Accept-Charset: de la petición actual, si hay alguna. Por
//ejemplo: ’iso-8859-1,*,utf-8’.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_ACCEPT_CHARSET']).'&lt;/p&gt;';

//Los contenidos de la cabecera Accept-Encoding: de la petición actual, si la hay. Por ejemplo:
//’gzip’.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_ENCODING']).'&lt;/p&gt;';

//Los contenidos de la cabecera Accept-Language: de la petición actual, si hay alguna. Por
//ejemplo: ’es-ar’.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_ACCEPT_LANGUAGE']).'&lt;/p&gt;';

//Los contenidos de la cabecera Connection: de la petición actual, si hay alguna. Por ejemplo:
//’Keep-Alive’.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_CONNECTION']).'&lt;/p&gt;';

//Los contenidos de la cabecera Host: de la petición actual, si hay alguna.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_HOST']).'&lt;/p&gt;';

//La dirección de la página (si la hay) desde la que el navegador saltó a la página actual. Esto lo
//establece el navegador del usuario; no todos los navegadores lo hacen.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_REFERER']).'&lt;/p&gt;';

//Los contenidos de la cabecera User_Agent: de la petición actual, si hay alguna. Indica el
//navegador que se está utilizando para ver la página actual; p.ej. Mozilla/4.5 [en] (X11; U;
//Linux 2.2.9 i586). Entre otras cosas, se puede usar este valor con get_browser() para adaptar la
//funcionalidad de la página a las posibilidades del navegador del usuario.
echo '&lt;p&gt;'.var_dump($_SERVER['HTTP_USER_AGENT']).'&lt;/p&gt;';

//La dirección IP desde la que el usuario está viendo la página actual.
echo '&lt;p&gt;'.var_dump($_SERVER['REMOTE_ADDR']).'&lt;/p&gt;';

//El puerto que se está utilizando en la máquina del usuario para comunicarse con el servidor web.
echo '&lt;p&gt;'.var_dump($_SERVER['REMOTE_PORT']).'&lt;/p&gt;';

//La vía de acceso absoluta del script que se está ejecutando.
echo '&lt;p&gt;'.var_dump($_SERVER['SCRIPT_FILENAME']).'&lt;/p&gt;';

//El valor que se haya dado a la directiva SERVER_ADMIN (en Apache) en el fichero de
//configuración del servidor web. Si el script se está ejecutando en un servidor virtual, será el valor
//definido para dicho servidor virtual.
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_ADMIN']).'&lt;/p&gt;';

//El puerto del equipo servidor que está usando el servidor web para la comunicación. Para
//configuraciones por defecto, será ’80’; al usar SSL, por ejemplo, cambiará al puerto que se haya
//definido como seguro para HTTP.
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_PORT']).'&lt;/p&gt;';

//Una cadena que contiene la versión del servidor y el nombre del servidor virtual que es añadida a
//las páginas generadas por el servidor, si está característica está activa.
echo '&lt;p&gt;'.var_dump($_SERVER['SERVER_SIGNATURE']).'&lt;/p&gt;';

//Vía de acceso basada en el sistema de ficheros- (no el directorio raíz del documento-) del script en
//cuestión, después de que el servidor haya hecho la conversión virtual-a-real.
echo '&lt;p&gt;'.var_dump($_SERVER['PATH_TRANSLATED']).'&lt;/p&gt;';

//Contiene la vía de acceso del script actual. Es útil para páginas que necesitan apuntar a sí mismas.
echo '&lt;p&gt;'.var_dump($_SERVER['SCRIPT_NAME']).'&lt;/p&gt;';

//La URI que se dió para acceder a esta página; por ejemplo, ’/index.html’.
echo '&lt;p&gt;'.var_dump($_SERVER['REQUEST_URI']).'&lt;/p&gt;';
?&gt;</pre>
<p>Saludos&#8230;</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d2442" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;submitHeadline=%5BPHP%5D+Variables+de+Apache&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;title=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;title=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;title=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;bm_description=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;T=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;title=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;title=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+%5BPHP%5D+Variables+de+Apache+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2011%2F01%2Fphp-variables-de-apache%2F&amp;t=%5BPHP%5D+Variables+de+Apache" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2442').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2011/01/php-variables-de-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[PHP] Asignación por referencia.</title>
		<link>http://www.zarpele.com.ar/2010/12/php-asignacion-por-referencia/</link>
		<comments>http://www.zarpele.com.ar/2010/12/php-asignacion-por-referencia/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 06:52:36 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=2383</guid>
		<description><![CDATA[<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/12/php_code.jpg" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/12/php_code-300x193.jpg" alt="" title="php_code" width="300" height="193" class="aligncenter size-medium wp-image-2384" /></a></p>
<p style="padding-left: 30px;"><a href="http://php.net/" target="_blank">PHP</a> ofrece otra forma de asignar valores a las variables: asignar por referencia. Esto significa que la nueva variable simplemente referencia (en otras palabras, &#8220;se convierte en un alias de&#8221; o &#8220;apunta a&#8221;) la variable original. Los cambios a la nueva variable afectan a la original, y viceversa. Esto también significa que no se produce una copia de valores; por tanto, la asignación ocurre más rápidamente. De cualquier forma, cualquier incremento de velocidad se notará sólo en los bucles críticos cuando se asignen grandes array&#8217;s u objetos.</p>
<pre class="brush: php;">&lt;?php
$nombre = 'Zarpele';              // Asigna el valor 'Zarpele' a $nombre
$referencia = &amp;$nombre;              // Referencia $nombre vía $referencia.
$referencia = &quot;Linux y software libre $referencia&quot;; // Modifica $referencia
var_dump($nombre);                 // $nombre también se modifica.
var_dump($referencia);
?&gt;</pre>
<p><strong>Saludos&#8230;</strong></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d2383" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;submitHeadline=%5BPHP%5D+Asignaci%C3%B3n+por+referencia.&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;title=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;title=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;title=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;bm_description=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;T=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;title=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;title=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+%5BPHP%5D+Asignaci%C3%B3n+por+referencia.+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fphp-asignacion-por-referencia%2F&amp;t=%5BPHP%5D+Asignaci%C3%B3n+por+referencia." rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2383').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/12/php-asignacion-por-referencia/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Synapse: un lanzador de aplicaciones al estilo GNOME Do pero mucho más rápido</title>
		<link>http://www.zarpele.com.ar/2010/12/synapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido/</link>
		<comments>http://www.zarpele.com.ar/2010/12/synapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 02:56:25 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Aplicaciones]]></category>
		<category><![CDATA[Programas]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=2370</guid>
		<description><![CDATA[<table border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td><center><img src="http://2.bp.blogspot.com/_F1QjWOihm3Q/TPhcrLlIgmI/AAAAAAAAA8M/cLBzUazHpXA/s1600/gnome-do.jpg" border="0" alt="" /></center></td>
<td>Synapse es una aplicación al estilo <a href="http://do.davebsd.com/">Gnome-Do</a> o <a href="http://kaizer.se/wiki/kupfer/">Kupfer</a>. Además de la <strong>impresionante velocidad</strong> a la que corre, cabe destacar que este programa, a diferencia de Gnome-Do está <strong>desarrollado</strong> en lenguaje <strong>Vala</strong>, por lo que <strong>no necesita las librerías <a href="http://usemoslinux.blogspot.com/2010/02/que-es-mono-y-por-que-puede-ser.html">Mono</a></strong>. Además, tiene la particularidad de que todas las <strong>búsquedas</strong> las realiza utilizando <strong>Zeitgeist</strong>.</td>
</tr>
</tbody>
</table>
<p>La aplicación ya cuenta con varios temas para cambiar su apariencia. El que se ve a continuación es el tema &#8220;mini&#8221;, pero hay varios más disponibles.</p>
<div><a href="http://2.bp.blogspot.com/_1QSDkzYY2vc/TPVNz7DEuoI/AAAAAAAACYI/MXx1NcAqSig/s550/synapse-mini2.png"><img src="http://2.bp.blogspot.com/_1QSDkzYY2vc/TPVNz7DEuoI/AAAAAAAACYI/MXx1NcAqSig/s320/synapse-mini2.png" border="0" alt="" width="320" height="193" /></a></div>
<p>Los plugins con los que actualmente cuenta Synapse:</p>
<ul>
<li><strong>Applications</strong> – busca archivos en tu equipo</li>
<li><strong>Banshee</strong> – permite reproducir/encolar archivos musicales en Banshee</li>
<li><strong>Commands</strong> – ejecuta cualquier comando (Ej: “sudo apt-get update”)</li>
<li><strong>Devhelp</strong> – busca documentación usando Devhelp</li>
<li><strong>Dictionary</strong> – encuentra definiciones de palabras</li>
<li><strong>Directory search</strong> – permite abrir directorios comúnmente usados</li>
<li><strong>Gnome session</strong> – cerrar sesión, apagar, reiniciar</li>
<li><strong>Hybrid search</strong> – resultados completos de búsqueda provistos por Zeitgeist</li>
<li><strong>Rhythmbox</strong> – permite reproducir/encolar archivos musicales en Rhythmbox</li>
<li><strong>UPower</strong> – suspende e hiberna tu computador</li>
<li><strong>Zeitgeist</strong> – busca cualquier cosa encontrada por Zeitgeist</li>
</ul>
<p><center><iframe title="YouTube video player" class="youtube-player" type="text/html" width="560" height="410" src="http://www.youtube.com/embed/JRfQ9LsTdD4" frameborder="0"></iframe><strong>video: <a href="http://www.futbol-rustico.com.ar/video/v/JRfQ9LsTdD4">http://www.futbol-rustico.com.ar/video/v/JRfQ9LsTdD4</a></strong></center></p>
<h2>Instalación</h2>
<p>Simplemente hace falta agregar el repositorio PPA:</p>
<pre class="brush: bash;">sudo add-apt-repository ppa:synapse-core/ppa
sudo apt-get update
sudo apt-get dist-upgrade # este paso sólo es necesario en Ubuntu Lucid
sudo apt-get install synapse</pre>
<p>Synapse estará disponible en Aplicaciones >Accesorios. Para lanzarlo, apretá  CTRL + barra espaciadora.</p>
<p><em>Visto en |</em> <a href="http://usemoslinux.blogspot.com/2010/12/synapse-un-lanzador-de-aplicaciones-al.html?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+UsemosLinux+%28Usemos+Linux%29&#038;utm_content=FaceBook">Usemos Linux</a> (Recomendado)</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d2370" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;submitHeadline=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;title=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;title=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;title=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;bm_description=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;T=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;title=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;title=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F12%2Fsynapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido%2F&amp;t=Synapse%3A+un+lanzador+de+aplicaciones+al+estilo+GNOME+Do+pero+mucho+m%C3%A1s+r%C3%A1pido" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2370').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/12/synapse-un-lanzador-de-aplicaciones-al-estilo-gnome-do-pero-mucho-mas-rapido/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress: Tus feeds en texto completo&#8230;</title>
		<link>http://www.zarpele.com.ar/2010/11/wordpress-tus-feeds-en-texto-completo/</link>
		<comments>http://www.zarpele.com.ar/2010/11/wordpress-tus-feeds-en-texto-completo/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 03:46:03 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Rss]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tuto]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=2302</guid>
		<description><![CDATA[<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/11/wordpress-rss.jpg"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/11/wordpress-rss.jpg" alt="" title="wordpress-rss" width="231" height="218" class="aligncenter size-full wp-image-2303" /></a>Bueno, hace poco, se me ocurrió poner los feeds con todo el contenido de la entrada, ya que trae una serie de ventajas y <a href="http://www.diarioaborbo.com/2005/06/28/feeds-rss-completo/" target="_blank">esta entrada</a> tuvo mucho que ver con esta decision.</p>
<p>Listo, voy a <strong>Ajustes -> Lectura</strong> en el panel de administrador y sobre la opción <strong>Mostrar, para cada entrada en el feed.</strong> habilito texto completo. Voy a verificar esto y nada, sigue en modo resumen. Limpio Cache, vuelvo a intentar y nada. </p>
<p>La solución la encontré en esta pagina, es un plugin llamado <a href="http://neosmart.net/blog/2006/completerss-content-complete-feeds-fully-valid-and-raring-to-go/" target="_blank"><strong>CompleteRSS</strong></a> bastante viejo por cierto pero muy eficiente.</p>
<p><strong>CompleteRSS</strong> no esta para la descarga en los plugins oficiales de WordPress, asi que tenemos que hacer todo el proceso a la vieja usanza.</p>
<p><span style="color:#009900">completerss.php</span></p>
<pre class="brush: php;">
&lt;?php
/*
Plugin Name: CompleteRSS
Plugin URI: http://neosmart.net/dl.php?id=2
Description: CompleteRSS makes sure your RSS Feeds contain full article text and are fully valid - because your readers deserve it!
Version: 1.1 BETA
Author: Computer Guru
Author URI: http://neosmart.net/blog/
*/

/*  Copyright 2006  NeoSmart Technologies  (site: http://neosmart.net/)
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
   This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

function NST_CheckRSS( $old_content )
{
	if ( !is_feed() )
		return $old_content;
	remove_filter( 'the_content', 'NST_CheckRSS', -1 ); //To get rid of infinite loops
	$content = NST_get_the_content();
	$content = apply_filters( 'the_content', $content );
	$content = str_replace(']]&gt;', ']]&amp;gt;', $content);  //Make it valid!
	add_filter( 'the_content', 'NST_CheckRSS', -1, 1 ); //To make it work in the future
	echo $content;
}

function NST_get_the_content()
{
    global $post;
    // Password checking copied from get_the_content()
    if ( !empty( $post-&gt;post_password ) )
		if ( stripslashes( $_COOKIE['wp-postpass_'.COOKIEHASH] ) !=  $post-&gt;post_password )
			return get_the_password_form();
    return $post-&gt;post_content;
}

//Integrate into WP
add_filter( 'the_content', 'NST_CheckRSS', -1, 1 ); //After all other filters have loaded...
add_filter( 'option_rss_use_excerpt', create_function( '$a=0', 'return 1;' ) ); //Set RSS options to summary, not full text.
?&gt;</pre>
<p>Solo tiene que subir este fichero <span style="color:#009900">completerss.php</span> a la carpeta de plugin de su WordPress (<strong>wp-content/plugins</strong>) y luego activar el Plugin a través de su panel de Administración.</p>
<p>Se que es bastante escueto la entrada, pero encontrar esta solución me llevo bastante tiempo, no la encontré rápidamente en Google asi que la queria compartir en este humilde blog.</p>
<p><strong>Saludos&#8230;, disculpen la falta de frecuencia en el blog, la ingenieria me esta matando <img src='http://www.zarpele.com.ar/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </strong></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d2302" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;submitHeadline=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;title=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;title=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;title=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;bm_description=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;T=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;title=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;title=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F11%2Fwordpress-tus-feeds-en-texto-completo%2F&amp;t=WordPress%3A+Tus+feeds+en+texto+completo%26%238230%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2302').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/11/wordpress-tus-feeds-en-texto-completo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OpenBox, Gestor de ventanas libre para tu linux&#8230;</title>
		<link>http://www.zarpele.com.ar/2010/08/openbox-gestor-de-ventanas-libre-para-tu-linux/</link>
		<comments>http://www.zarpele.com.ar/2010/08/openbox-gestor-de-ventanas-libre-para-tu-linux/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 18:54:54 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Programas]]></category>
		<category><![CDATA[Software Libre]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[X]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1992</guid>
		<description><![CDATA[<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/08/openbox-logo.png"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/08/openbox-logo.png" alt="" title="openbox-logo" width="145" height="93" class="alignleft size-full wp-image-1994" /></a><a href="http://openbox.org/wiki">Openbox</a> es un famoso gestor de ventanas libre para el sistema de ventanas X, licenciado bajo la GNU General Public License. </p>
<p><em>Openbox</em> fue originalmente derivado de Blackbox 0.65.0, pero ha sido totalmente reescrito en el lenguaje de programación C y desde la versión 3,0 no se basa en ningún código de Blackbox. Su sistema de menú tiene un método para utilizar los menús dinámicos.</p>
<p>Está diseñado para ser rápido y consumir una mínima cantidad de recursos. Para conseguir esa ligereza sacrifica algunas funciones típicas en buena parte de los gestores de ventanas como por ejemplo barra de menú, lista de aplicaciones en ejecución o bordes redondeados en las ventanas. Pero a cambio ofrece otras posibilidades tales como menús generados dinámicamente capaces de ofrecer información variada.</p>
<div id="attachment_1993" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/08/go2.wordpress.com_.jpg" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/08/go2.wordpress.com_-300x240.jpg" alt="" title="go2.wordpress.com" width="550" class="size-medium wp-image-1993" /></a><p class="wp-caption-text">Click para agrandar</p></div>
<p>Web | <a href="http://openbox.org/">OpenBox</a><br />
Ver mas capturas  <a href="http://www.google.com.ar/images?hl=es&#038;q=openbox">Google Images</a> <a href="http://openbox.org/wiki/Openbox:Screenshots">OpenBox</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1992" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;submitHeadline=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;title=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;title=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;title=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;bm_description=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;T=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;title=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;title=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fopenbox-gestor-de-ventanas-libre-para-tu-linux%2F&amp;t=OpenBox%2C+Gestor+de+ventanas+libre+para+tu+linux%26%238230%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1992').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/08/openbox-gestor-de-ventanas-libre-para-tu-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Nautilus como cliente FTP, SFTP y SSH</title>
		<link>http://www.zarpele.com.ar/2010/08/nautilus-como-cliente-ftp-sftp-y-ssh/</link>
		<comments>http://www.zarpele.com.ar/2010/08/nautilus-como-cliente-ftp-sftp-y-ssh/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 02:57:52 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Nautilus]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1930</guid>
		<description><![CDATA[<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/08/nautilus.jpg" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/08/nautilus-150x150.jpg" alt="" title="nautilus" width="90"  class="alignleft size-thumbnail wp-image-1932" /></a><a href="http://es.wikipedia.org/wiki/Nautilus_%28inform%C3%A1tica%29" target="_blank">Nautilus</a> este potente administrador de archivos, nos da la posibilidad de usarlo como cliente FTP, SFTP, SSH y mas&#8230;</p>
<p>Tenemos dos formas para hacer esto, una es de ir a lugar <em>(Crtl+L)</em> e ingresar </p>
<pre class="brush: bash;">[PROTOCOLO]://[USER]@[SERVER]:[PORT]</pre>
<p>Ejemplo</p>
<pre class="brush: bash;">ftp://miusuario@ftp.zarpele.com.ar</pre>
<p>Nos pedirá la contraseña y listo tenemos un cliente ftp rápido y sencillo&#8230;</p>
<p>Además de ftp tenemos, <em>ssh://</em> , <em>sftp://</em> , <em>smb://</em> (Samba)</p>
<p>La otra forma de hacerlo es mediante al interfaz gráfica, nos vamos a Archivo -> Conectar con el servidor y seguimos los pasos completando los datos necesarios para la conexión.</p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/08/ftp.png" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/08/ftp.png" alt="" title="ftp" width="490" height="494" class="aligncenter size-full wp-image-1931" /></a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1930" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;submitHeadline=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;title=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;title=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;title=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;bm_description=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;T=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;title=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;title=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Nautilus+como+cliente+FTP%2C+SFTP+y+SSH+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F08%2Fnautilus-como-cliente-ftp-sftp-y-ssh%2F&amp;t=Nautilus+como+cliente+FTP%2C+SFTP+y+SSH" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1930').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/08/nautilus-como-cliente-ftp-sftp-y-ssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Formatear código PHP de forma fácil y rápida&#8230;</title>
		<link>http://www.zarpele.com.ar/2010/06/formatear-codigo-php-de-forma-facil-y-rapida/</link>
		<comments>http://www.zarpele.com.ar/2010/06/formatear-codigo-php-de-forma-facil-y-rapida/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:34:24 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Paginas]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Programacion Web]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1857</guid>
		<description><![CDATA[<p><center><img src="http://texttoimg.com/PHP%20Beautifier_puritan%20(bold)_36_004080.gif" alt="phpbe" /></center></p>
<p>El formato adecuado hace que el código más fácil de leer y entender. <a href="http://phpbeautifier.com/" target="_blank">PHP Beautifier</a> analiza su código y le da formato con estilo a su elección. </p>
<p>Muchas veces se nos presenta la ocasión de ver código ajeno o de procedencias dudosas <img src='http://www.zarpele.com.ar/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , por lo que para leerlo y comprenderlo mejor, es necesario que tenga un formato adecuado para el mismo&#8230;</p>
<p>De que estoy hablando???</p>
<p>Por ejemplo nos pasan este script&#8230;</p>
<pre class="brush: php;">
&lt;?php

  header('Content-Type: text/javascript');  header('Cache-Control: no-cache');
  header('Pragma: no-cache');  define(&quot;MAX_PRICE&quot;, 100.0); // $100.00
  define(&quot;MAX_PRICE_CHANGE&quot;, 0.02); // +/- 2%

  echo '[';
  $q = trim($_GET['q']);
  if ($q) { $symbols = explode(' ', $q);

    for ($i=0; $i&lt;count($symbols); $i++) { $price = lcg_value() * MAX_PRICE;
      $change = $price * MAX_PRICE_CHANGE * (lcg_value() * 2.0 - 1.0);

      echo '{';      echo &quot;\&quot;symbol\&quot;:\&quot;$symbols[$i]\&quot;,&quot;;
      echo &quot;\&quot;price\&quot;:$price,&quot;;                   echo &quot;\&quot;change\&quot;:$change&quot;;
                echo '}';

      if ($i &lt; (count($symbols) - 1))
                                        {
                  echo ',';
}
}
}

   echo ']';
?&gt;</pre>
<p>Como ven esta un poco desordenado, entramos al site de <a href="http://phpbeautifier.com/" target="_blank">PHP Beautifier</a> y copiamos dicho codigo en el textarea (tenemos la opcion de importar un archivo) y seleccionamos el estilo deseado&#8230;</p>
<p>Yo uso Allman style</p>
<blockquote><p>Named for Eric Allman, a Berkeley hacker who wrote a lot of the BSD utilities in it (it is sometimes called BSD style).</p>
<p>Resembles normal indent style in Pascal and Algol. It is the only style other than K&#038;R in widespread use among Java programmers.</p>
<p>Basic indent per level shown here is eight spaces, but four (or sometimes three) spaces are generally preferred by C++ and Java programmers. </p></blockquote>
<p>Le dan a Beautify y walla!</p>
<pre class="brush: php;">
&lt;?php
header('Content-Type: text/javascript');
header('Cache-Control: no-cache');
header('Pragma: no-cache');
define(&quot;MAX_PRICE&quot;, 100.0); // $100.00
define(&quot;MAX_PRICE_CHANGE&quot;, 0.02); // +/- 2%
echo '[';
$q = trim($_GET['q']);

if ($q)
{
	$symbols = explode(' ', $q);
	for ($i = 0; $i &lt; count($symbols); $i++)
	{
		$price = lcg_value() * MAX_PRICE;
		$change = $price * MAX_PRICE_CHANGE * (lcg_value() * 2.0 - 1.0);
		echo '{';
		echo &quot;\&quot;symbol\&quot;:\&quot;$symbols[$i]\&quot;,&quot;;
		echo &quot;\&quot;price\&quot;:$price,&quot;;
		echo &quot;\&quot;change\&quot;:$change&quot;;
		echo '}';
		if ($i &lt; (count($symbols) - 1))
		{
			echo ',';
		}
	}
}

echo ']';
?&gt;
</pre>
<p>Tenemos el código limpio y ordenado. <strong><em>Se preguntaran esto es una pelotudez enorme</em></strong>, la respuesta es no, si tenemos un script de mil lineas por ejemplo, nos tardaríamos el doble en leerlo y entenderlo.</p>
<p>Una de las cosas importantes que debe tener en cuenta un programador, es que ademas que su código funcione, este debe ser fácil de entender y leer por los demás, mucho mas cuando se trabaja en equipo&#8230;</p>
<p>Saludos&#8230;</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1857" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;submitHeadline=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;title=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;title=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;title=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;bm_description=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;T=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;title=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;title=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F06%2Fformatear-codigo-php-de-forma-facil-y-rapida%2F&amp;t=Formatear+c%C3%B3digo+PHP+de+forma+f%C3%A1cil+y+r%C3%A1pida%26%238230%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1857').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/06/formatear-codigo-php-de-forma-facil-y-rapida/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Copiar una web entera con HTTrack</title>
		<link>http://www.zarpele.com.ar/2010/03/copiar-una-web-entera-con-httrack/</link>
		<comments>http://www.zarpele.com.ar/2010/03/copiar-una-web-entera-con-httrack/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 13:13:34 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Aplicaciones]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1689</guid>
		<description><![CDATA[<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/httrack.png"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/httrack.png" alt="httrack" title="httrack" width="408" height="62" class="aligncenter size-full wp-image-1690" /></a><br />
En ocasiones, debemos trabajar de manera offline con un sitio web, por x razon . Para ello utilizaremos <a href="http://www.httrack.com/" target="_blank">HTTrack</a>  un programa bajo licencia <a href="http://www.gnu.org/licenses/gpl.txt">GPL</a> que recorre de forma recursiva toda la web (o partes si le indicamos) y nos baja a nuestra pc todos los ficheros (lease hojas de estilo, imagenes, .httaccess, .html, etc, NO php por obvias razones) </p>
<p>Como lo instalamos?, fácil. nos dirigimos a la sección de <a href="http://www.httrack.com/page/2/">Descargas </a> donde encontramos una versión para Window$ llamada WinHTTrack y otra para Linux/OSX/BSD/Unix sources version WebHTTrack.</p>
<p>Si usas alguna distro basada en Debian, mediante los repositorios&#8230;</p>
<pre class="brush: bash;">chuecko@zarpele ~ $ sudo apt-get install webhttrack</pre>
<p>Luego buscamos la aplicación en el menu o desde consola</p>
<pre class="brush: bash;">chuecko@zarpele ~ $ webhttrack</pre>
<p>Se nos abrirá nuestro browser por defecto y listo.</p>
<p>Los primeros pasos los resumo en un párrafo ya que son sencillos, debemos elegir primero nuestro idioma, el nombre del proyecto, una categoría (opcional) y la ruta de descarga.</p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso1.png" title="Paso 1" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso1.png" alt="Paso 1" title="Paso 1" width="400" class="aligncenter size-medium wp-image-1697" /></a></p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso2.png" title="Paso 2" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso2.png" alt="Paso 2" title="Paso 2" width="500" class="aligncenter size-medium wp-image-1698" /></a></p>
<p>Aquí añadimos la URL de la pagina a bajar, noten también podemos pasarle un txt con muchas URL para que nos descargue</p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso3.png" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso3.png" alt="paso3" title="paso3" width="300" class="aligncenter size-full wp-image-1701" /></a></p>
<p>Luego nos preguntara, si queremos guardar la configuración y volver después o realizar el volcado ahora&#8230;</p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso4.png" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso4.png" alt="paso4" title="paso4" width="500" class="aligncenter size-full wp-image-1703" /></a></p>
<p>Vemos como descarga los ficheros, el método es mas o menos así, entra en <a href="http://www.zarpele.com.ar">http://www.zarpele.com.ar</a> y de ahí va recorriendo los enlaces internos, luego hace lo mismo con el siguiente y vuelve a recorrer enlaces internos, por eso este numero puede variar durante el proceso de volcado. </p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso5.png" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso5.png" alt="paso5" title="paso5" width="500" class="aligncenter size-full wp-image-1704" /></a></p>
<p>Voy 46 mins bajando Zarpele y no termina (67 MB), esto es mas para pequeñas web&#8217;s, no se atrevan a volcar <a href="http://taringa.net" target="_blank" title="Taringa">Taringa</a> o algún sitio zarpado por que van a estar 3 millones de anos.</p>
<p>Obviamente cancele el volcado de Zarpele, pero una vez terminado nos deberia mostrar esta pantalla.</p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso6.png" rel="shadowbox"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/03/paso6.png" alt="paso6" title="paso6" width="500" class="aligncenter size-full wp-image-1705" /></a></p>
<p>Saludos&#8230;</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1689" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;submitHeadline=Copiar+una+web+entera+con+HTTrack&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;title=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;title=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;title=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;bm_description=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;T=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;title=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;title=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Copiar+una+web+entera+con+HTTrack+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F03%2Fcopiar-una-web-entera-con-httrack%2F&amp;t=Copiar+una+web+entera+con+HTTrack" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1689').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/03/copiar-una-web-entera-con-httrack/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Establecer como fondo de escritorio en Ubuntu</title>
		<link>http://www.zarpele.com.ar/2010/02/establecer-como-fondo-de-escritorio-en-ubuntu/</link>
		<comments>http://www.zarpele.com.ar/2010/02/establecer-como-fondo-de-escritorio-en-ubuntu/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 23:54:50 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Consola]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1601</guid>
		<description><![CDATA[<p><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/02/ubuntu-nautilus.jpg" alt="ubuntu-nautilus" title="ubuntu-nautilus" width="200"  class="aligncenter size-full wp-image-1609" /><br />
Una de las cosas que siempre me fastidia en Ubuntu es hacer click derecho en el escritorio y establecer un fondo de escritorio, sin tener la opción de hacer click derecho en la imagen y establecerla (si, al mejor estilo windowse).</p>
<p>Realice una serie de script, que nos permite dicha opción, editando algunos datos de la configuración de Gnome. Si bien el titulo dice Ubuntu este script se puede aplicar en cualquier sistema que use administrador de archivos Nautilus y Bash por supuesto.</p>
<p>Para esto se tienen que bajar <a title="Bajar" href="http://www.zarpele.com.ar/wp-content/uploads/2010/02/establecer_como_fondo_del_escritorio_by_zarpele.zip" target="_blank"><strong><em>ESTE PAQUETE</em></strong></a> y descomprimir la carpeta en&#8230;</p>
<pre class="brush: bash;">/home/usuario/.gnome2/nautilus-scripts</pre>
<p>Y listo, para probarlo hacer click derecho un una imagen, <strong><em>Scripts -> Establecer como fondo de escritorio, ahí podrán elegir entre, Ampliación, Centrado, Escalado, Mosaico y Rellenar Pantalla.</em></strong></p>
<p><a href="http://www.zarpele.com.ar/wp-content/uploads/2010/02/establecerfondoescritrio.jpg"><img src="http://www.zarpele.com.ar/wp-content/uploads/2010/02/establecerfondoescritrio.jpg" alt="establecerfondoescritrio" title="establecerfondoescritrio" class="aligncenter size-full wp-image-1603" /></a></p>
<p>Le dejo como ejemplo, el codigo del script de Establecer como fondo de escritorio centrado&#8230;</p>
<pre class="brush: bash; first-line: 1;">#!/bin/bash

##Escrito por Chuecko - www.zarpele.com.ar.
##Puedes modificar el script a tu gusto. El script necesita zenity para mostrar los mensajes de error.

FILE=`echo -n $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS`

if [ -n `file &quot;$FILE&quot; | grep image` ]
then
	zenity --info --text=&quot;$FILE no es una imagen.&quot;
else
	gconftool-2 -t string -s /desktop/gnome/background/picture_filename &quot;$FILE&quot;
	gconftool-2 -t string -s /desktop/gnome/background/picture_options &quot;centered&quot;
fi

exit</pre>
<p>Saludos&#8230; Comentá rata si te sirvió&#8230;</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1601" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;submitHeadline=Establecer+como+fondo+de+escritorio+en+Ubuntu&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;title=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;title=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;title=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;bm_description=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;T=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;title=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;title=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Establecer+como+fondo+de+escritorio+en+Ubuntu+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2010%2F02%2Festablecer-como-fondo-de-escritorio-en-ubuntu%2F&amp;t=Establecer+como+fondo+de+escritorio+en+Ubuntu" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1601').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2010/02/establecer-como-fondo-de-escritorio-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Virtual Host en Ubuntu 9.10</title>
		<link>http://www.zarpele.com.ar/2009/12/virtual-host-en-ubuntu-9-10/</link>
		<comments>http://www.zarpele.com.ar/2009/12/virtual-host-en-ubuntu-9-10/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:13:25 +0000</pubDate>
		<dc:creator>Zarpele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Manual]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.zarpele.com.ar/?p=1409</guid>
		<description><![CDATA[<p>Cuando tenemos solo un proyecto, no vemos la necesidad de crear host virtuales para separar los mismos, solo utilizamos la raiz <em>/ (/var/www/) </em> para nuestro proyecto y somos felices <img src='http://www.zarpele.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Pero, a la hora de múltiples proyectos, esto es un problema que debemos solucionar para no aumentar la complejidad y evitar posibles errores de programación a futuro.</p>
<p>Suponemos que tenemos 2 proyectos (<a href="http://es.wikipedia.org/wiki/Moodle" title="Mas Info">Moodle</a> y una copia de seguridad de <a href="http://www.zarpele.com.ar/">Zarpele!</a>), y actualmente lo tenemos instalados en:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>www<span style="color: #66cc66;">/</span>moodle
<span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>www<span style="color: #66cc66;">/</span>zarpele</pre></div></div>

<p>Bien para hacer bien las cosas debemos crear en nuestro proyectos 2 host virtuales. A continuación crearemos el host que utilizaremos para <em>Moodle</em> y de forma idéntica podrán crear los demás.</p>
<h4>Editando hosts</h4>
<p>El <strong>archivo hosts</strong> de un ordenador es, en su origen, un vestigio de los tiempos en que sólo había unos pocos <a title="Dominio de Internet" href="http://es.wikipedia.org/wiki/Dominio_de_Internet">dominios</a> y se enviaba la lista con todos ellos y sus respectivas IPs en un archivo llamado <code>hosts</code>.</p>
<p>En la actualidad todas las peticiones se realizan a los servidores DNS. No obstante, los sistemas actuales mantienen este archivo, de modo que es posible modificar <em>a mano</em> a qué IP deben resolver determinados dominios. Así su principal utilidad actual es el bloqueo de las direcciones de la <a title="Publicidad web" href="http://es.wikipedia.org/wiki/Publicidad_web">publicidad web</a>.</p>
<p>Aja si mucha <a href="http://es.wikipedia.org/wiki/Archivo_hosts" title="Mas Info">Wikipedia</a>, en resumen editaremos el archivos hosts para que en vez de dejarle a nuestro servidor de DNS que resuelva el nombre de dominio ingresado y lo relacione con una IP se resuelva localmente sin necesidad de <em>&#8220;buscar&#8221;</em> ese dominio ya que tenemos la relacion IP-Dominio en nuestra PC.</p>
<p>Con privilegios de administrador, editaremos el siguiente archivo</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">sudo gedit <span style="color: #66cc66;">/</span>etc<span style="color: #66cc66;">/</span>hosts</pre></div></div>

<p>Ahora bien tendremos algo asi&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">127.0.0.1	localhost
&nbsp;
<span style="color: #808080; font-style: italic;"># The following lines are desirable for IPv6 capable hosts</span>
::<span style="color: #cc66cc;">1</span>     localhost ip6-localhost ip6-loopback
fe00::<span style="color: #cc66cc;">0</span> ip6-localnet
ff00::<span style="color: #cc66cc;">0</span> ip6-mcastprefix
ff02::<span style="color: #cc66cc;">1</span> ip6-allnodes
ff02::<span style="color: #cc66cc;">2</span> ip6-allrouters
ff02::<span style="color: #cc66cc;">3</span> ip6-allhosts</pre></div></div>

<p><span style="color:red;">Atención:</span> Este archivo puede variar según características de la PC utilizada.</p>
<p>El nombre que vamos a utilizar es <em>moodle-local</em>, pueden elegir el que quieran, pero traten de no poner una pagina verdadera como <em><a href="http://www.taringa.net/" title="Taringa">taringa.net</a></em> , ya que esta podría no funcionar o en todo caso nos direccionaría a nuestro proyecto <img src='http://www.zarpele.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">127.0.0.1	localhost
127.0.0.1 moodle-<span style="color: #000066;">local</span>
&nbsp;
<span style="color: #808080; font-style: italic;"># The following lines are desirable for IPv6 capable hosts</span>
::<span style="color: #cc66cc;">1</span>     localhost ip6-localhost ip6-loopback
fe00::<span style="color: #cc66cc;">0</span> ip6-localnet
ff00::<span style="color: #cc66cc;">0</span> ip6-mcastprefix
ff02::<span style="color: #cc66cc;">1</span> ip6-allnodes
ff02::<span style="color: #cc66cc;">2</span> ip6-allrouters
ff02::<span style="color: #cc66cc;">3</span> ip6-allhosts</pre></div></div>

<h4>Creando sites-available</h4>
<p>Lo siguiente que debemos hacer, es informarle a Apache de estos host. Para el cual debemos crear 2 (seguiremos con el ejemplo y solo creare moodle-local, igualmente se hacen los demas) ficheros en <em>/etc/apache2/sites-available</em>.</p>
<p>Crearemos moodle-local con el siguiente contenido&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #66cc66;">&lt;</span>VirtualHost <span style="color: #66cc66;">*</span>:<span style="color: #cc66cc;">80</span><span style="color: #66cc66;">&gt;</span>
	ServerAdmin webmaster<span style="color: #66cc66;">@</span>localhost
	ServerName moodle-<span style="color: #000066;">local</span>
	DocumentRoot <span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>www<span style="color: #66cc66;">/</span>moodle
	<span style="color: #66cc66;">&lt;</span>Directory <span style="color: #66cc66;">/&gt;</span>
		Options FollowSymLinks
		AllowOverride all
	<span style="color: #66cc66;">&lt;/</span>Directory<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>Directory <span style="color: #66cc66;">/</span>var<span style="color: #66cc66;">/</span>www<span style="color: #66cc66;">/</span>moodle<span style="color: #66cc66;">&gt;</span>         
		Options Indexes FollowSymLinks MultiViews
		AllowOverride all 
		Order allow,deny
		allow from all
	<span style="color: #66cc66;">&lt;/</span>Directory<span style="color: #66cc66;">&gt;</span>
<span style="color: #66cc66;">&lt;/</span>VirtualHost<span style="color: #66cc66;">&gt;</span></pre></div></div>

<p>Las lineas importantes son:<br />
<em> ServerName</em>, aquí pondremos el nombre de dominio que acabamos de crear en nuestro archivo hosts.<br />
<em> DocumentRoot</em>, aquí pondremos la ruta raiz donde se encuentra nuestro proyecto<br />
<em> <Directory /var/www/moodle></em>, idem anterior&#8230;</p>
<h4>Creando sites-eneable</h4>
<p>Ahora utilizaremos el comando a2ensite &#8220;available to enabled site&#8221;, para dejar andando nuestro virtualhost&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">sudo a2ensite moodle-<span style="color: #000066;">local</span></pre></div></div>

<p>Si todo sale bien, la consola nos devolvería</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Enabling site moodle-<span style="color: #000066;">local</span>.
Run <span style="color: #ff0000;">'/etc/init.d/apache2 reload'</span> to activate new configuration<span style="color: #66cc66;">!</span></pre></div></div>

<h4>Reiniciando Apache</h4>
<p>Como leyeron anteriormente, debemos reiniciar nuestro apache para que todo que joya.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">sudo <span style="color: #66cc66;">/</span>etc<span style="color: #66cc66;">/</span>init.d<span style="color: #66cc66;">/</span>apache2 reload</pre></div></div>

<p>Y listo!!!</p>
<h4>Probando nuestro Host Virtual</h4>
<p>En nuestro navegador ponemos <em>moodle-local</em> y entramos a nuestro moodle.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<div class="d1409" style="overflow:hidden; text-align:center;" >
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;submitHeadline=Virtual+Host+en+Ubuntu+9.10&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;title=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;title=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;title=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;bm_description=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;T=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;title=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;title=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Virtual+Host+en+Ubuntu+9.10+@+http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.zarpele.com.ar%2F2009%2F12%2Fvirtual-host-en-ubuntu-9-10%2F&amp;t=Virtual+Host+en+Ubuntu+9.10" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.zarpele.com.ar/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d1409').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></description>
		<wfw:commentRss>http://www.zarpele.com.ar/2009/12/virtual-host-en-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

