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

<channel>
	<title>gloob @ devlog</title>
	<atom:link href="http://www.litio.org/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.litio.org/wp</link>
	<description>one Map/Reduce to rule them all</description>
	<pubDate>Sun, 28 Feb 2010 18:42:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Parque Oromana</title>
		<link>http://www.litio.org/wp/2010/02/28/parque-oromana/</link>
		<comments>http://www.litio.org/wp/2010/02/28/parque-oromana/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 18:37:33 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=57</guid>
		<description><![CDATA[Ya que esta mañana acompañaba el tiempo nos hemos animado a coger las bicis (y de paso probar mi nuevo soporte para htc hero en la bici) y dar un paseo por el parque de oromana muy cerca de mi casa.
La ruta seguida: Mapa oromana
Ver Salida Oromana en un mapa más grande
Algunas fotos: Album Oromana
]]></description>
			<content:encoded><![CDATA[<p>Ya que esta mañana acompañaba el tiempo nos hemos animado a coger las bicis (y de paso probar mi nuevo soporte para htc hero en la bici) y dar un paseo por el parque de oromana muy cerca de mi casa.</p>
<p>La ruta seguida: <a href="http://maps.google.com/maps/ms?msa=0&#038;msid=215557080311102737278.000480acaf27422552396">Mapa oromana</a></p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;msa=0&amp;msid=103609845712758293368.000480acaf27422552396&amp;ll=37.329354,-5.836336&amp;spn=0.010343,0.014795&amp;output=embed"></iframe><br /><small>Ver <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;msa=0&amp;msid=103609845712758293368.000480acaf27422552396&amp;ll=37.329354,-5.836336&amp;spn=0.010343,0.014795&amp;source=embed" style="color:#0000FF;text-align:left">Salida Oromana</a> en un mapa más grande</small></p>
<p>Algunas fotos: <a href="http://www.flickr.com/photos/gloob/sets/72157623402781349/">Album Oromana</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/02/28/parque-oromana/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compiling PHP 5.3.x on Ubuntu (probably Debian based will work)</title>
		<link>http://www.litio.org/wp/2010/02/28/compiling-php-53x-on-ubuntu-probably-debian-based-will-work/</link>
		<comments>http://www.litio.org/wp/2010/02/28/compiling-php-53x-on-ubuntu-probably-debian-based-will-work/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 17:32:52 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=47</guid>
		<description><![CDATA[By some reason libc-client package in modern versions of ubuntu and debian don&#8217;t work with php 5.3.x
One solution is compile a new version of libc-client lib.

#!/bin/sh -x
## for Ubuntu 9.10
## Author: Alejandro Leiva 
cd $(dirname $0)
FILE_DIR=$(cd $(dirname $0) &#038;&#038; pwd)
apt-get install -y libxml2-dev libbz2-dev libpng-dev libjpeg62-dev libc-client2007b-dev libmysqlclient15-dev libxslt1-dev apache2-mpm-prefork apache2-prefork-dev
cd /usr/src
wget ftp://ftp.cac.washington.edu/imap/imap-2007e.tar.Z
zcat imap-2007e.tar.Z &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>By some reason libc-client package in modern versions of ubuntu and debian don&#8217;t work with php 5.3.x</p>
<p>One solution is compile a new version of libc-client lib.</p>
<p><code><br />
#!/bin/sh -x<br />
## for Ubuntu 9.10<br />
## Author: Alejandro Leiva <gloob@php.net></p>
<p>cd $(dirname $0)<br />
FILE_DIR=$(cd $(dirname $0) &#038;&#038; pwd)</p>
<p>apt-get install -y libxml2-dev libbz2-dev libpng-dev libjpeg62-dev libc-client2007b-dev libmysqlclient15-dev libxslt1-dev apache2-mpm-prefork apache2-prefork-dev</p>
<p>cd /usr/src<br />
wget ftp://ftp.cac.washington.edu/imap/imap-2007e.tar.Z<br />
zcat imap-2007e.tar.Z | tar -xvf -<br />
cd imap-2007e<br />
make clean<br />
make ldb EXTRAAUTHENTICATORS=gss PASSWDTYPE=gss<br />
cp c-client/c-client.a c-client/libc-client.a<br />
mkdir -p /usr/local/c-client-2007e/lib<br />
mkdir -p /usr/local/c-client-2007e/include<br />
cp c-client/*.h /usr/local/c-client-2007e/include<br />
cp c-client/*.a /usr/local/c-client-2007e/lib</p>
<p>cd ..</p>
<p>wget http://es2.php.net/get/php-5.3.1.tar.bz2/from/es.php.net/mirror<br />
tar xvjf php-5.3.1.tar.bz2<br />
cd php-5.3.1<br />
./configure &#8211;prefix=/usr/local/php-5.3.1 &#8211;with-bz2 &#8211;with-gd &#8211;with-zlib &#8211;with-mysql &#8211;with-xsl &#8211;with-gettext &#8211;enable-mbstring &#8211;enable-sysvsem &#8211;enable-sysvshm &#8211;enable-sysvmsg &#8211;enable-pcntl &#8211;enable-ftp &#8211;with-imap=/usr/local/c-client-2007e &#8211;with-imap-ssl &#8211;with-kerberos &#8211;with-apxs2=$(which apxs2)<br />
make<br />
make install<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2010/02/28/compiling-php-53x-on-ubuntu-probably-debian-based-will-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing OTRS 2.4.5 on Debian Lenny</title>
		<link>http://www.litio.org/wp/2009/12/31/installing-otrs-245-on-debian-lenny/</link>
		<comments>http://www.litio.org/wp/2009/12/31/installing-otrs-245-on-debian-lenny/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 10:36:46 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=37</guid>
		<description><![CDATA[
wget http://ftp.otrs.org/pub/otrs/otrs-2.4.5.tar.bz2
tar xvjf otrs-2.4.5.tar.bz2
mv otrs-2.4.5 /services/otrs
/services/otrs/bin/otrs.checkModules
# Perl dependencies.
# to update CGI to v3.38
apt-get install libcgi-pm-perl
# LWP::UserAgent &#124; Date::Format
apt-get install libwww-perl
# Net::DNS
apt-get install libnet-dns-perl
# IO::Socket::SSL &#124; Net::IMAP::Simple::SSL
apt-get install libio-socket-ssl-perl
# Net::LDAP
apt-get install libnet-ldap-perl
# GD stuff
apt-get install libgd-gd2-perl libgd-text-perl libgd-graph-perl
# PDF::API2
apt-get install libpdf-api2-perl
# SOAP::Lite &#124; XML::Parser
apt-get install libsoap-lite-perl
# Add OTRS user
useradd -d /services/otrs -c 'OTRS user' otrs
# Add [...]]]></description>
			<content:encoded><![CDATA[<p><code><br />
wget http://ftp.otrs.org/pub/otrs/otrs-2.4.5.tar.bz2</p>
<p>tar xvjf otrs-2.4.5.tar.bz2</p>
<p>mv otrs-2.4.5 /services/otrs</p>
<p>/services/otrs/bin/otrs.checkModules</p>
<p># Perl dependencies.</p>
<p># to update CGI to v3.38<br />
apt-get install libcgi-pm-perl</p>
<p># LWP::UserAgent | Date::Format<br />
apt-get install libwww-perl</p>
<p># Net::DNS<br />
apt-get install libnet-dns-perl</p>
<p># IO::Socket::SSL | Net::IMAP::Simple::SSL<br />
apt-get install libio-socket-ssl-perl</p>
<p># Net::LDAP<br />
apt-get install libnet-ldap-perl</p>
<p># GD stuff<br />
apt-get install libgd-gd2-perl libgd-text-perl libgd-graph-perl</p>
<p># PDF::API2<br />
apt-get install libpdf-api2-perl</p>
<p># SOAP::Lite | XML::Parser<br />
apt-get install libsoap-lite-perl</p>
<p># Add OTRS user<br />
useradd -d /services/otrs -c 'OTRS user' otrs<br />
# Add OTRS user to www-data group<br />
adduser otrs www-data</p>
<p>cp Kernel/Config.pm.dist Kernel/Config.pm<br />
cd Kernel/Config<br />
for foo in *.dist; do cp $foo `basename $foo .dist`; done</p>
<p># webserver stuff<br />
/services/otrs/bin/SetPermissions.pl --otrs-user=otrs --web-user=www-data --otrs-group=www-data --web-group=www-data /services/otrs/<br />
cp apache2-httpd-new.include.conf /etc/apache2/sites-available/otrs<br />
apt-get install libapache2-mod-perl2<br />
a2enmod perl<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2009/12/31/installing-otrs-245-on-debian-lenny/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New GSOC 2009 T-shirt just arrived</title>
		<link>http://www.litio.org/wp/2009/09/14/new-gsoc-2009-t-shirt-just-arrived/</link>
		<comments>http://www.litio.org/wp/2009/09/14/new-gsoc-2009-t-shirt-just-arrived/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:52:05 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=32</guid>
		<description><![CDATA[That&#8217;s, this year like a mentor I received a new t-shirt from google, thanks guys!
]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s, this year like a mentor I received a new t-shirt from google, thanks guys!</p>
<div id="attachment_33" class="wp-caption alignnone" style="width: 458px"><img class="size-full wp-image-33 " title="gsoc_2009_tshirt" src="http://www.litio.org/wp/wp-content/47.jpg" alt="GSOC 2009 T-Shirt" width="448" height="336" /><p class="wp-caption-text">GSOC 2009 T-Shirt</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2009/09/14/new-gsoc-2009-t-shirt-just-arrived/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Gears don&#8217;t install on Snow Leopard</title>
		<link>http://www.litio.org/wp/2009/09/07/google-gears-dont-install-on-snow-leopardi/</link>
		<comments>http://www.litio.org/wp/2009/09/07/google-gears-dont-install-on-snow-leopardi/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 19:13:22 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=26</guid>
		<description><![CDATA[I try to install Google Gears on Safari 4.0.3 on 10.6 (Snow Leopard) you can&#8217;t because this #847. It seems like Google prefer to develop Google Chrome support on osx than Google Gears pluging ;)
There&#8217;s an unofficial package here (Mailplane dude, you rocks!)
]]></description>
			<content:encoded><![CDATA[<p>I try to install <a href="http://tools.google.com/gears/">Google Gears</a> on Safari 4.0.3 on 10.6 (Snow Leopard) you can&#8217;t because this <a href="http://code.google.com/p/gears/issues/detail?id=847">#847</a>. It seems like Google prefer to develop Google Chrome support on osx than Google Gears pluging ;)</p>
<p>There&#8217;s an unofficial package <a href="http://mailplaneapp.com/download/google_gears/">here</a> (Mailplane dude, you rocks!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2009/09/07/google-gears-dont-install-on-snow-leopardi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Talk: Arquitectura de un game engine 3D</title>
		<link>http://www.litio.org/wp/2009/02/23/talk-arquitectura-de-un-game-engine-3d/</link>
		<comments>http://www.litio.org/wp/2009/02/23/talk-arquitectura-de-un-game-engine-3d/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 20:55:21 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=21</guid>
		<description><![CDATA[El sábado 7 de Febrero tuve la oportunidad de dar una charla sobre las bases de un un game engine 3D en la asociación DeSEA a la cual pertenezco.
Dejo colgado los slides de la charla aunque no tienen mucha chicha ya que los usé más como guión que como presentación formal. Prometo aumentarla con las [...]]]></description>
			<content:encoded><![CDATA[<p>El <a href="http://www.desea.es/index.php/2009/01/29/54/">sábado 7 de Febrero tuve la oportunidad de dar una charla</a> sobre las bases de un un game engine 3D en la asociación DeSEA a la cual pertenezco.</p>
<p>Dejo colgado los slides de la charla aunque no tienen mucha chicha ya que los usé más como guión que como presentación formal. Prometo aumentarla con las notas de la charla y dejar algo más útil o/<br />
 <br />
<iframe src='http://docs.google.com/EmbedSlideshow?docid=dgg39tzw_1f2cskhhs' frameborder='0' width='410' height='342'></iframe></p>
<p>Además tuve el privilegio de aparecer en prensa al día siguiente <a href="http://www.diariodesevilla.es/article/sevilla/345542/videojuegos/por/dentro.html" target="_blank">http://www.diariodesevilla.es/article/sevilla/345542/videojuegos/por/dentro.html</a></p>
<p>Agradecer a <a title="Javier Mairena" href="http://www.javiermairena.net" target="_blank">Javier Mairena</a> (con el cual compartí la charla) que no me robara todo el tiempo ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2009/02/23/talk-arquitectura-de-un-game-engine-3d/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compiling gettext PHP extension on Mac Os 10.5.6</title>
		<link>http://www.litio.org/wp/2009/02/21/compiling-gettext-php-extension-on-mac-os-1056/</link>
		<comments>http://www.litio.org/wp/2009/02/21/compiling-gettext-php-extension-on-mac-os-1056/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 12:52:12 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=20</guid>
		<description><![CDATA[This works on new MacBooks with intel architecture.
Gettext compilation.
curl -O ftp://ftp.gnu.org/gnu/gettext/gettext-0.17.tar.gz   
tar xvzf gettext-0.17.tar.gz
cd gettext-0.17/gettext-runtime/
MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221; CCFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; CXXFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; LDFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch [...]]]></description>
			<content:encoded><![CDATA[<p>This works on new MacBooks with intel architecture.</p>
<p><strong>Gettext compilation.</strong></p>
<div>curl -O ftp://ftp.gnu.org/gnu/gettext/gettext-0.17.tar.gz   </p>
<p>tar xvzf gettext-0.17.tar.gz</p>
<p>cd gettext-0.17/gettext-runtime/</p>
<p>MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221; CCFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; CXXFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; LDFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bind_at_load&#8221; ./configure &#8211;enable-shared</p>
<p>make</p>
<p>sudo make install</p>
</div>
<p><strong>PHP compilation.</strong></p>
<div>curl -O http://www.opensource.apple.com/darwinsource/10.5.6/apache_mod_php-44.1/php-5.2.6.tar.bz2   </p>
<p>tar xvjf php-5.2.6.tar.bz2</p>
<p>cd php-5.2.6/ext/gettext/</p>
<p>phpize</p>
<p>MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221; CCFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; CXXFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; LDFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bind_at_load&#8221; ./configure</p>
<p>make</p>
<p>make install</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2009/02/21/compiling-gettext-php-extension-on-mac-os-1056/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Electric Fence &amp;&amp; Leopard (Mac OS X 10.5.x) &amp;&amp; CMake</title>
		<link>http://www.litio.org/wp/2008/08/10/electric-fence-leopard-mac-os-x-105x-cmake/</link>
		<comments>http://www.litio.org/wp/2008/08/10/electric-fence-leopard-mac-os-x-105x-cmake/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 13:44:05 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.litio.org/wp/?p=18</guid>
		<description><![CDATA[You can get Electric Fence from http://perens.com/works/software/ElectricFence/
Comment out line #33 of file.c

$ make CFLAGS="-g -DPAGE_PROTECTION_VIOLATED_SIGNAL=SIGBUS"
# make install

You will have a libefence compiled and installed in your Mac OS X system.
Now add the library to your main target in your CMakeLists.txt

# Add efence link
find_library(EFENCE_LIBRARY "libefence.a")
target_link_libraries(YOUR_MAIN_TARGET ${EFENCE_LIBRARY})

cmake and make (or build or whatever you are generating)

$ gdb [...]]]></description>
			<content:encoded><![CDATA[<p>You can get Electric Fence from <a href="http://perens.com/works/software/ElectricFence/">http://perens.com/works/software/ElectricFence/</a></p>
<p>Comment out line #33 of file.c</p>
<pre>
$ make CFLAGS="-g -DPAGE_PROTECTION_VIOLATED_SIGNAL=SIGBUS"
# make install
</pre>
<p>You will have a libefence compiled and installed in your Mac OS X system.</p>
<p>Now add the library to your main target in your CMakeLists.txt</p>
<pre>
# Add efence link
find_library(EFENCE_LIBRARY "libefence.a")
target_link_libraries(YOUR_MAIN_TARGET ${EFENCE_LIBRARY})
</pre>
<p>cmake and make (or build or whatever you are generating)</p>
<pre>
$ gdb /path/to/executable
(gdb) r
(gdb) bt
</pre>
<p>And useful debug info and an electric fence will appear :)</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2008/08/10/electric-fence-leopard-mac-os-x-105x-cmake/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Today is a great day</title>
		<link>http://www.litio.org/wp/2008/08/09/today-is-a-great-day/</link>
		<comments>http://www.litio.org/wp/2008/08/09/today-is-a-great-day/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 11:06:49 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<guid isPermaLink="false">http://www.litio.org/wp/?p=17</guid>
		<description><![CDATA[Yesterday I reached a milestone in my GSOC project &#8220;Replace auto* with CMake&#8220;. To compile and linking an instance of php (cli sapi)! :)
I also generated the XCode project for PHP (I&#8217;m developing now in OSX) you can see a screenshot here
This is promising =)
]]></description>
			<content:encoded><![CDATA[<p>Yesterday I reached a milestone in my GSOC project &#8220;<a href="http://code.google.com/soc/2008/php/appinfo.html?csaid=93F63E6C761134FB">Replace auto* with CMake</a>&#8220;. To compile and linking an instance of php (cli sapi)! :)</p>
<p>I also generated the XCode project for PHP (I&#8217;m developing now in OSX) you can see a screenshot <a href="http://www.litio.org/files/php_xcode.png">here</a></p>
<p>This is promising =)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2008/08/09/today-is-a-great-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mercurial</title>
		<link>http://www.litio.org/wp/2008/06/21/mercurial/</link>
		<comments>http://www.litio.org/wp/2008/06/21/mercurial/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 18:04:57 +0000</pubDate>
		<dc:creator>gloob</dc:creator>
		
		<category><![CDATA[desarrollo]]></category>

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

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

		<guid isPermaLink="false">http://www.litio.org/wp/?p=16</guid>
		<description><![CDATA[Hasta ahora no había probado este DSCM que me parece muy interesante para empezar a trabajar en grupos de forma cooperativa de manera muy rápida.
Pego un enlace al tutorial en español cuya traducción acabo de parir.
Entendiendo Mercurial
]]></description>
			<content:encoded><![CDATA[<p>Hasta ahora no había probado este <a title="DSCM" href="http://en.wikipedia.org/wiki/Distributed_revision_control" target="_blank">DSCM</a> que me parece muy interesante para empezar a trabajar en grupos de forma cooperativa de manera muy rápida.</p>
<p>Pego un enlace al tutorial en español cuya traducción acabo de parir.</p>
<p><a title="Entendiendo Mercurial" href="http://www.selenic.com/mercurial/wiki/index.cgi/SpanishUnderstandingMercurial" target="_blank">Entendiendo Mercurial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.litio.org/wp/2008/06/21/mercurial/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
<!--f0c25b539901624b460e129d15264305-->