<?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>El Blog de Jose Luis Barrientos</title>
	<atom:link href="http://gentooluis.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gentooluis.wordpress.com</link>
	<description>GNU/Linux, Programación, Tecnológia, Ingeniería, Informatica, humor y otras cosas</description>
	<lastBuildDate>Thu, 03 Dec 2009 18:59:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='gentooluis.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f55dcb12ba8c2ab54a314653a4727eb2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>El Blog de Jose Luis Barrientos</title>
		<link>http://gentooluis.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gentooluis.wordpress.com/osd.xml" title="El Blog de Jose Luis Barrientos" />
		<item>
		<title>Hola mundo en Turbo Ensamblador (TASM)</title>
		<link>http://gentooluis.wordpress.com/2009/12/03/hola-mundo-en-turbo-ensamblador-tasm/</link>
		<comments>http://gentooluis.wordpress.com/2009/12/03/hola-mundo-en-turbo-ensamblador-tasm/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 18:57:28 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[tasm turbo ensamblador]]></category>
		<category><![CDATA[ensamblador]]></category>
		<category><![CDATA[programacion]]></category>
		<category><![CDATA[tasm]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=188</guid>
		<description><![CDATA[Aqui un pequeño ejemplo sobre programacion en lenguaje ensamblador, especificamente en turbo ensamblador.
despues iré poniendo mas ejemplos. si necesitan algo en especial dejen un comentario:).
.model small ;declaracion del modelo de memoria
.stack
.data
mensaje dB 'hola chavalito','$'
.code
inicio:
mov ax,@data
mov ds, ax
lea dx,mensaje
mov ah, 09h
int 21h
mov ah,4ch
int 21h
end inicio
ensamblado y linkeado:
nota: guardarlo de tipo &#8220;todos los archivos&#8221; y extension .asm
se [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=188&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/12/03/hola-mundo-en-turbo-ensamblador-tasm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Java media Framework, java y multimedia. ppt</title>
		<link>http://gentooluis.wordpress.com/2009/11/07/java-media-framework-java-y-multimedia-ppt/</link>
		<comments>http://gentooluis.wordpress.com/2009/11/07/java-media-framework-java-y-multimedia-ppt/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 04:35:07 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=183</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=183&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/11/07/java-media-framework-java-y-multimedia-ppt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Metodo de ordenamiento en java: ShellShort</title>
		<link>http://gentooluis.wordpress.com/2009/11/07/metodo-de-ordenamiento-en-java-shellshort/</link>
		<comments>http://gentooluis.wordpress.com/2009/11/07/metodo-de-ordenamiento-en-java-shellshort/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 03:59:31 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=180</guid>
		<description><![CDATA[public class ShellSort {

 public static void main(String args[]){
 int arrayEntrada[]={2, 5, 4, 1, 3}; //Este es el array de elementos que vamos a ordenar

 shellSort(arrayEntrada); //llamada al metodo shellSort
 //fin del for
 }//fin del main

 public static void shellSort( int a[ ])
 {
 for( int gap = a.length / 2; gap &#62; 0; gap=gap==2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=180&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/11/07/metodo-de-ordenamiento-en-java-shellshort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Estructura de datos: palindromo en java</title>
		<link>http://gentooluis.wordpress.com/2009/11/07/estructura-de-datos-palindromo-en-java/</link>
		<comments>http://gentooluis.wordpress.com/2009/11/07/estructura-de-datos-palindromo-en-java/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 03:53:24 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=175</guid>
		<description><![CDATA[un ejemplo de pilas en java


import java.io.*;
 class Palindromo{
 public static void main(String args[])throws IOException{
 Pila pilaChar;
 char ch;
 boolean esPal;
 String pal;
 BufferedReader entrada=new BufferedReader(new InputStreamReader(System.in));
 try{
 pilaChar=new Pila();//crea pila vacia
 System.out.println("Teclea la palabra"+" a vereficar si es palindromo:");
 System.out.flush();
 pal=entrada.readLine();
 //se crea la pila con los caracteres de la palabra
 pilaChar=new Pila();
 for(int [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=175&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/11/07/estructura-de-datos-palindromo-en-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://gentooluis.wordpress.com/2009/09/09/174/</link>
		<comments>http://gentooluis.wordpress.com/2009/09/09/174/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 11:07:38 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/2009/09/09/174/</guid>
		<description><![CDATA[
1.4 ensambladores y compiladores
View more presentations from luisrudeboy.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=174&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/09/09/174/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>

		<media:content url="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bHQ9MTI1MjU1OTE1NjI3NCZwdD*xMjUyNTU5MTk4MjYzJnA9MTAxOTEmZD*mbj13b3JkcHJlc3MmZz*xJm89MmQ5NGM5NzYzZjYwNDM1MDlhNTMwZTY2YTdhOGI2Mzcmb2Y9MA==.gif" medium="image" />
	</item>
		<item>
		<title>Compiladores y Ensambladores</title>
		<link>http://gentooluis.wordpress.com/2009/09/09/compiladores-y-ensambladores/</link>
		<comments>http://gentooluis.wordpress.com/2009/09/09/compiladores-y-ensambladores/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 05:00:58 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=162</guid>
		<description><![CDATA[Hola que tal aqui dejo apuntes (principalmente teoria) sobre definiciones fundamentales en temas de compiladores y ensambladores de la materia de Programacion de sistemas. espero que les sirva.

compiladores y ensambladores 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=162&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/09/09/compiladores-y-ensambladores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Solucion a los 72 minutos de megavideo.com</title>
		<link>http://gentooluis.wordpress.com/2009/06/22/solucion-a-los-72-minutos-de-megavideo-com/</link>
		<comments>http://gentooluis.wordpress.com/2009/06/22/solucion-a-los-72-minutos-de-megavideo-com/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 02:09:53 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[trucos]]></category>
		<category><![CDATA[ilimitux]]></category>
		<category><![CDATA[megavideo]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=157</guid>
		<description><![CDATA[Buscando una solucion a la restriccion de megavideo un amigo me hablo de Ilimitux.
Ilimitux es un complemento para firefox. el cual lo podremos instalar muy facilmente. bueno lo que hace ilimitux es que nos redirecciona a su pagina web y nos permite ver el video completo y tambien en pantalla completa. esta comprobado. no son [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=157&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/06/22/solucion-a-los-72-minutos-de-megavideo-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Si los lenguajes de programacion son navajas ..</title>
		<link>http://gentooluis.wordpress.com/2009/06/21/si-los-lenguajes-de-programacion-son-navajas/</link>
		<comments>http://gentooluis.wordpress.com/2009/06/21/si-los-lenguajes-de-programacion-son-navajas/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 16:42:33 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[programacion]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=154</guid>
		<description><![CDATA[       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=154&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/06/21/si-los-lenguajes-de-programacion-son-navajas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>

		<media:content url="http://gentooluis.files.wordpress.com/2009/06/140x543.jpg" medium="image">
			<media:title type="html">140x543</media:title>
		</media:content>
	</item>
		<item>
		<title>En Duda el origen de la &#8220;gripe porcina&#8221; ahora influenza humana</title>
		<link>http://gentooluis.wordpress.com/2009/05/06/en-duda-el-origen-de-la-gripe-porcina-ahora-influenza-humana/</link>
		<comments>http://gentooluis.wordpress.com/2009/05/06/en-duda-el-origen-de-la-gripe-porcina-ahora-influenza-humana/#comments</comments>
		<pubDate>Wed, 06 May 2009 17:54:30 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gripe porcina]]></category>
		<category><![CDATA[influenza]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=148</guid>
		<description><![CDATA[Varios especialistas analizan lo extraño de las informaciones cruzadas respecto al origen de la influenza A. Aseguran que su origen no proviene de cerdos, sino que pudo haber sido creada con ingeniería genética. Esto sería para &#8220;probar&#8221; las reacciones de la población ante un arma biológica. También advierten sobre la ineficiencia y peligrosidad del consumo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=148&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/05/06/en-duda-el-origen-de-la-gripe-porcina-ahora-influenza-humana/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
		<item>
		<title>Frases: Variables en un Lenguaje de Programacion</title>
		<link>http://gentooluis.wordpress.com/2009/05/04/frases-variables-en-un-lenguaje-de-programacion/</link>
		<comments>http://gentooluis.wordpress.com/2009/05/04/frases-variables-en-un-lenguaje-de-programacion/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:16:09 +0000</pubDate>
		<dc:creator>Jose Luis Barrientos Teran</dc:creator>
				<category><![CDATA[frases]]></category>
		<category><![CDATA[programacion]]></category>
		<category><![CDATA[lenguaje de programacion]]></category>

		<guid isPermaLink="false">http://gentooluis.wordpress.com/?p=145</guid>
		<description><![CDATA[&#8220;La selección de buenos nombres de variables en un lenguaje de programacion es un arte!&#8221;
Bjarne Stroustrup

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gentooluis.wordpress.com&blog=1123035&post=145&subd=gentooluis&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://gentooluis.wordpress.com/2009/05/04/frases-variables-en-un-lenguaje-de-programacion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f828f4a164cd853248cb012b6b2e9320?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">luisnux</media:title>
		</media:content>
	</item>
	</channel>
</rss>