<?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>omarenm&#039;s blog</title>
	<atom:link href="http://omarenm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://omarenm.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 01:28:06 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='omarenm.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>omarenm&#039;s blog</title>
		<link>http://omarenm.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://omarenm.wordpress.com/osd.xml" title="omarenm&#039;s blog" />
	<atom:link rel='hub' href='http://omarenm.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Cargar un ResultSet en un JTable</title>
		<link>http://omarenm.wordpress.com/2011/02/06/cargar-un-resultset-en-un-jtable/</link>
		<comments>http://omarenm.wordpress.com/2011/02/06/cargar-un-resultset-en-un-jtable/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 20:42:35 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Tutoriales Java]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JTable]]></category>
		<category><![CDATA[ResultSet]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=104</guid>
		<description><![CDATA[Hace unos días se me presentó la necesidad de mostrar los resultados de una consulta en un JTable, en todas partes la solución propuesta consiste en implementar la interfaz TableModel y cargar el ResultSet en una Array de dos dimensiones. El problema con este método es determinar el número de filas del ResultSet para lo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=104&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hace unos días se me presentó la necesidad de mostrar los resultados de una consulta en un JTable, en todas partes la solución propuesta consiste en implementar la interfaz TableModel y cargar el ResultSet en una Array de dos dimensiones. El problema con este método es determinar el número de filas del ResultSet para lo cual encontré este interesante método:</p>
<p><pre class="brush: java;">
try
{
	rs.last(); //Muevo el cursor al último registro del ResultSet
	int noFilas = rs.getRow(); //Obtengo el número de la fila actual
}
catch(SQLException ex)
{
	System.out.println(ex.toString());
}
</pre></p>
<p>Y eso fue todo lo que necesité. Sin embargo al intentar hacer mi programa más portable, decidí no usar MySQL sino una base de datos embebida, escogí SQLite, inmediatamente el código dejó de funcionar y obtenía la siguiente excepción:</p>
<p><pre class="brush: java;">
java.sql.SQLException: ResultSet is TYPE_FORWARD_ONLY
</pre></p>
<p>Lo que es claro, no todas los controladores de bases de datos soportan las instrucciones last() y beforeFirst() y tenemos que conformarnos con next(). La solución entonces no era universal y tenía que crear una, mi propuesta es la siguiente clase que utiliza ArrayList.</p>
<p><pre class="brush: java;">import java.sql.*;
import java.sql.*;
import java.util.ArrayList;
import javax.swing.event.*;

public class ResultSetTable implements javax.swing.table.TableModel
{

    private ArrayList&lt;ArrayList&lt;Object&gt;&gt; Datos; //Datos
    private String[] etiquetas; //Nombres de columna
    protected EventListenerList listenerList = new EventListenerList();

    public ResultSetTable(java.sql.ResultSet rs)
    {
        if (rs != null)
        {
            Datos = new ArrayList();
            try
            {
                ResultSetMetaData metaDatos = rs.getMetaData();
                int noColumnas = metaDatos.getColumnCount();
                etiquetas = new String[noColumnas];
                for (int i = 0; i &lt; noColumnas; i++)
                {
                    etiquetas[i] = metaDatos.getColumnLabel(i + 1);
                }
                ArrayList&lt;Object&gt; temp;
                while (rs.next())
                {
                    temp = new ArrayList();
                    for (String etiqueta : etiquetas)
                    {
                        temp.add(rs.getObject(etiqueta));
                    }
                    Datos.add(temp);
                }
            }
            catch (SQLException ex)
            {
                Datos = null;
                etiquetas = null;
                System.out.println(&quot;Error: &quot; + ex.getErrorCode());
                System.out.println(&quot;Mensaje: &quot; + ex.getMessage());
            }
        }
    }

    public int getRowCount()
    {
        return Datos == null ? 0 : Datos.size();
    }

    public int getColumnCount()
    {
        return Datos == null ? 0 : Datos.get(0).size();
    }

    public Object getValueAt(int rowIndex, int columnIndex)
    {
        return Datos == null ? null : Datos.get(rowIndex).get(columnIndex);
    }

    public String getColumnName(int columnIndex)
    {
        return etiquetas == null ? null : etiquetas[columnIndex];
    }

    public Class&lt;?&gt; getColumnClass(int columnIndex)
    {
        return Object.class;
    }

    public boolean isCellEditable(int rowIndex, int columnIndex)
    {
        return false;
    }

    public void setValueAt(Object aValue, int rowIndex, int columnIndex)
    {
        Datos.get(rowIndex).set(columnIndex, aValue);
    }

    public void addTableModelListener(TableModelListener l) {
		listenerList.add(TableModelListener.class, l);
    }

    public void removeTableModelListener(TableModelListener l) {
		listenerList.remove(TableModelListener.class, l);
    }
}</pre></p>
<p>Ahora basta con poner la clase en el mismo paquete que nuestro programa y</p>
<p><pre class="brush: java;">
JTable tabla = new JTable();
tabla.setModel(new ResultSetTable(rs)); //rs es un ResultSet previamente cargado
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=104&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2011/02/06/cargar-un-resultset-en-un-jtable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Arquitectura de Computadores, David Patterson</title>
		<link>http://omarenm.wordpress.com/2008/09/17/descargar-libro-arquitectura-de-computadores-un-enfoque-cuantitativo-david-patterson/</link>
		<comments>http://omarenm.wordpress.com/2008/09/17/descargar-libro-arquitectura-de-computadores-un-enfoque-cuantitativo-david-patterson/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 15:32:40 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Ingeniería Electrónica]]></category>
		<category><![CDATA[Arquitectura de Computadores]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=47</guid>
		<description><![CDATA[Esta obra incorpora un nuevo enfoque cuantitativo haciendo énfasis en la relación coste/rendimiento, presentando muchos datos y ejemplos de máquinas reales, y haciendo estudios comparados de los distintos diseños de arquitecturas.Todos los capítulos tienen secciones originales, y una vez presentados los conceptos, aparece una sección denominada &#8220;&#8221;Juntando todo&#8221;" donde se relacionan las ideas expuestas, para [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=47&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-47"></span><img class="alignright" title="Portada Arquitectura de Computadoras" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/arquite.png" alt="" width="150" height="234" />Esta obra incorpora un nuevo enfoque cuantitativo haciendo énfasis en la relación coste/rendimiento, presentando muchos datos y ejemplos de máquinas reales, y haciendo estudios comparados de los distintos diseños de arquitecturas.Todos los capítulos tienen secciones originales, y una vez presentados los conceptos, aparece una sección denominada &#8220;&#8221;Juntando todo&#8221;" donde se relacionan las ideas expuestas, para mostrar cómo se utilizan en una máquina real. A continuación aparece otra sección titulada &#8220;&#8221;Falacias y pifias&#8221;", que permite al lector aprender de los errores que han cometido otros en el diseño de una arquitectura. Después hay otra, llamada &#8220;&#8221;Perspectiva histórica y referencias&#8221;" que intenta dar crédito a las ideas del capítulo. Cada capítulo finaliza con una buena colección de ejercicios de distinto grado de dificultad.</p>
<p>Contenido<br />
1.- Fundamentos de diseño de computadores<br />
2.- Coste y rendimiento<br />
3.- Diseño de repertorios de instrucciones: alternativas y principios<br />
4.- Ejemplos y medidas de utilizacion de los repertorios de instrucciones<br />
5.- Técnicas basicas de implementacion de procesadores<br />
6.- Segmentacion<br />
7.- Procesadores vectoriales<br />
8.- Diseño de la jerarquia de memoria<br />
9.- Entradas/salidas<br />
10.- Tendencias Futuras<br />
Apéndice A.- Aritmética de comptadores (por David Goldberg)<br />
Apendice B.- Tablas completas de repertorios de instrucciones<br />
Apendice C.- Medidas detalladas del repertorio de instrucciones<br />
Apendice D.- Medidas de tiempo frente a frecuencia<br />
Apendice E.- Vision general de las arquitecturas RISC</p>
<p><a title="Descargar Arquitectura de computadores" href="http://www.mediafire.com/?2namjpjm8pg" target="_blank">Descargar por MediaFire</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=47&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/09/17/descargar-libro-arquitectura-de-computadores-un-enfoque-cuantitativo-david-patterson/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/arquite.png" medium="image">
			<media:title type="html">Portada Arquitectura de Computadoras</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Álgebra, Aurelio Baldor</title>
		<link>http://omarenm.wordpress.com/2008/09/16/descargar-libro-algebra-de-baldor/</link>
		<comments>http://omarenm.wordpress.com/2008/09/16/descargar-libro-algebra-de-baldor/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 02:30:27 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Libros de Ingeniería]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[Matemáticas]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=41</guid>
		<description><![CDATA[El &#8220;Álgebra&#8221; del docente cubano Aurelio Baldor (1906-1978) es un texto de álgebra, destinado a la educación secundaria. Este texto, mayoritariamente conocido como Algebra de Baldor, se ha difundido en toda América Latina, el cual ha sido utilizado por tres generaciones de estudiantes, desde su lanzamiento en la década de 1940. Algunos de los que [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=41&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-41"></span><img class="alignright" title="Portada Algebra de Baldor" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/baldor.jpg" alt="" width="150" height="226" />El &#8220;Álgebra&#8221; del docente cubano Aurelio Baldor (1906-1978) es un texto de álgebra, destinado a la educación secundaria. Este texto, mayoritariamente conocido como Algebra de Baldor, se ha difundido en toda América Latina, el cual ha sido utilizado por tres generaciones de estudiantes, desde su lanzamiento en la década de 1940.</p>
<p>Algunos de los que han estudiado con el libro, pensaban que su autor era árabe, puesto que la portada del libro venía ilustrada con el rostro de Al-Juarismi, un matemático árabe de la Edad Media. En 2008 la editorial mexicana encargada de su edición cambió la portada por la de un profesor sonriente, aunque en una esquina se observa la portada anterior.</p>
<p>Muchos consideran que el texto de Baldor es el libro más consultado en escuelas y colegios de Latinoamérica, incluso más que El Quijote de Miguel de Cervantes.</p>
<p><a href="http://www.mediafire.com/?vnhlj9uhzgz">Descargar por MediaFire</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=41&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/09/16/descargar-libro-algebra-de-baldor/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/baldor.jpg" medium="image">
			<media:title type="html">Portada Algebra de Baldor</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Circuitos Microelectrónicos, Sedra y K.C. Smith</title>
		<link>http://omarenm.wordpress.com/2008/08/25/descargar-libro-circuitos-microelectronicos-sedra-y-kc-smith/</link>
		<comments>http://omarenm.wordpress.com/2008/08/25/descargar-libro-circuitos-microelectronicos-sedra-y-kc-smith/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 03:46:36 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería Electrónica]]></category>
		<category><![CDATA[Circuitos]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[Microelectrónica]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=34</guid>
		<description><![CDATA[Este libro es líder en el mercado. Esta edición conserva su estándar de excelencia e innovación con una sólida base pedagógica tan característica de esta obra. CARACTERISTICAS UNICAS DEL LIBRO * MOSFETs y BJTs: Material reescrito en su totalidad en donde se presenta primero el MOSFET, aunque los dos dispositivos pueden estudiarse en el orden [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=34&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-34"></span><img class="alignright" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/Microelectronica.jpg" alt="" width="130" height="156" />Este libro es líder en el mercado. Esta edición conserva su estándar de excelencia e innovación con una sólida base pedagógica tan característica de esta obra.</p>
<p><strong>CARACTERISTICAS UNICAS DEL LIBRO</strong><br />
* MOSFETs y BJTs: Material reescrito en su totalidad en donde se presenta primero el MOSFET, aunque los dos dispositivos pueden estudiarse en el orden que más convenga a los intereses del curso.<br />
* IC MOS y amplificadores bipolares: Los capítulos relativos a los amplificadores de circuito integrado de una sola etapa y los amplificadores diferenciales y multietapa, han sido reescritos en su totalidad para presentar los amplificadores IC MOS y los bipolares de una manera accesible y sistemática<br />
* Respuesta en frecuencia del amplificador: Se presenta ahora como un método &#8220;justo-a-tiempo&#8221; e incluye un breve estudio de las respuestas en frecuencia de los amplificadores fuente común y emisor común.</p>
<p><a title="Descargar Libro Sedra" href="http://www.mediafire.com/?2hlutl0lt9v" target="_self">Descargar por Mediafire</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=34&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/08/25/descargar-libro-circuitos-microelectronicos-sedra-y-kc-smith/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/Microelectronica.jpg" medium="image" />
	</item>
		<item>
		<title>Lector de PDF, Foxit Reader</title>
		<link>http://omarenm.wordpress.com/2008/08/24/lector-de-pdf-foxit-reader/</link>
		<comments>http://omarenm.wordpress.com/2008/08/24/lector-de-pdf-foxit-reader/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 03:02:25 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=29</guid>
		<description><![CDATA[Todos los libros aquí subidos, evidentemente están en formato PDF, les recomiendo el uso de Foxit reader para su lectura debido a que tiene un par de ventaja considerables respecto al software original de Adobe: Ocupa muchísimo menos espacio en disco duro. Es, en extremo, más rápido para iniciar que el Adobe Reader. Consume muchísimo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=29&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-29"></span><img class="alignright" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/foxitreader.jpg" alt="" width="153" height="173" />Todos los libros aquí subidos, evidentemente están en formato PDF, les recomiendo el uso de Foxit reader para su lectura debido a que tiene un par de ventaja considerables respecto al software original de Adobe:</p>
<ol>
<li>Ocupa muchísimo menos espacio en disco duro.</li>
<li>Es, en extremo, más rápido para iniciar que el Adobe Reader.</li>
<li>Consume muchísimo menos recursos del computador para operar</li>
<li>Se actualiza fácil, rápida y constantemente para ampliar la compatibilidad y tiene montones de herramientas útiles al alcance de un click.</li>
</ol>
<p>Seguramente muchos de ustedes ya lo conocen, pero para quién no había escuchado hablar de él, insisto en que no debe dejar de probarlo.</p>
<p><a title="Foxit Reader" href="http://www.foxitsoftware.com/pdf/rd_intro.php" target="_self">http://www.foxitsoftware.com/pdf/rd_intro.php</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=29&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/08/24/lector-de-pdf-foxit-reader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/foxitreader.jpg" medium="image" />
	</item>
		<item>
		<title>Descargar Libro Aprendiendo UML en 24 Horas, Joseph Schmuller</title>
		<link>http://omarenm.wordpress.com/2008/08/06/descargar-libro-aprendiendo-uml-en-24-horas-joseph-schmuller/</link>
		<comments>http://omarenm.wordpress.com/2008/08/06/descargar-libro-aprendiendo-uml-en-24-horas-joseph-schmuller/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 04:25:55 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Ingeniería del Software]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=27</guid>
		<description><![CDATA[Excelente libro de la famosa editorial Prentice Hall, muy bueno como guía de referencia y aprendizade del UML 2.0. Contenido: Introducción al UML Orientación a objetos Uso de la orientación a objetos Uso de Relaciones Agragación, compocisión, interfaces y realización Introducción a los casos de uso Diagramas de casos de Uso Diagramas de estado Diagramas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=27&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-27"></span><img class="alignright" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/uml.png" alt="" width="150" height="193" />Excelente libro de la famosa editorial Prentice Hall, muy bueno como guía de referencia y aprendizade del UML 2.0.</p>
<p>Contenido:</p>
<ul>
<li>Introducción al UML</li>
<li>Orientación a objetos</li>
<li>Uso de la orientación a objetos</li>
<li>Uso de Relaciones</li>
<li>Agragación, compocisión, interfaces y realización</li>
<li>Introducción a los casos de uso</li>
<li>Diagramas de casos de Uso</li>
<li>Diagramas de estado</li>
<li>Diagramas de secuencias</li>
<li>Diagramas de colaboraciones</li>
<li>Diagramas de actividades</li>
<li>Diagramas de componentes</li>
<li>Diagramas de distribución</li>
<li>Nociones de los fundamentos del UMl</li>
<li>Adaptación del UML en un proceso de desarrollo</li>
<li>Y MUCHO MAS!!!</li>
</ul>
<p><a title="Descargar UML" href="http://www.hotshare.net/file/72946-9258087fc4.html" target="_blank">Descargar por HotShare</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=27&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/08/06/descargar-libro-aprendiendo-uml-en-24-horas-joseph-schmuller/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/uml.png" medium="image" />
	</item>
		<item>
		<title>Descargar Libro Sistemas Operativos, William Stalling</title>
		<link>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-william-stalling/</link>
		<comments>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-william-stalling/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 21:38:39 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=26</guid>
		<description><![CDATA[Este libro trata de forma detallada los conceptos, la estructura y los mecanismos de los sistemas operativos. El cometido de este libro es proporcionar una discusión completa de los fundamentos del diseño de los sistemas operativos, haciendo mención a las tendencias actuales en el desarrollo de éstos. El objetivo es proporcionar al lector una comprensión [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=26&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-26"></span><img class="alignright" style="float:right;padding-left:5px;" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/lild2.jpg" alt="Portada Sistemas Operativos William Stalling" width="150" height="198" />Este libro trata de forma detallada los conceptos, la estructura y los mecanismos de los sistemas operativos. El cometido de este libro es proporcionar una discusión completa de los fundamentos del diseño de los sistemas operativos, haciendo mención a las tendencias actuales en el desarrollo de <span>é</span>stos.</p>
<p>El objetivo es proporcionar al lector una comprensión sólida de los mecanismos clave de los sistemas operativos modernos, las concesiones y las decisiones que acarrean el diseño de un sistema operativo y el contexto en que éste opera (el hardware, otros programas del sistema, los programas de aplicación y los usuarios interjectivos). Este libro, además de ofrecer cobertura a los fundamentos de los sistemas operativos, examina los desarrollos recientes más importantes que se han alcanzado en el diseño de los sistemas operativos</p>
<p><a title="Descargar Sistemas Operativos William Stalling" href="http://www.hotshare.net/file/54181-5646588f59.html" target="_blank">Descargar por HotShare</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=26&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-william-stalling/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/lild2.jpg" medium="image">
			<media:title type="html">Portada Sistemas Operativos William Stalling</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Sistemas Operativos, Jesús Carretero</title>
		<link>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-jesus-carretero/</link>
		<comments>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-jesus-carretero/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 21:37:52 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=25</guid>
		<description><![CDATA[La mayoría de los libros de sistemas operativos incluye gran cantidad de teoría general y aspectos de diseño, pero no muestra claramente cómo se usan. Este libro está pensado como un texto general de sistemas operativos, pudiendo cubrir tanto la parte introductoria como los aspectos de diseño de los mismos. El libro incluye cuadros de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=25&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-25"></span><img class="alignright" style="float:right;padding-left:5px;" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/8448130014.jpg" alt="Portada Sistemas Operativos Carretero" width="144" height="182" />La mayoría de los libros de sistemas operativos incluye gran cantidad de teoría general y aspectos de diseño, pero no muestra claramente cómo se usan. Este libro está pensado como un texto general de<br />
sistemas operativos, pudiendo cubrir tanto la parte introductoria como los aspectos de diseño de los mismos.</p>
<p>El libro incluye cuadros de texto resaltados donde se muestran consejos de programación, advertencias de uso, ideas sobre presentaciones, etc. Estos cuadros reflejan la experiencia de los autores en el uso y en la docencia de sistemas operativos. La utilización de una interfaz de programación de sistemas operativos para POSIX y Windows 2003, con ejemplos de uso de las mismas permite que el lector, no sólo conozca los principios teóricos, sino cómo se aplican en sistemas operativos reales. Cada capítulo incluye problemas y ejercicios con diferentes grados de dificultad para adecuarse a los distintos tipos de cursos en que se puede usar este libro. Estos ejercicios hacen énfasis en los aspectos teóricos más importantes.</p>
<p><a title="Descarga Sistemas Operativos Carretero" href="http://www.hotshare.net/file/54174-1678490a3c.html" target="_blank">Descargar por HotShare</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=25&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-jesus-carretero/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/8448130014.jpg" medium="image">
			<media:title type="html">Portada Sistemas Operativos Carretero</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Sistemas Operativos, Avi Silberschatz</title>
		<link>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-avi-silberschatz/</link>
		<comments>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-avi-silberschatz/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 21:37:02 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=24</guid>
		<description><![CDATA[Este gran clásico, ahora actualizado, proporciona una visión clara y didáctica de los sistemas operativos y sus algoritmos. Se incluyen aplicaciones de los conceptos a sistemas como UNIX, Windows NT, LINUX y Solaris 2, entre otros. Además, se han incorporado tres capítulos nuevos sobre sistemas I/O, estructuras de almacenamiento secundarias y estructuras de almacenamiento terciarias. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=24&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-24"></span><img class="alignright" style="float:right;padding-left:5px;" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/SISTEMAS-OPERATIVOS--5ED-i0n93034.jpg" alt="Portada Sistemas Operativos" width="100" height="138" />Este gran clásico, ahora actualizado, proporciona una visión clara y didáctica de los sistemas operativos y sus algoritmos. Se incluyen aplicaciones de los conceptos a sistemas como UNIX, Windows NT, LINUX y Solaris 2, entre otros.</p>
<p>Además, se han incorporado tres capítulos nuevos sobre sistemas I/O, estructuras de almacenamiento secundarias y estructuras de almacenamiento terciarias. También se cubren temas importantes como los sistemas operativos distribuidos, la estructura de redes, la protección y seguridad en los sistemas operativos y administración de la memoria y memoria virtual. Presenta además seis casos desarrollados en los sistemas operativos más populares.</p>
<p><a title="Descarga Sistemas Operativos Silberschatz" href="http://www.hotshare.net/file/54172-2879887f41.html" target="_blank">Descargar por HotShare</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=24&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-avi-silberschatz/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/SISTEMAS-OPERATIVOS--5ED-i0n93034.jpg" medium="image">
			<media:title type="html">Portada Sistemas Operativos</media:title>
		</media:content>
	</item>
		<item>
		<title>Descargar Libro Sistemas Operativos, Andrew S. Tanenbaum</title>
		<link>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-andrew-s-tanenbaum/</link>
		<comments>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-andrew-s-tanenbaum/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 21:35:52 +0000</pubDate>
		<dc:creator>omarenm</dc:creator>
				<category><![CDATA[Ingeniería de Sistemas]]></category>
		<category><![CDATA[Libros]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://omarenm.wordpress.com/?p=23</guid>
		<description><![CDATA[El libro guía por excelencia de cualquier curso de Sistemas Operativos. Comprende todos conceptos para un curso completo de Sistemas Operativos Contenido: Introducción Procesos Entrada/Salida Administración de memoria Sistemas de archivos Lista de lecturas y bibliografía Apéndices El código fuente de MINIX Indice de archivos Índice de símbolos Descargar por MEGAUPLOAD Descargar por HotShare<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=23&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-23"></span><img class="alignright" style="float:right;padding-left:5px;" src="http://i271.photobucket.com/albums/jj121/omarenm/blog/970-17-0165-8_M.jpg" alt="Portada Sistemas Operativos Tanenbaum" width="130" height="180" />El libro gu<span>ía por excelencia de cualquier curso de Sistemas Operativos. Comprende todos conceptos para un curso completo de Sistemas Operativos</span></p>
<p><strong>Contenido:</strong></p>
<ol>
<li>Introducción</li>
<li>Procesos</li>
<li>Entrada/Salida</li>
<li>Administraci<span>ón de memoria</span></li>
<li>Sistemas de archivos</li>
<li>Lista de lecturas y bibliograf<span>ía</span></li>
<li>Ap<span>éndices</span>
<p style="padding-left:10px;">El código fuente de MINIX<br />
Indice de archivos<br />
Índice de símbolos</li>
</ol>
<p><a title="Descarga Sistemas Operativos Tanenbaum" href="http://www.megaupload.com/?d=KL9OX9FX" target="_blank">Descargar por MEGAUPLOAD</a><br />
<a title="Descarga Sistemas Operativos Tanenbaum" href="http://www.hotshare.net/file/53703-2437985e62.html" target="_blank">Descargar por HotShare</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/omarenm.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/omarenm.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/omarenm.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/omarenm.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/omarenm.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarenm.wordpress.com&amp;blog=2180539&amp;post=23&amp;subd=omarenm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarenm.wordpress.com/2008/06/09/descargar-libro-sistemas-operativos-andrew-s-tanenbaum/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">omarenm</media:title>
		</media:content>

		<media:content url="http://i271.photobucket.com/albums/jj121/omarenm/blog/970-17-0165-8_M.jpg" medium="image">
			<media:title type="html">Portada Sistemas Operativos Tanenbaum</media:title>
		</media:content>
	</item>
	</channel>
</rss>
