<?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>fallinglab &#187; Linux</title>
	<atom:link href="http://www.fallinglab.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fallinglab.com</link>
	<description>It's Not How Far You Fall, It's the Way You Land</description>
	<lastBuildDate>Wed, 17 Mar 2010 21:10:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Eliminar archivos de backup de Vim o Gedit de un repositorio GIT</title>
		<link>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/</link>
		<comments>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:43:55 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Gedit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/?p=20</guid>
		<description><![CDATA[Si te sucede que te olvidaste de incluir la línea necesaria para ingnorar los archivos de backup en el archivo .gitignore y necesitas eliminar todos los archivos de backup de repositorio. Podes hacerlo con el siguiente comando: find ./ -name '*~' &#124; xargs git-rm Luego, definitivamente agregá la línea *~ al archivo .gitignore y hacé [...]]]></description>
			<content:encoded><![CDATA[<p>Si te sucede que te olvidaste de incluir la línea necesaria para ingnorar los archivos de backup en el archivo .gitignore y necesitas eliminar todos los archivos de backup de repositorio. Podes hacerlo con el siguiente comando:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-name</span> <span style="color: #ff0000;">'*~'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #c20cb9; font-weight: bold;">git-rm</span></pre></div></div>

<p>Luego, definitivamente agregá la línea</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">*</span>~</pre></div></div>

<p>al archivo .gitignore y hacé el commit de los cambios</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">git</span> add .gitignore
<span style="color: #c20cb9; font-weight: bold;">git</span> commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;Se borraron los archivos de Backup&quot;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalar FXRuby en Ubuntu</title>
		<link>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/</link>
		<comments>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 02:46:10 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/</guid>
		<description><![CDATA[Antes de instalar el gem fxruby es necesario tener instalado el fox-toolkit 1.6 en Ubuntu sudo apt-get install libfox-1.6-0 libfox-1.6-dev y recien instalar fxruby sudo gem install fxruby]]></description>
			<content:encoded><![CDATA[<p>Antes de instalar el gem fxruby es necesario tener instalado el fox-toolkit 1.6 en Ubuntu</p>
<p><code><br />
sudo apt-get install libfox-1.6-0 libfox-1.6-dev<br />
</code></p>
<p>y recien instalar fxruby</p>
<p><code><br />
sudo gem install fxruby<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>El poder de Vi en NetBeans</title>
		<link>http://www.fallinglab.com/2008/07/16/el-poder-de-vi-en-netbeans/</link>
		<comments>http://www.fallinglab.com/2008/07/16/el-poder-de-vi-en-netbeans/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 00:57:33 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Gedit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Vi]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/2008/07/16/el-poder-de-vi-en-netbeans/</guid>
		<description><![CDATA[Para aquellos que conocen y disfrutan de la productividad de Vi(m) y quieren tener la funcionalidad que ofrece un IDE como NetBeans les recomiendo instalar el plugin jVi si no lo han hecho aún. jVi es un clon de Vi desarrollado en java y disponible para NetBeans como plugin. La versión más reciente es la [...]]]></description>
			<content:encoded><![CDATA[<p>Para aquellos que conocen y disfrutan de la productividad de <a href="http://www.vim.org/" target="_blank">Vi(m)</a> y quieren tener la funcionalidad que ofrece un IDE como <a href="http://www.netbeans.org/" target="_blank">NetBeans</a> les recomiendo instalar el plugin <a href="http://jvi.sourceforge.net/" target="_blank">jVi</a> si no lo han hecho aún. <a href="http://jvi.sourceforge.net/" target="_blank">jVi</a> es un clon de <a href="http://www.vim.org/" target="_blank">Vi</a> desarrollado en java y disponible para <a href="http://www.netbeans.org/" target="_blank">NetBeans</a> como plugin. La versión más reciente es la <a href="https://sourceforge.net/project/showfiles.php?group_id=3653" target="_blank">1.1.6</a> y anda bien en <a href="http://www.netbeans.org/" target="_blank">NetBeans 6.1</a></p>
<p><strong>Sitio Web:</strong> <a href="http://jvi.sourceforge.net/" target="_blank">http://jvi.sourceforge.net/</a><br />
<strong>Bajar:</strong> <a href="https://sourceforge.net/project/showfiles.php?group_id=3653" target="_blank">https://sourceforge.net/project/showfiles.php?group_id=3653<br />
</a><br />
Hay otra alternativa, <a href="http://viex.sourceforge.net/" target="_blank">Viex</a>, aunque parece no ser tan madura ni completa como la anterior.</p>
<p>También para quienes usan <a href="http://www.gnome.org/projects/gedit/" target="_blank">Gedit</a>, en mi caso uso ambos, hay una herramienta similar: <a href="https://launchpad.net/vigedit/" target="_blank">ViGedit</a></p>
<p><strong>Bajar:</strong> <a href="https://launchpad.net/vigedit/" target="_blank">https://launchpad.net/vigedit/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/07/16/el-poder-de-vi-en-netbeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

