<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A search in my mind</title>
	<atom:link href="http://rugoli.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rugoli.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 19 Apr 2011 11:44:35 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rugoli.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A search in my mind</title>
		<link>http://rugoli.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rugoli.wordpress.com/osd.xml" title="A search in my mind" />
	<atom:link rel='hub' href='http://rugoli.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Coloreando el prompt PS1</title>
		<link>http://rugoli.wordpress.com/2010/09/29/coloreando-el-prompt-ps1/</link>
		<comments>http://rugoli.wordpress.com/2010/09/29/coloreando-el-prompt-ps1/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 15:58:54 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=149</guid>
		<description><![CDATA[Hace ya tiempo que puse un prompt (PS1) modificado en mi pc, pero en la última reinstalación (hace 4 años o así) se me pasó guardar el .bashrc y perdí los colorines. Hoy es el día que vuelvo a buscar información para cómo colorearlo, más que nada para poder diferenciar mi host de los servidores. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=149&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace ya tiempo que puse un prompt (PS1) modificado en mi pc, pero en la última reinstalación (hace 4 años o así) se me pasó guardar el .bashrc y perdí los colorines.</p>
<p>Hoy es el día que vuelvo a buscar información para cómo colorearlo, más que nada para poder diferenciar mi host de los servidores. Lo mejor es que leáis <a title="bash howto" href="http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html">esto</a> para conocer cómo se hace. Yo me lo pongo a modo de recordatorio :p</p>
<p>Lo mejor para ver los colores es usar este script:</p>
<pre><span style="color:#000000;">
<pre>#!/bin/bash
#
#   This file echoes a bunch of color codes to the
#   terminal to demonstrate what's available.  Each
#   line is the color code of one forground color,
#   out of 17 (default + 16 escapes), followed by a
#   test use of that color on all nine background
#   colors (default + 8 escapes).
#   See http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html
#

T='gYw'   # The test text

echo -e "\n                 40m     41m     42m     43m\
     44m     45m     46m     47m";

for FGs in '    m' '   1m' '  30m' '1;30m' '  31m' '1;31m' '  32m' \
           '1;32m' '  33m' '1;33m' '  34m' '1;34m' '  35m' '1;35m' \
           '  36m' '1;36m' '  37m' '1;37m';
  do FG=${FGs// /}
  echo -en " $FGs 33[$FG  $T  "
  for BG in 40m 41m 42m 43m 44m 45m 46m 47m;
    do echo -en "$EINS 33[$FG33[$BG  $T  33[0m";
  done
  echo;
done
echo</pre>
<p></span></pre>
<p><span style="color:#000000;"> </span></p>
<p><span style="color:#000000;"> </span>Y eso saca un bonito cuadro de colores. Y mi PS1 lo he convertido a:</p>
<pre>
<pre>PS1="\e[1;44m\e[1;1m\u@\h:\e[41m\w\$\e[m "<span style="color:#000000;"> </span>
</pre>
</pre>
<p>Para que funcione de manera decente (porque si no quita el titulo de los gnome-terminal...) hay que ponerlo de la siguiente manera en el .bashrc</p>
<pre>
<pre>if [ "$color_prompt" = yes ]; then
 PS1='${debian_chroot:+($debian_chroot)}\[33[01;32m\]\u@\h\[33[00m\]:\[33[01;34m\]\w\[33[00m\]\$ '
else
 PS1="\e[1;44m\e[1;1m\u@\h:\e[41m\w\$\e[m "
fi
</pre>
</pre>
<p>Como extra añado este otro enlace  para <a title="colorear scripts" href="http://tldp.org/LDP/abs/html/colorizing.html">colorear scripts</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=149&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2010/09/29/coloreando-el-prompt-ps1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Gitconfig</title>
		<link>http://rugoli.wordpress.com/2010/05/11/gitconfig/</link>
		<comments>http://rugoli.wordpress.com/2010/05/11/gitconfig/#comments</comments>
		<pubDate>Tue, 11 May 2010 07:43:18 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[miniapunte]]></category>
		<category><![CDATA[config]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=119</guid>
		<description><![CDATA[Es una chorrada, lo sé, pero siempre viene bien compartir los &#8216;config&#8217; que vamos utilizando, y así poder ver y añadir cosas nuevas del resto. Por eso aquí pongo mi gitconfig. [user] name = Your Name email = your.nameATserver.com [color] branch = auto diff = auto grep = auto status = auto ui = auto [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=119&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Es una chorrada, lo sé, pero siempre viene bien compartir los &#8216;config&#8217; que vamos utilizando, y así poder ver y añadir cosas nuevas del resto.</p>
<p>Por eso aquí pongo mi gitconfig.</p>
<pre>[user]
    name = Your Name
    email = your.nameATserver.com
[color]
    branch = auto
    diff = auto
    grep = auto
    status = auto
    ui = auto
    interactive = auto
[diff]
    tool=meld
[merge]
    tool=meld
#[core]
#    excludesfile = /home/user/.gitignore
[alias]
    a = add
    c = commit
    co = checkout
    d = diff
    l = log
    b = branch
    sb = show-branch
    g = log --graph --pretty=oneline --abbrev-commit --decorate
#    lg = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)&lt;%an&gt;%Creset'
    lg = log --graph --all --pretty=format:'%C(yellow)%h%Creset -%C(bold green)%d %Creset%s%Cgreen %ar %Cblue%an'
    gd = gl --date-order
    st = status
#man tigrc
[tig]
#"tig --all" to see all the branches
    show-refs = yes
    show-rev-graph = yes
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=119&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2010/05/11/gitconfig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Crear matroska con subtítulos</title>
		<link>http://rugoli.wordpress.com/2010/04/26/crear-matroska-con-subtitulos/</link>
		<comments>http://rugoli.wordpress.com/2010/04/26/crear-matroska-con-subtitulos/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 11:36:11 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[miniapunte]]></category>
		<category><![CDATA[matroska]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[peliculas]]></category>
		<category><![CDATA[subtitulos]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=110</guid>
		<description><![CDATA[Este mini apunte lo dejo como recordatorio para cuando me vuelva a dar por unficar las pelis con los subtítulos. Partiendo de una peli.avi (que tiene doble audio, el primero en castellano y el segundo en inglés) y unos subtítulos, podemos crear un único fichero para que contenga todo, y no tener varios por separado. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=110&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Este mini apunte lo dejo como recordatorio para cuando me vuelva a dar por unficar las pelis con los subtítulos.</p>
<p>Partiendo de una peli.avi (que tiene doble audio, el primero en castellano y el segundo en inglés) y unos subtítulos, podemos crear un único fichero para que contenga todo, y no tener varios por separado. Para ello:</p>
<pre>mkvmerge -v -o peli_final.mkv  --language 1:spa --language 2:eng peli_origen.avi \
--language 0:spa --default-track 0:false --sub-charset 0:ISO-8859-15 peli_origen_es.srt \
--language 0:eng --sub-charset 0:ASCII  --default-track 0:false peli_origen_en.srt</pre>
<p>Con esto creamos un &#8220;peli_final.mkv&#8221; que tiene 5 &#8220;tracks&#8221;, el primero para el vídeo, 2 para audio y otros 2 para los subtítulos. Con los subtítulos les he indicado el charset que tenía el fichero, porque si no coge por defecto UFT-8 y luego no se ven bien algunos caracteres. Las opciones &#8220;language&#8221; es para indicarle qué idioma es cada track, y así luego el XBMC lo reconoce.</p>
<p>No he conseguido que no se reproduzca los subtítulos a no ser que yo lo fuerce, por lo tanto, cuando reproduces la peli se ve siempre unos subtítulos por defecto.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=110&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2010/04/26/crear-matroska-con-subtitulos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Tail con colorines</title>
		<link>http://rugoli.wordpress.com/2010/03/24/tail-con-colorines/</link>
		<comments>http://rugoli.wordpress.com/2010/03/24/tail-con-colorines/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 10:07:09 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=96</guid>
		<description><![CDATA[Para hacer un tail y resaltar algo en concreto podremos hacer: tail -f file &#124; perl -pe 's/keyword/\e[1;31;43m$&#38;\e[0m/g' &#8220;keyword&#8221; puede ser sustituido por cualquier otra expresión regular: (foo&#124;bar) nos muestra el texto foo y bar resaltado. \b((foo&#124;bar)\b nos resalta las palabras foo y bar .*\b((foo&#124;bar)\b.* resalta toda la línea que contiene las palabras foo o [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=96&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Para hacer un tail y resaltar algo en concreto podremos hacer:</p>
<pre>tail -f file | perl -pe 's/keyword/\e[1;31;43m$&amp;\e[0m/g'</pre>
<p>&#8220;keyword&#8221; puede ser sustituido por cualquier otra expresión regular:</p>
<p><strong>(foo|bar)</strong> nos muestra el texto foo y bar resaltado.<br />
<strong>\b((foo|bar)\b</strong> nos resalta las palabras foo y bar<br />
<strong>.*\b((foo|bar)\b.</strong>* resalta toda la línea que contiene las palabras foo o bar</p>
<p>Para no depender de perl se podría usar sed, pero no consigo que haga el resaltado <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Otra alternativa es usar &#8220;<em>less</em>&#8220;, aunque no queda con colorines:</p>
<blockquote><p>less /var/log/file.log</p>
<p>/foo -&gt; donde &#8220;foo&#8221; es una expresión regular que queramos destacar.</p>
<p>Ahora pulsamos &#8220;F&#8221; para que haga como &#8220;tile -f&#8221;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=96&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2010/03/24/tail-con-colorines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Sorteo de un HTC Magic por la gente de and.roid.es</title>
		<link>http://rugoli.wordpress.com/2009/10/09/sorteo-de-un-htc-magic-por-la-gente-de-and-roid-es/</link>
		<comments>http://rugoli.wordpress.com/2009/10/09/sorteo-de-un-htc-magic-por-la-gente-de-and-roid-es/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 19:20:56 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=62</guid>
		<description><![CDATA[Sé que no uso mucho el blog, pero que la gente and.roid.es, el blog que sigo sobre el Android, sorteen un HTC Magic de Vodafone ha hecho que haga este post por ver si suena la flauta y me toca Si alguien más quiere participar, solo tiene que ir al enlace que he puesto antes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=62&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sé que no uso mucho el blog, pero que la gente <a href="http://and.roid.es">and.roid.es</a>, el blog que sigo sobre el <a href="http://and.roid.es">Android</a>, <a href="http://and.roid.es/androides-sorteo-aniversario-htc-magic-vodafone.html">sorteen un HTC Magic de Vodafone</a> ha hecho que haga este post por ver si suena la flauta y me toca <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Si alguien más quiere participar, solo tiene que ir al enlace que he puesto antes y hacer lo mismo que yo.</p>
<p>A ver a quién le toca! Sorte on guztioi!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=62&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/10/09/sorteo-de-un-htc-magic-por-la-gente-de-and-roid-es/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Colorized grep matches</title>
		<link>http://rugoli.wordpress.com/2009/09/30/colorized-grep-matches/</link>
		<comments>http://rugoli.wordpress.com/2009/09/30/colorized-grep-matches/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 11:22:55 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=56</guid>
		<description><![CDATA[Encontrado vía: http://scie.nti.st/2007/7/18/colorized-grep-matches Why I&#8217;ve been living without this until now is beyond me. I should have known grep had a color option to highlight its matches! Alas, I&#8217;ve been doing grep&#8217;s in grey this whole time. Put this in your ~/.bashrc: export GREP_OPTIONS='--color=auto' export GREP_COLOR='1;33' and weep the next time you do a grep. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=56&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Encontrado vía: http://scie.nti.st/2007/7/18/colorized-grep-matches</p>
<p>Why I&#8217;ve been living without this until now is beyond me. I should have known grep had a color option to highlight its matches! Alas, I&#8217;ve been doing grep&#8217;s in grey this whole time.  Put this in your ~/.bashrc:</p>
<pre><code>
export GREP_OPTIONS='--color=auto'</code>
<code>
export GREP_COLOR='1;33'</code>
<code>
</code></pre>
<p>and weep the next time you do a grep.  &#8217;1;33&#8242; is bright yellow. Change the &#8217;1&#8242; to a &#8217;0&#8242; for the dark version of each color. Try values 30 through 37 for other colors.  A complete table of color codes can be found here: http://kbase.redhat.com/faq/FAQ_43_3926.shtm</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=56&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/09/30/colorized-grep-matches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Hacer proxy con apache</title>
		<link>http://rugoli.wordpress.com/2009/07/01/hacer-proxy-con-apache/</link>
		<comments>http://rugoli.wordpress.com/2009/07/01/hacer-proxy-con-apache/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:58:32 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[miniapunte]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[monitorizar]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=49</guid>
		<description><![CDATA[Para acceder a la web de un servidor interno desde apache podemos usar la opción proxy de apache. Para ello cargamos los módulos a2enmod proxy a2enmod proxy-http y luego hacemos un fichero de config tal que &#60;VirtualHost *:80&#62; ServerName localhost ErrorLog /var/log/apache2/redireccion-error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=49&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Para acceder a la web de un servidor interno desde apache podemos usar la opción proxy de apache. Para ello cargamos los módulos</p>
<pre>a2enmod proxy
a2enmod proxy-http
</pre>
<p>y luego hacemos un fichero de config tal que</p>
<pre>&lt;VirtualHost *:80&gt;
 ServerName localhost
 ErrorLog /var/log/apache2/redireccion-error.log
 # Possible values include: debug, info, notice, warn, error, crit,
 # alert, emerg.
 LogLevel warn
 CustomLog /var/log/apache2/redireccion-access.log combined
 ServerSignature On

 &lt;IfModule mod_proxy.c&gt;
 ProxyVia On
 ProxyBadHeader Ignore
 ProxyPreserveHost On
 ProxyRequests on
 ProxyPass /foo http://www.barrapunto.com/
 ProxyPassReverse /foo http://www.barrapunto.com/

 &lt;Proxy *&gt;
 Order Allow,Deny
 Allow from all

 &lt;/Proxy&gt;
 &lt;/IfModule&gt;
&lt;/VirtualHost&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=49&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/07/01/hacer-proxy-con-apache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Estirar un contenedor de floats</title>
		<link>http://rugoli.wordpress.com/2009/05/29/estirar-un-contenedor-de-floats/</link>
		<comments>http://rugoli.wordpress.com/2009/05/29/estirar-un-contenedor-de-floats/#comments</comments>
		<pubDate>Fri, 29 May 2009 07:20:46 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[Maquetación web]]></category>
		<category><![CDATA[miniapunte]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[hack internet explorer]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=41</guid>
		<description><![CDATA[Los que tengáis que lidiar con páginas web y CSS sabréis lo odioso tedioso que es hacer algunas cosas, e intentar entender la mágia oscura que hay detrás de muchas cosas, y más cuando consigues hacerlo funcionar, y vas a verlo en internet explorer, peta por todos lados. Una de las grandes peleas que he [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=41&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Los que tengáis que lidiar con páginas web y CSS sabréis lo <span style="text-decoration:line-through;">odioso</span> tedioso que es hacer algunas cosas, e intentar entender la mágia oscura que hay detrás de muchas cosas, y más cuando consigues hacerlo funcionar, y vas a verlo en internet explorer, peta por todos lados.</p>
<p>Una de las grandes peleas que he tenido ha sido con los floats, y es que nunca se comportaban como creía que iban a hacerlo, y más cuando dos floats iban dentro de un div, ya que este desaparecía misteriosamente. Para ello, y vía <a href="http://www.anieto2k.com">anieto2k</a>, he encontrado el siguiente <a href="http://css-tricks.com/the-css-overflow-property/">enlace</a>. Me falta probarlo bien, pero parece ser que en nuestros amigos internet explorer no funciona (habrá que testearlo más, y leer el artículo entero :p).</p>
<p>De todas maneras, un compañero de curro me ha pasado el siguiente <em>tip</em> para hacer lo mismo, y que si que funciona (y lo he testeado) en internet explorer. Para que el div contenedor de floats se vea, hay que poner lo siguiente en el css, y darle la clase &#8220;clearfloat&#8221; al div contenedor:</p>
<blockquote><p>/*********************************************************<br />
Para estirar un contenedor con floats por debajo del contenido<br />
**********************************************************/<br />
.clearfloat:after<br />
{<br />
content: &#8220;.&#8221;;<br />
display: block;<br />
height: 0;<br />
clear: both;<br />
visibility: hidden;<br />
}</p>
<p>.clearfloat<br />
{display: inline-block;}</p>
<p>/* Oculta para IE-mac \*/<br />
* html .clearfloat<br />
{height: 1%;}</p>
<p>.clearfloat<br />
{display: block;}</p>
<p>/* Para corregir bugs del IE con los elementos con float */<br />
/* Hides from IE-mac \*/<br />
* html #mainresume {height: 1%; display: inline}<br />
/* End hide from IE-mac */</p></blockquote>
<p>Ahora me falta ponerlo en práctica, y acordarme de este truco (para eso lo pongo aquí :p)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=41&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/05/29/estirar-un-contenedor-de-floats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Recuerda, mkfs es tu amigo al formatear</title>
		<link>http://rugoli.wordpress.com/2009/05/28/recuerda-mkfs-es-tu-amigo-al-formatear/</link>
		<comments>http://rugoli.wordpress.com/2009/05/28/recuerda-mkfs-es-tu-amigo-al-formatear/#comments</comments>
		<pubDate>Thu, 28 May 2009 07:26:37 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[miniapunte]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=39</guid>
		<description><![CDATA[Parece mentira, pero siempre que intento formatear un disco duro en linux me pasa lo mismo, y es que nunca recuerdo el paso intermedio, el mkfs :$ Al final lo pongo aquí para ver si de una vez por todas consigo recordarlo. Pasos para formatear un disco duro (con ext3, que es lo que uso [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=39&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Parece mentira, pero siempre que intento formatear un disco duro en linux me pasa lo mismo, y es que nunca recuerdo el paso intermedio, el mkfs :$ Al final lo pongo aquí para ver si de una vez por todas consigo recordarlo.</p>
<p>Pasos para formatear un disco duro (con ext3, que es lo que uso ahora):</p>
<ol>
<li>cfdisk /dev/sdX</li>
<li>mkfs.ext3 /dev/sdXi</li>
<li>Añadirlo al /etc/fstab o lo que sea</li>
</ol>
<p>Pues ale, a ver si de esta no vuelvo a perder 20 minutos intentando recordarlo, que me averguenzo de mi mismo <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=39&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/05/28/recuerda-mkfs-es-tu-amigo-al-formatear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
		<item>
		<title>Primer miniapunte: coloreando el host en la shell</title>
		<link>http://rugoli.wordpress.com/2009/04/20/primer-miniapunte-coloreando-el-host-en-la-shell/</link>
		<comments>http://rugoli.wordpress.com/2009/04/20/primer-miniapunte-coloreando-el-host-en-la-shell/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 08:30:56 +0000</pubDate>
		<dc:creator>rugoli</dc:creator>
				<category><![CDATA[miniapunte]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://rugoli.wordpress.com/?p=19</guid>
		<description><![CDATA[Creo la categoría miniapunte con una chorrada que ya tenía en el ordenador viejo, pero que ahora me parece que realmente es muy útil. Ahora que ando tocando muchos servidores, me he dado cuenta de lo importante que puede ser reconocer en qué servidor estás en cada momento. Generalmente solemos tener algo así, pero en [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=19&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Creo la categoría miniapunte con una chorrada que ya tenía en el ordenador viejo, pero que ahora me parece que realmente es muy útil. Ahora que ando tocando muchos servidores, me he dado cuenta de lo importante que puede ser reconocer en qué servidor estás en cada momento.</p>
<p>Generalmente solemos tener algo así, pero en blanco y negro, en la línea de bash:</p>
<blockquote><p>yuki@atomic:~$</p></blockquote>
<p>Si añadimos en nuestro ~/.bashrc (o mejor en /etc/bashrc ) lo siguiente, podremos identificar bien el nombre del usuario y el host en el que estamos:</p>
<blockquote><p>C1=&#8221;\[33[0;30m\]&#8221; # Black<br />
C2=&#8221;\[33[1;30m\]&#8221; # Dark Gray<br />
C3=&#8221;\[33[0;31m\]&#8221; # Red<br />
C4=&#8221;\[33[1;31m\]&#8221; # Light Red<br />
C5=&#8221;\[33[0;32m\]&#8221; # Green<br />
C6=&#8221;\[33[1;32m\]&#8221; # Light Green<br />
C7=&#8221;\[33[0;33m\]&#8221; # Brown<br />
C8=&#8221;\[33[1;33m\]&#8221; # Yellow<br />
C9=&#8221;\[33[0;34m\]&#8221; # Blue<br />
C10=&#8221;\[33[1;34m\]&#8221; # Light Blue<br />
C11=&#8221;\[33[0;35m\]&#8221; # Purple<br />
C12=&#8221;\[33[1;35m\]&#8221; # Light Purple<br />
C13=&#8221;\[33[0;36m\]&#8221; # Cyan<br />
C14=&#8221;\[33[1;36m\]&#8221; # Light<br />
C15=&#8221;\[33[0;37m\]&#8221; # Light Gray<br />
C16=&#8221;\[33[1;37m\]&#8221; # White<br />
P=&#8221;\[33[0m\]&#8221; # Neutral</p>
<p>PS1=&#8221;$C6\u$P@$C13\h$P \W $ &#8220;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rugoli.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rugoli.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rugoli.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rugoli.wordpress.com&amp;blog=394064&amp;post=19&amp;subd=rugoli&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rugoli.wordpress.com/2009/04/20/primer-miniapunte-coloreando-el-host-en-la-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/71d3a4ebbe41f1bd55b38bab50055741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rugoli</media:title>
		</media:content>
	</item>
	</channel>
</rss>
