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

<channel>
	<title>Empresario</title>
	<atom:link href="http://www.empresario.com.mx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.empresario.com.mx</link>
	<description>Presencia Empresarial En La Internet</description>
	<pubDate>Wed, 02 Jul 2008 17:17:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>include y require</title>
		<link>http://www.empresario.com.mx/2008/include-y-require/</link>
		<comments>http://www.empresario.com.mx/2008/include-y-require/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 17:09:49 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/include-y-require/</guid>
		<description><![CDATA[Las instrucciones include y require son de las mas conocidas en php. Con ellas puedes ahorrarte trabajo al reutilizar código (script, o simple html) cuantas veces quieras, siendo uno de sus usos mas sencillos y típicos el de incluir cabeceras, menú generico y pies de páginas en un sistema de plantillas.
La utilización del include es [...]]]></description>
			<content:encoded><![CDATA[<p>Las instrucciones <strong>include </strong>y <strong>require </strong>son de las mas conocidas en <strong>php</strong>. Con ellas puedes ahorrarte trabajo al reutilizar código (script, o simple html) cuantas veces quieras, siendo uno de sus usos mas sencillos y típicos el de incluir cabeceras, menú generico y pies de páginas en un sistema de plantillas.</p>
<p>La utilización del include es muy simple:</p>
<div class="igBar"><span id="lphp-7"><a href="#" onclick="javascript:showPlainTxt('php-7'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-7">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#616100;">include</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">&#8220;tuarchivo.htm&#8221;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<div class="igBar"><span id="lphp-8"><a href="#" onclick="javascript:showPlainTxt('php-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-8">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#616100;">require</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">&#8220;tuarchivo.htm&#8221;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><strong>include</strong></p>
<p>La sentencia <strong>include()</strong> inserta y evalúa el archivo especificado. Puedes incluir aquí no solamente un fichero en tu servidor, sino una página web remota (indicando la url). Su uso típico sería <strong><?php include ("header.php");?></strong> , que llama al archivo <strong>header.php</strong> y lo inserta en el propio punto del script donde hacemos la llamada.</p>
<p>Tanto si insertamos un archivo con <strong>include();</strong> o <strong>require();</strong>, debes tener en cuenta que PHP pasa a modo html hasta el final del mismo, por lo que si el archivo a insertar contiene código php que deba ser evaluado (ejecutado), debe ser encerrado dentro de etiquetas de comienzo y fin de PHP.</p>
<p>Ejemplo:</p>
<p> Archivo 1 : <strong>header.htm</strong>:<br />
<span id="more-647"></span></p>
<div class="igBar"><span id="lphp-9"><a href="#" onclick="javascript:showPlainTxt('php-9'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-9">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;html&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;head&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;title&gt; Muestra de includes &lt;/title&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/head&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;body&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Archivo 2: <strong>footer.htm</strong>:</p>
<div class="igBar"><span id="lphp-10"><a href="#" onclick="javascript:showPlainTxt('php-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-10">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/body&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/html&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Archivo 3: <strong>index.php</strong> :</p>
<div class="igBar"><span id="lphp-11"><a href="#" onclick="javascript:showPlainTxt('php-11'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-11">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#616100;">include</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">&#8220;header.htm&#8221;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Hola, Mundo !</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#616100;">include</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">&#8220;footer.htm&#8221;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y el resultado es:</p>
<div class="igBar"><span id="lhtml-12"><a href="#" onclick="javascript:showPlainTxt('html-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-12">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://www.empresario.com.mx/go.php?http://december.com/html/4/element/html.html" title="( Clic para leer)"><span style="color: #000000; font-weight: bold;">&lt;html&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://www.empresario.com.mx/go.php?http://december.com/html/4/element/head.html" title="( Clic para leer)"><span style="color: #000000; font-weight: bold;">&lt;head&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://www.empresario.com.mx/go.php?http://december.com/html/4/element/title.html" title="( Clic para leer)"><span style="color: #000000; font-weight: bold;">&lt;title&gt;</span></a></span> Muestra de includes <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://www.empresario.com.mx/go.php?http://december.com/html/4/element/body.html" title="( Clic para leer)"><span style="color: #000000; font-weight: bold;">&lt;body&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://www.empresario.com.mx/go.php?http://december.com/html/4/element/p.html" title="( Clic para leer)"><span style="color: #000000; font-weight: bold;">&lt;p&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Hola, Mundo!</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Debes tener en cuenta que los archivos que se van insertando se ejecutan en el entorno del archivo primero que contiene la llamada, lo que es importante al establecer los <strong>paths</strong>. Por ejemplo, si tienes dos archivos, <strong>footer.php</strong> y <strong>notes.php</strong> en un directorio llamado anexos y llamas al primero desde fuera de ese directorio, lo harias así: <strong>include (&#8221;anexos/footer.php&#8221;);</strong> y si <strong>footer.php</strong> contiene una llamada a otro archivo notes.php, debes escribir hacer la llamada <strong>también como include (&#8221;anexos/notes.php&#8221;);</strong> puesto que aunque <strong>footer </strong>y <strong>notes </strong>están en el <strong>mismo directorio, la llamada a ambos es desde fuera</strong>, desde la misma posición que el script que hace la llamada.</p>
<p>Y lo mismo ocurre con las variables. El codigo insertado hereda el mismo alcance de variables que el código donde sea insertado.</p>
<p><strong>require</strong></p>
<p>La diferencia documentada entre include y require consistiría en que la llamada con include podría hacerse condicionalmente. A diferencia de include(), require() siempre leerá el archivo referenciado, incluso si la línea en que está no se ejecuta nunca. Si se quiere incluir condicionalmente un archivo, se usa include(). La sentencia condicional no afecta a require(), aunque si la línea en la cual aparece el require() no se ejecuta, tampoco se ejecutará el código del archivo referido.</p>
<p>Sin embargo, a partir de la <strong>version PHP 4.0.2</strong> y posteriores esto ya no es así y ambas construcciones se comportan exactamente de la misma manera, con la única diferencia de que si el archivo llamado no existe,<strong> include solo da una advertencia</strong>, y sigue ejecutando el código, mientras que <strong>require produce un error</strong> e interrumpe la ejecución.</p>
<p><strong>include_once</strong> y <strong>require_once</strong></p>
<p>Estas construcciones presentan como única diferencia que la inclusión del archivo se ejecuta una sola vez (aunque a lo largo de la ejecución del script existan otras llamadas al mismo), lo que es útil para evitar conflictos con redeficiones de funciones o nombres de variables.</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/leer-archivos-excel-desde-php/" rel="bookmark" title="Permanent Link: Leer Archivos Excel Desde PHP (Le&iacute;do 1 Vez)">Leer Archivos Excel Desde PHP</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/encuesta-con-php-y-mysql/" rel="bookmark" title="Permanent Link: Encuesta con PHP y MySQL (Le&iacute;do 1 Vez)">Encuesta con PHP y MySQL</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/como-hacer-una-nube-de-etiquetas-con-php/" rel="bookmark" title="Permanent Link: Como hacer una Nube de Etiquetas con Php ( Clic para leer)">Como hacer una Nube de Etiquetas con Php</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=647&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_647" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/include-y-require/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hoy es un hermoso día y NO puedo verlo&#8230;</title>
		<link>http://www.empresario.com.mx/2008/hoy-es-un-hermoso-dia-y-no-puedo-verlo/</link>
		<comments>http://www.empresario.com.mx/2008/hoy-es-un-hermoso-dia-y-no-puedo-verlo/#comments</comments>
		<pubDate>Wed, 28 May 2008 15:30:40 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Noticias]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/hoy-es-un-hermoso-dia-y-no-puedo-verlo/</guid>
		<description><![CDATA[ Clic para bajar este video a tu pc

&#160;Tambi&#233;n te pueden interesar estos art&#237;culosBostezosProblemas con el Historial del messengerKalimba - Solo Dejate AmarShare This
]]></description>
			<content:encoded><![CDATA[<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/L9eUBVpL0ZU&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/L9eUBVpL0ZU&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=L9eUBVpL0ZU"><b> Clic para bajar este video a tu pc</b></a></p>
<p>El cortometraje <strong>&#8220;Historia de un letrero&#8221;</strong>, del mexicano <strong>Alonso Alvarez Barreda</strong>, ganó el premio Special Cannes 2008 otorgado en el marco del Short Film Corner, en el que compitieron casi dos mil cortometrajistas de todo el mundo.</p>
<p>El trabajo fílmico, de seis minutos de duración y realizado por el joven de Tampico, Tamaulipas (México) fue galardonado por el National Film Board de Canadá, informaron fuentes del festival mediante un breve comunicado.</p>
<p><strong>Actualización 2008-05-29</strong></p>
<p>Una limosna por favor<br />
de Francisco Cuenca Alcaraz</p>
<p>Sinopsis: Una persona invidente esta en la calle pidiendo limosna, alguien pasará por su lado y con solo un gesto conseguirá que su suerte cambie.</p>
<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/x2usxktcoNA&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/x2usxktcoNA&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=x2usxktcoNA"><b> Clic para bajar este video a tu pc</b></a></p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/bostezos/" rel="bookmark" title="Permanent Link: Bostezos ( Clic para leer)">Bostezos</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/problemas-con-el-historial-del-messenger/" rel="bookmark" title="Permanent Link: Problemas con el Historial del messenger ( Clic para leer)">Problemas con el Historial del messenger</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/kalimba-solo-dejate-amar/" rel="bookmark" title="Permanent Link: Kalimba - Solo Dejate Amar ( Clic para leer)">Kalimba - Solo Dejate Amar</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=646&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_646" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/hoy-es-un-hermoso-dia-y-no-puedo-verlo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Corrige la perspectiva de tus fotos - La Catedral de Huajuapan de León</title>
		<link>http://www.empresario.com.mx/2008/corrige-la-perspectiva-de-tus-fotos-la-catedral-de-huajuapan-de-leon/</link>
		<comments>http://www.empresario.com.mx/2008/corrige-la-perspectiva-de-tus-fotos-la-catedral-de-huajuapan-de-leon/#comments</comments>
		<pubDate>Fri, 23 May 2008 14:52:01 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Fotografía]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/corrige-la-perspectiva-de-tus-fotos-la-catedral-de-huajuapan-de-leon/</guid>
		<description><![CDATA[

Catedral de huajuapan de leon, oax.


Cuando sacamos fotografías con gran angular, la imagen se distorsiona. ShiftN es un programa gratuito, sencillo y de gran utilidad a la hora de corregir la perspectiva de nuestras fotos.
Estos son los resultados de un experimento con la foto utilizada en una entrada anterior.
Antes de Corregir:

Después de Corregir con ShiftN [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;">
<div class="imageframe imgaligncenter" style="width:456px;"><img src="http://www.empresario.com.mx/wp-content/uploads/2008/05/shiftn.JPG" width="456" height="264" alt="shiftn.JPG" />
<div class="imagecaption">Catedral de huajuapan de leon, oax.</div>
</div>
</div>
<p>Cuando sacamos fotografías con gran angular, la imagen se distorsiona. ShiftN es un programa gratuito, sencillo y de gran utilidad a la hora de corregir la perspectiva de<span id="more-640"></span> nuestras fotos.</p>
<p>Estos son los resultados de un experimento con la foto utilizada en una <a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/la-catedral-de-huajuapan-de-leon" title="( Clic para leer)">entrada anterior</a>.</p>
<p>Antes de Corregir:</p>
<p style="text-align: center;"><img src="http://www.empresario.com.mx/wp-content/uploads/2008/05/s3020064.JPG" width="450" height="337" alt="s3020064.JPG" class="imageframe imgaligncenter" /></p>
<p>Después de Corregir con ShiftN y eliminé un poco de ruido:</p>
<p style="text-align: center;"><img src="http://www.empresario.com.mx/wp-content/uploads/2008/05/s3020064_shiftn.jpg" width="450" height="357" alt="s3020064_shiftn.jpg" class="imageframe imgaligncenter" /></p>
<p>El programa es gratuito y puedes descargarlo desde el sitio oficial <a href="http://www.empresario.com.mx/go.php?http://www.shiftn.de/" target="_blank" title="( Clic para leer)">http://www.ShiftN.de</a></p>
<p>
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-250x250, creado 29/01/08
google_ad_slot = "5129213113";
google_ad_width = 250;
google_ad_height = 250;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/la-catedral-de-huajuapan-de-leon/" rel="bookmark" title="Permanent Link: La Catedral de Huajuapan de León ( Clic para leer)">La Catedral de Huajuapan de León</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/expo-feria-huajuapan-2007-2/" rel="bookmark" title="Permanent Link: Expo Feria Huajuapan 2007 ( Clic para leer)">Expo Feria Huajuapan 2007</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/expo-feria-huajuapan-2007/" rel="bookmark" title="Permanent Link: Expo-Feria Huajuapan 2007 ( Clic para leer)">Expo-Feria Huajuapan 2007</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=640&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_640" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/corrige-la-perspectiva-de-tus-fotos-la-catedral-de-huajuapan-de-leon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Musica y Mac</title>
		<link>http://www.empresario.com.mx/2008/musica-y-mac/</link>
		<comments>http://www.empresario.com.mx/2008/musica-y-mac/#comments</comments>
		<pubDate>Mon, 12 May 2008 19:28:03 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/musica-y-mac/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/6kxDxLAjkO8&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/6kxDxLAjkO8&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=6kxDxLAjkO8"><b> Clic para bajar este video a tu pc</b></a><br />

<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/la-amprofon-vs-los-cyber-cafes/" rel="bookmark" title="Permanent Link: La Amprofon vs Los Cyber Cafes ( Clic para leer)">La Amprofon vs Los Cyber Cafes</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/sin-city-el-montaje-extrujado-el-cliente-siempre-tiene-razon-version-20/" rel="bookmark" title="Permanent Link: Sin City -el montaje extrujado- El cliente siempre tiene razón (versión 2.0) ( Clic para leer)">Sin City -el montaje extrujado- El cliente siempre tiene razón (versión 2.0)</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2008/iconspedia-directorio-colaborativo-de-iconos/" rel="bookmark" title="Permanent Link: Iconspedia, directorio colaborativo de iconos ( Clic para leer)">Iconspedia, directorio colaborativo de iconos</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=637&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_637" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/musica-y-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Efecto tridimensional en papel</title>
		<link>http://www.empresario.com.mx/2008/efecto-tridimensional-en-papel/</link>
		<comments>http://www.empresario.com.mx/2008/efecto-tridimensional-en-papel/#comments</comments>
		<pubDate>Thu, 08 May 2008 04:44:51 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/efecto-tridimensional-en-papel/</guid>
		<description><![CDATA[








Visto en: Web Maniacos
y greeenpro nos mando por email este otro video.
 

&#160;Tambi&#233;n te pueden interesar estos art&#237;culosAlejandra Guzman - Rosas RojasBadges e iconos 2.0 gratisHackers accesan al PC v&#237;a feedsShare This
]]></description>
			<content:encoded><![CDATA[<p><embed src="http://www.metacafe.com/fplayer/1295033/animated_illusion__solved.swf" width="400" height="345" wmode="transparent"  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></p>
<p>
<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<p>Visto en: <a href="http://www.empresario.com.mx/go.php?http://www.webmaniacos.com/efecto-tridimensional-en-papel/" target="_blank" title="( Clic para leer)">Web Maniacos</a></p>
<p>y <strong>greeenpro</strong> nos mando por email este otro video.</p>
<p><embed src="http://www.metacafe.com/fplayer/1288075/amazing_illusion.swf" width="400" height="345" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"> </embed></p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/alejandra-guzman-rosas-rojas/" rel="bookmark" title="Permanent Link: Alejandra Guzman - Rosas Rojas ( Clic para leer)">Alejandra Guzman - Rosas Rojas</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/badges-e-iconos-20-gratis/" rel="bookmark" title="Permanent Link: Badges e iconos 2.0 gratis ( Clic para leer)">Badges e iconos 2.0 gratis</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/hackers-accesan-al-pc-va-feeds/" rel="bookmark" title="Permanent Link: Hackers accesan al PC v&iacute;a feeds ( Clic para leer)">Hackers accesan al PC v&iacute;a feeds</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=636&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_636" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/efecto-tridimensional-en-papel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Frases que dan risa</title>
		<link>http://www.empresario.com.mx/2008/frases-celebres-que-dan-risa/</link>
		<comments>http://www.empresario.com.mx/2008/frases-celebres-que-dan-risa/#comments</comments>
		<pubDate>Mon, 05 May 2008 20:10:13 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/%c2%bfque-avances-llevas-del-sitio/</guid>
		<description><![CDATA[La semana entrante estaremos en posibilidades de enviarte los textos y conceptos para el website, ojalá que antes de ello pudiéramos ver los avances que llevas del sitio
- Oye, ¿seguro que el logo mide 5×5cm?
- Sí, seguro
- Es que lo estoy midiendo en la pantalla y no lo parece

&#160;Tambi&#233;n te pueden interesar estos art&#237;culosLa Amprofon [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>La semana entrante estaremos en posibilidades de enviarte los textos y conceptos para el website, ojalá que antes de ello pudiéramos ver los avances que llevas del sitio</p></blockquote>
<blockquote><p>- Oye, ¿seguro que el logo mide 5×5cm?<br />
- Sí, seguro<br />
- Es que lo estoy midiendo en la pantalla y no lo parece</p></blockquote>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/la-amprofon-vs-los-cyber-cafes/" rel="bookmark" title="Permanent Link: La Amprofon vs Los Cyber Cafes ( Clic para leer)">La Amprofon vs Los Cyber Cafes</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/no-se-debe-hacer-a-un-amigo/" rel="bookmark" title="Permanent Link: NO se debe hacer a un amigo ( Clic para leer)">NO se debe hacer a un amigo</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=635&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_635" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/frases-celebres-que-dan-risa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shimmer</title>
		<link>http://www.empresario.com.mx/2008/shimmer/</link>
		<comments>http://www.empresario.com.mx/2008/shimmer/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 02:48:01 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/shimmer/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/gPQZd5Cl8fc&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/gPQZd5Cl8fc&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=gPQZd5Cl8fc"><b> Clic para bajar este video a tu pc</b></a><br />

<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title">No related posts</span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=634&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_634" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/shimmer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Como Colorear Una Imgen Blanco Y Negro En Photoshop</title>
		<link>http://www.empresario.com.mx/2008/como-colorear-una-imgen-blanco-y-negro-en-photoshop/</link>
		<comments>http://www.empresario.com.mx/2008/como-colorear-una-imgen-blanco-y-negro-en-photoshop/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 16:01:24 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/como-colorear-una-imgen-blanco-y-negro-en-photoshop/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/VBpoP9DQ87s&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/VBpoP9DQ87s&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=VBpoP9DQ87s"><b> Clic para bajar este video a tu pc</b></a><br />

<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/cambiando-los-colores-de-fotografias-con-photoshop/" rel="bookmark" title="Permanent Link: Cambiando los colores de fotografias con Photoshop ( Clic para leer)">Cambiando los colores de fotografias con Photoshop</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/60-tutoriales-avanzados-para-photoshop/" rel="bookmark" title="Permanent Link: 60 Tutoriales Avanzados Para Photoshop ( Clic para leer)">60 Tutoriales Avanzados Para Photoshop</a></span></li><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/2007/rss-navidenos/" rel="bookmark" title="Permanent Link: RSS Navideños ( Clic para leer)">RSS Navideños</a></span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=631&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_631" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/como-colorear-una-imgen-blanco-y-negro-en-photoshop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cómo se fabrican las lentes</title>
		<link>http://www.empresario.com.mx/2008/como-se-fabrican-las-lentes/</link>
		<comments>http://www.empresario.com.mx/2008/como-se-fabrican-las-lentes/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 23:38:50 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Fotografía]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/como-se-fabrican-las-lentes/</guid>
		<description><![CDATA[







Un video muy bueno de cómo se fabrican las lentes de nuestras cámaras fotográficas (en inglés).
]]></description>
			<content:encoded><![CDATA[<p>
<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
<br />
Un video muy bueno de cómo se fabrican las lentes de nuestras cámaras fotográficas (en inglés).</p>
<p><!-- Video's Video Quicktags v3.1.0b1 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ --><object width="350" height="350" type="application/x-shockwave-flash" data="http://youtube.com/v/X7_wL0ZZi6k&#038;color1=FF6300&#038;color2=FF6300"><param name="movie" value="http://youtube.com/v/X7_wL0ZZi6k&#038;color1=FF6300&#038;color2=FF6300" /><param name="wmode" value="transparent" /></object><br /><a target="_blank" href="http://www.kikegavilan.com/descarga-video.php?sitio_video=youtube&#038;id_video=X7_wL0ZZi6k"><b> Clic para bajar este video a tu pc</b></a><br />

<br /><br />
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-468x60, creado 29/01/08
google_ad_slot = "7535275113";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title">No related posts</span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=630&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_630" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/como-se-fabrican-las-lentes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adolescente controlaba 400.000 computadoras zombi</title>
		<link>http://www.empresario.com.mx/2008/adolescente-controlaba-400000-computadoras-zombi/</link>
		<comments>http://www.empresario.com.mx/2008/adolescente-controlaba-400000-computadoras-zombi/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 20:29:48 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
		
		<category><![CDATA[Tecnología]]></category>

		<guid isPermaLink="false">http://www.empresario.com.mx/2008/adolescente-controlaba-400000-computadoras-zombi/</guid>
		<description><![CDATA[






Un hacker, adolescente al momento de cometer sus delitos podría ser sentenciado a varios años de cárcel por sabotaje y vandalismo informático.
El sujeto, que operaba con el seudónimo de &#8220;SoBe&#8221;, ha reconocido haber controlado junto a cómplices una red de 400.000 computadoras intervenidas ilícitamente , con el fin de usarlas para realizar estafas y actos [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: left; " >
<!-- Begin Google Adsense code -->
<script type="text/javascript"><!--
google_ad_client = "pub-1228471384974509";
//empresario-post-250x250, creado 29/01/08
google_ad_slot = "5129213113";
google_ad_width = 250;
google_ad_height = 250;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</div>
<p>Un hacker, adolescente al momento de cometer sus delitos podría ser sentenciado a varios años de cárcel por sabotaje y vandalismo informático.</p>
<p>El sujeto, que operaba con el seudónimo de &#8220;SoBe&#8221;, ha reconocido haber controlado junto a cómplices una red de 400.000 computadoras intervenidas ilícitamente , con el fin de usarlas para realizar estafas y actos de sabotaje informático. Según los cargos, SoBe y su cómplice, Jeanson James Ancheta, habrían infiltrado las computadoras mediante un software publicitario que aparte de darles control sobre las máquinas, les reportó ganancias de 58.000 dólares. En un comentario enviado por correo electrónico a un conocido, James Ancheta escribe “lo que hacemos es inmoral, pero el dinero lo justifica&#8221;. Tal comentario ha sido usado por la fiscalía como evidencia en contra del sujeto.</p>
<p>Los delincuentes no diseñaron ellos mismos el software de intrusión, sino que adaptaron malware conocido como rxbot. Los sujetos modificaron consecuentemente diversos parámetros de las descargas y propagación del software, lo que impidió que éste pudiera ser bloqueado automáticamente por la mayoría de los proveedores de acceso a Internet. De esa forma, para los inculpados fue posible infiltrar incluso computadoras de bases militares estadounidenses. En el tribunal, ambos sujetos declararon que sus intenciones eran suspender sus actividades. De nada sirvió tal intención, ya que las autoridades les detuvieron antes que pudieran borrar sus huellas. El mayor de los inculpados, James Ancheta, ya ha sido sentenciado a 4 años y 9 meses de prisión, en tanto que el adolescente aún espera sentencia. La sentencia se espera para el 8 de mayo.</p>
<p>Fuente: The Register</p>
<div style="Clear:both;"></div>
<hr align="center" style="border:#999999 dashed 1px;"/><p>&nbsp;</p><div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Tambi&eacute;n te pueden interesar estos art&iacute;culos</span><br /><br /><ul style="padding:0; margin:0;"><li style="list-style-image:none; margin:0px; padding:0;"><span class="aizattos_related_posts_title">No related posts</span></li></ul></div><p class="akst_link"><a href="http://www.empresario.com.mx/go.php?http://www.empresario.com.mx/?p=629&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc. ( Clic para leer)" id="akst_link_629" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.empresario.com.mx/2008/adolescente-controlaba-400000-computadoras-zombi/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
