<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux &#38;&#38; PHP @ NomikOS – BLOG</title>
	<atom:link href="http://nomikos.info/feed" rel="self" type="application/rss+xml" />
	<link>http://nomikos.info</link>
	<description>Artículos y temas sobre programación web: Linux, PHP, jQuery, CodeIgniter/Kohana y mis trabajos en linea en RAC. Igor Parra Bastias – NomikOS</description>
	<lastBuildDate>Wed, 18 Aug 2010 14:22:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Yoshinori Sunahara &#8211; tema 2</title>
		<link>http://nomikos.info/2010/08/17/yoshinori-sunahara-tema-2.html</link>
		<comments>http://nomikos.info/2010/08/17/yoshinori-sunahara-tema-2.html#comments</comments>
		<pubDate>Wed, 18 Aug 2010 03:03:14 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1876</guid>
		<description><![CDATA[Posts relacionados:…permiso… aqui viene Yoshinori Sunahara…


Posts relacionados:<ol><li><a href='http://nomikos.info/2010/07/27/permiso-aqui-viene-yoshinori-sunahara.html' rel='bookmark' title='Permanent Link: …permiso… aqui viene Yoshinori Sunahara…'>…permiso… aqui viene Yoshinori Sunahara…</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/NbyuUvoklBY?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/NbyuUvoklBY?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2010/07/27/permiso-aqui-viene-yoshinori-sunahara.html' rel='bookmark' title='Permanent Link: …permiso… aqui viene Yoshinori Sunahara…'>…permiso… aqui viene Yoshinori Sunahara…</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/17/yoshinori-sunahara-tema-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; Encapsulamiento de funciones.</title>
		<link>http://nomikos.info/2010/08/15/javascript-encapsulamiento-de-funciones.html</link>
		<comments>http://nomikos.info/2010/08/15/javascript-encapsulamiento-de-funciones.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 19:53:01 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[jQuery y OOP Javascript]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1867</guid>
		<description><![CDATA[Encapsulamiento es una técnica de programación orientada a objetos que en programación web permite fijar espacios de variables más confiables. Esto es muy necesario para hacer desarrollo con javascript en ambientes de fuente abierta en que muchas personar aportan código. Esto significa evitar hacer caer un programa por usar variables o funciones propias de la [...]


Posts relacionados:<ol><li><a href='http://nomikos.info/2009/11/29/jquery-esencial-%e2%80%93parte-1.html' rel='bookmark' title='Permanent Link: jQuery esencial –Parte 1.'>jQuery esencial –Parte 1.</a></li>
<li><a href='http://nomikos.info/2009/11/28/jquery-esencial-%e2%80%93presentacion-powerpoint.html' rel='bookmark' title='Permanent Link: jQuery esencial –Presentación PowerPoint.'>jQuery esencial –Presentación PowerPoint.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Encapsulamiento es una técnica de programación orientada a objetos que en programación web permite fijar espacios de variables más confiables. Esto es muy necesario para hacer desarrollo con javascript en ambientes de fuente abierta en que muchas personar aportan código. Esto significa evitar hacer caer un programa por usar variables o funciones propias de la plataforma, o que otros programadores, por no hacer esto, han definido en un ambiente global. Seguro que si cometes uno de estos errores te haces famoso de la peor forma dentro de la comunidad en que estés participando. Esto es muy probable, por ejemplo, en plataformas como WordPress o Codeigniter.</p>
<p>Te reseño la base de la técnica y tu la adoptas como quieras. En javascript todo es un objeto, incluso las funciones. Por esto puedes construir una única función clase que acceda a todas las funciones que desarrolles, para luego llamarlas como unica_funcion.my_funcion(). En mi caso, nombro esta única función mezclando mi alias y el nombre del proyecto en particular:</p>
<div class="codecolorer-container javascript blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #003366; font-weight: bold;">var</span> nomikosObjectHelios <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #006600; font-style: italic;">// variable</span><br />
&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> aux <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #006600; font-style: italic;">// construcción con jquery para chequear botones tipo radio</span><br />
&nbsp; &nbsp; check_radio<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> aux <span style="color: #339933;">=</span> jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'input:radio[name=main_catID]:checked'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> aux<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; <span style="color: #006600; font-style: italic;">// otra función (a continuación de una coma)</span><br />
&nbsp; &nbsp; say_hello<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;hola mundo&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span></div></td></tr></tbody></table></div>
<p>Luego puedes llamar a todas tus funciones usando el objeto nomikosObjectHelios:</p>
<div class="codecolorer-container javascript blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>nomikosObjectHelios<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> nomikosObjectHelios.<span style="color: #660066;">check_radio</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;No ha elegido categoría&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span></div></td></tr></tbody></table></div>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2009/11/29/jquery-esencial-%e2%80%93parte-1.html' rel='bookmark' title='Permanent Link: jQuery esencial –Parte 1.'>jQuery esencial –Parte 1.</a></li>
<li><a href='http://nomikos.info/2009/11/28/jquery-esencial-%e2%80%93presentacion-powerpoint.html' rel='bookmark' title='Permanent Link: jQuery esencial –Presentación PowerPoint.'>jQuery esencial –Presentación PowerPoint.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/15/javascript-encapsulamiento-de-funciones.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Un excelente resumen para potenciar tu inglés.</title>
		<link>http://nomikos.info/2010/08/15/un-excelente-resumen-para-potenciar-tu-ingles.html</link>
		<comments>http://nomikos.info/2010/08/15/un-excelente-resumen-para-potenciar-tu-ingles.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 17:30:26 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1844</guid>
		<description><![CDATA[Llegado un momento en que ya manejas suficiente vocabulario sólo basta con una ayuda como gTranslate &#8211;addon para Firefox&#8211; para poder leer todo lo que quieras en inglés. Pero cuando se trata de escribir es otra cosa. Que seguramente es incluso más problemático que hablar, en que puedes aclarar ideas más rápidamente, incluso con lenguaje [...]]]></description>
			<content:encoded><![CDATA[<p>Llegado un momento en que ya manejas suficiente vocabulario sólo basta con una ayuda como <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/918/">gTranslate</a> &#8211;addon para Firefox&#8211; para poder leer todo lo que quieras en inglés.</p>
<p>Pero cuando se trata de escribir es otra cosa. Que seguramente es incluso más problemático que hablar, en que puedes aclarar ideas más rápidamente, incluso con lenguaje físico. Cuando un cliente te dice <em>you said one hundred?</em>, y tu piensas <em>que no moledera! guan TAUSEN!</em>, es que ya necesitas <em>go back to the school</em>. </p>
<p>Todo lo que sigue es mérito de <a target="_blank" href="http://enchiel.blogspot.com/">Alex Engel</a>. Es un copia pegada sin la menor vergüenza de su articulo: <a target="_blank" href="http://enchiel.blogspot.com/2008/04/leccion-10-ingles-basico-ghio.html">http://enchiel.blogspot.com/2008/04/leccion-10-ingles-basico-ghio.html</a>. </p>
<p>La idea fenomenal que propone Alex es simplificar tus expresiones &#8220;&#8230;usando solamente los 16 verbos básicos y sus combinaciones verbales&#8230;&#8221; Con sólo eso me dije que valía la pena seguir leyendo y que debería guardar esto cerca. Aquí va calcado:</p>
<p><br style="clear:both"></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/1994-12-08.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/1994-12-08.gif" alt="" title="1994-12-08" width="240" height="320" class="alignleft size-full wp-image-1862" /></a></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/2008-07-18.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/2008-07-18.gif" alt="" title="2008-07-18" width="240" height="320" class="alignright size-full wp-image-1861" /></a></p>
<p><br style="clear:both"></p>
<hr />
<p>1. Cómo hacer más verbos<br />
2. Preposiciones<br />
3. Verbos combinados con preposiciones<br />
4. Participio pasado</p>
<h1>1. Como hacer más verbos</h1>
<p>Si el estudiante construye sus frases inglesa empleando un verbo diferente para cada idea diferente, nunca logrará aprender a hablar un correcto inglés, ya que lo más seguro es que después de años de esfuerzo y fatigas le invada el desaliento y abandone el estudio del inglés, debido a que es un trabajo sumamente difícil aprender este idioma si se comienza por la tarea, casi imposible, de aprender los miles y miles de verbos regulares e irregulares, con sus cambios de forma, usos e inflexiones.</p>
<p>Seguramente no ignorará que LOS VERBOS SON LA ESPINA DORSAL DE TODO IDIOMA. Los miles que componen el idioma inglés, con sus irregularidades y sus cambios de forma, constituyen un obstáculo casi insalvable para el estudiante.</p>
<p>Aquí es donde se basa principalmente el fracaso rotundo del aprendizaje del inglés en nuestra América, puede verse fácilmente la diferencia que puede existir entre aprender cuatro mil verbos distintos con la sencilla tarea de aprender los dieciséis verbos básicos.</p>
<p>Indudablemente que no puede pretenderse escribir elocuentemente poesías, o elevada prosa, sin el concurso de esos 4 000 verbos, pero tenemos la certeza de que el estudiante no tendrá la pretensión de aprender inglés para escribir poesías en ese idioma.</p>
<p>Lo que necesita es un método que le permita poder conversar y escribir un perfecto inglés con la menor fatiga y en el más breve tiempo posible, y para eso nada mejor que construir sus frases en la forma básica, usando solamente los 16 verbos básicos y las combinaciones verbales que le vamos a enseñar.</p>
<p>Estas combinaciones verbales no sólo son perfectamente correctas, sino que son usadas, con PREFERENCIA, por los mismos ingleses.</p>
<blockquote><p>* * * POR EJEMPLO, SI DESEAMOS USAR EL VERBO EMPUJAR, EN LUGAR DE APRENDER UN VERBO NUEVO, LO QUE CREARÍA MUCHAS DIFICULTADES, FORMAMOS UNA COMBINACIÓN VERBAL Y DECIMOS: DAR UN EMPUJÓN.</p>
<p>EN LUGAR DE USAR EL VERBO GOLPEAR, DECIMOS: DAR UN GOLPE, QUE ES LO MISMO. En vez de decir: YO EMPUJÉ A ESE HOMBRE, El Ingles básico dice: YO LE DI UN EMPUJÓN A ESE HOMBRE. En vez de decir: Su madre le besó, el básico dice: Su madre le dio un beso.</p></blockquote>
<p>Como el estudiante podrá observar, es lo mismo emplear las frases de una u otra forma; ambas son válidas, pero hay un mundo de diferencias cuando se trata de aprender el idioma inglés construyendo las frases en una u otra de las formas indicadas.<br />
Como primer paso para comprender esta clase de combinaciones verbales deberá usted aprender, de memoria, las combinaciones con el verbo “to give”, que van a continuación.</p>
<p><strong>COMBINACIONES VERBALES CON TO GIVE.</strong></p>
<p>Cry ( crái) Grito, llanto<br />
To give a cry &#8211; Gritar</p>
<p>Laugh (láaf) Risa<br />
To give a laugh &#8211; Reir</p>
<p>Smile (smáil) Sonrisa<br />
To give a smile – Sonreir</p>
<p>Education (ediuqueíSHon) Educación<br />
To give an education- Educar</p>
<p>Opinion (opíniOn) Opinión<br />
To give an opinion -Opinar</p>
<p>Reward (riuóoRd) Premio, recompensa<br />
To give a reward Premiar</p>
<p>Rub (ráb) &#8211; Flotamiento, fricción<br />
To give a rub – Friccionar</p>
<p>Whistle (juísEl) &#8211; Silbido, pito<br />
To give a whistle &#8211; Silbar</p>
<p>Surprise (seRpráis) Sorpresa<br />
To give a surprise -Sorprender</p>
<p>Order (óoRdeR) Orden<br />
To give an order -Ordenar</p>
<p>Kiss (kís) Beso<br />
To give a kiss &#8211; Besar</p>
<p>Push (puSH) Empujón, impulso<br />
To give a push &#8211; Empujar<br />
I gave a push to that man<br />
Yo empujé a ese hombre (di un empujón a ese hombre.</p>
<p>My mother gave a kiss to that boy.<br />
Mi madre besó a ese niño (mi madre dio un beso a ese niño).</p>
<p>He gave a good education to his son.<br />
El educó bien a su hijo (él dio una buena educación a su hijo).</p>
<p><strong>COMBINACIONES VERBALES CON TO HAVE</strong></p>
<p>Discussion (discáShen) &#8211; discusión<br />
To have a discussion – discutir</p>
<p>Desire ( dizáieR) &#8211; deseo<br />
To have a desire &#8211; desear</p>
<p>Drink (drink) &#8211; bebida<br />
To have a drink – beber</p>
<p>Fight (fáit) – pelea, combate, batalla<br />
To have a fight – pelear, combatir</p>
<p>Sleep (slíp) &#8211; sueño<br />
To have a sleep – dormir</p>
<p>Smash (smáSH) &#8211; choque<br />
To have a smash – chocar</p>
<p>Meal (míil) &#8211; comida<br />
To have a meal – comer</p>
<p>Smoke (smóUk) &#8211; Humo<br />
To have a smoke – fumar</p>
<p>Pain (péin) – dolor, pena<br />
To have a pain – doler</p>
<p>Talk (tóok) – conversación, charla<br />
To have a talk – conversar</p>
<p>I have a pain in my leg &#8211; Me duele la pierna (Yo tengo un dolor en mi pierna)</p>
<p>He had a good sleep &#8211; El durmió bien (El tuvo un buen sueño)</p>
<p>I had a talk whit your father &#8211; Yo conversé con tu padre (Yo tuve una conversación con tu padre)</p>
<p><strong>COMBINACIONES VERBALES CON TO MAKE</strong></p>
<p>Protest (próUtest) &#8211; protesta<br />
To make a protest – protestar<br />
Journey (yéeRni) &#8211; viaje<br />
To make a journey – viajar (hacer un viaje)<br />
Present (Prózent) – regalo<br />
To make a present &#8211; regalar<br />
Change (chéinyE) – cambio<br />
To make a change – cambiar<br />
Start (stáaRt) – principio, partida<br />
To make a start &#8211; principiar<br />
Mark (máaRk) – marca, señal<br />
To make a mark – marcar<br />
Stop (stóp) – pausa, detención<br />
To make a stop &#8211; parar<br />
Suggestion (sayést-Shon) &#8211; sugerencia<br />
To make a suggestion – sugerir<br />
Certain (séeRtEn) &#8211; seguro, cierto<br />
To make a certain – asegurarse<br />
Selection (silékSHen) selección<br />
To make a selection &#8211; seleccionar<br />
Statement (stéimEnt) – informe, exposición<br />
To make a statement – informar<br />
Discovery (discávery) – descubrimiento<br />
To make a discovery – descubrir<br />
Decision (disíSHon) – decisión<br />
To make a decision – hacer una decisión<br />
Division (divíSHon) – división<br />
To make a division – dividir<br />
Addition (adíSHon) – suma<br />
To make an addition &#8211; sumar<br />
Agreement (agrímEnt) – acuerdo, contrato<br />
To make an agreement &#8211; acordar<br />
Invention (invénSHon) &#8211; invención<br />
To make an invention &#8211; inventar<br />
Answer (áanseR) – respuesta, contestación<br />
To make an answer – responder, contestar<br />
Attack (aták) – ataque, agresión<br />
To make an attack – atacar<br />
Error (érrOr) – error, equivocación<br />
To make an error &#8211; equivocarse<br />
Offer (óferR) &#8211; oferta<br />
To make an offer &#8211; ofrecer<br />
Sign (sáin) – señal, firma, signo<br />
To make a sign &#8211; señalar<br />
Move (múuv) &#8211; movimiento<br />
To make a move &#8211; mover<br />
Smooth (smúuz) &#8211; suave, liso, pulido<br />
To make a smooth &#8211; suavizar</p>
<p>I will make a decision tomorrow = Y me decidiré mañana (Yo haré una decisión mañana).</p>
<p>You have made an error in the addition = Ud se equivocó en la suma (Ud ha hecho un error en la suma.</p>
<p>He made an answer to my questions = El contestó mis preguntas ( El hizo una contestación a mi preguntas)<br />
Colon made the discovery of America = Colón descubrió América ( Colón hizo el descubrimiento de América)</p>
<p>We made a journey across Peru = Nosotros viajamos a través de Perú (Nosotros hicimos un viaje a través de Perú).</p>
<p><strong>COMBINACIONES VERBALES CON TO GET</strong></p>
<p>Violent (váiolent) – violento, violenta<br />
To get violent – violentarse<br />
Strong (stróng) –fuerte, robusto<br />
To get strong – fortalecerse<br />
Tired (táieRd) – cansado, fatigado<br />
To get tired &#8211; cansarse<br />
Well (uél) – bien<br />
To get well – mejorar<br />
Thin (zín) – delgado<br />
To get thin – adelgazar<br />
Help (jélp) – ayuda, socorro<br />
To get help – conseguir, ayuda<br />
Ill (íl) – enfermo, enferma<br />
To get ill – enfermarse<br />
Dry (drái) – seco, árido<br />
To get dry &#8211; secarse<br />
Wet (uet) – mojado, húmedo<br />
To get wet – mojarse</p>
<p>My father got ill in the last war = Mi padre enfermó en la última guerra</p>
<p>Your daughter has got very ill = Su hija ha adelgazado mucho<br />
He got violent when we said that = El se violentó cuando nosotros dijimos eso<br />
We are getting tired of our work = Nosotros estábamos cansándonos de nuestro trabajo</p>
<p><strong>COMBINACIONES VERBALES CON TO KEEP</strong></p>
<p>Awake (auéik) = despierto<br />
To keep awake = mantenerse despierto<br />
Quiet (cuáiet) = quieto, tranquilo<br />
To keep quiet = mantenerse tranquilo<br />
Secret (síicrit) = secreto<br />
To keep secret = mantener secreto<br />
Clean (clíin) = limpio, limpia<br />
To keep clean = mantener limpio, limpia</p>
<p>Please, keep quiet = Por favor manténganse tranquilos</p>
<p>Plaese, keep all my words secret = por favor mantengan todas mis palabras secretas</p>
<p>My mother keep awake all the night = Mi madre se mantuvo despierta toda la noche</p>
<p><strong>NUEVAS PALABRAS</strong><br />
Again (aguéin) De nuevo, otra vez<br />
Against (aguéinst) Contra, en contra de<br />
Almost (óolmoUst) Casi<br />
Gold (góuld) Oro<br />
Finger (fíngeR) Dedo<br />
Hand (jand) Mano<br />
Nose (noUz) Nariz<br />
Hair (jéaR) Pelo<br />
Heart (jáaRt) Corazón<br />
Knee (níi) Rodilla<br />
Face (féis) Cara<br />
Female (fiímeil) Femenino<br />
Male (méil) Masculino<br />
Memory (mémori) Memoria<br />
Moon (múun) Luna<br />
Sun (sán) Sol</p>
<p><strong>OPUESTOS</strong><br />
Same (séim)………………… Mismo<br />
Different (dífErent)……… Diferente</p>
<p>Same is the opposit of Different<br />
Igual es lo opuesto de Diferente</p>
<p>Dry (drái)…………… Seco<br />
Wet (uét)…………………… Mojado</p>
<p>Dry is the opposit of Wet<br />
Seco es lo opuesto de Mojado</p>
<p>Shut (Shát)……………… Cerrado<br />
Open (óUpen)…………… Abierto</p>
<p>Shut is the opposit of Open<br />
Cerrado es lo opuesto de Abierto</p>
<h1>2. PREPOSICIONES</h1>
<p>En el idioma inglés las preposiciones tienen un valor muy grande.</p>
<p>La definición que da el diccionario sobre la palabra “preposición” es la siguiente:</p>
<p>“Es la parte invariable de la oración que denota el régimen o relación que tienen dos términos entre sí”.</p>
<p>Si se le dificulta comprender dicha definición, no se preocupe, resulta más fácil comprenderla si estudia todos los significados de las preposiciones básicas, acontinuación:</p>
<p>About ( abáut)………… Alrededor de; cerca de<br />
After (áafter)………… Después de; detrás de<br />
Among (amáng)……… Entre (tratándose de más de dos personas o cosas)<br />
At (át)…………………… A; en<br />
Before (bifóoR)……… Antes de ; delante<br />
Between (bituíin)… Entre (tratándose de solo dos personas o cosas)<br />
By (bái) ……………… Por; cerca de<br />
Down (dáun) …………Bajo; abajo<br />
For (fóoR)………………Para<br />
From (fróm)………………Desde; de<br />
In (in) ……………………En; dentro de<br />
Of (ov) ………………… De<br />
Off (oof)………………… Fuera<br />
On (ón) …………………En; sobre<br />
Out (áut) …………………Afuera; fuera<br />
Over (óUveR)……………Sobre; por encima de<br />
Throught (zruu)……… A través de<br />
To (tú) …………………A<br />
Under (ándeR)……… Debajo de<br />
Up (áp) ………………Arriba<br />
Whit (uíz)………………Con</p>
<p><strong>EJEMPLOS CON PREPOSICIONES:</strong></p>
<p>Para comprender mejor el uso de las preposiciones vamos a estudiarlas por medio de ejemplos.</p>
<p>Las preposiciones desempeñan un gran papel en el inglés, y por lo tanto deberá usted estudiar las explicaciones y familiarizarse con las frases que siguen.</p>
<p>About (ábaut) ………………Alrededor de; acerca de<br />
It is about two ………………Son alrededor de las dos<br />
It is about half past five…… Son alrededor de las cinco y media<br />
A book about religion ………Un libro acerca de la religión<br />
A letter about your son ……Una carta acerca de tu hijo</p>
<p>Before (bífóoR) …………… Antes de; delante de<br />
After (áafteR) ………………Después de; detrás de<br />
Before him was the sea ……Delante de él estaba el mar<br />
One after the other…………Uno después del otro<br />
I will go before you …………Iré delante de ti<br />
I will go after my work ………Iré después de mi trabajo</p>
<p>Among (amáng) ……………Entre (hablando de más de 2 personas o cosas)<br />
Between (bituíin) ……………Entre (hablando de dos personas o cosas)<br />
He is among those boys……Está entre esos niños<br />
Between you and I …………Entre Ud y yo<br />
It is among this papers ………Está entre estos papeles<br />
I went between one and two… Fui entre la una y las dos</p>
<p>By (bái) …………………Por; cerca de<br />
Put that table by my bed ……… Pon esa mesa cerca de mi cama<br />
I have a house by the river… Yo tengo una casa cerca del rio<br />
I will go by train ……………Iré por tren</p>
<p>Up and Down ………………… Arriba y abajo<br />
Down is the opposite of Up…… Abajo es lo opuesto de arriba<br />
He is walking up and down …… El está caminando arriba y abajo<br />
He is down in the garden ……… El está abajo en el jardín<br />
I will go up in the lift ……… Subiré en el ascensor</p>
<p>For (fóor) ………………………Para<br />
This book is for your son …… Este libro es para su hijo<br />
These letters are for you …… Estas cartas son para usted</p>
<p>From (fróm) ……………………Desde; de<br />
From Bogotá to Caracas …… De Bogotá a Caracas<br />
He went from London to Rio …El fue de Londres a Rio<br />
He comes from Paris …………El viene de París</p>
<p>Of (óv) …………………………De (como se usa en castellano)<br />
Give mi a bit of bread ………Dame un pedazo de pan<br />
This is a bit of soap ……………Esto es un pedazo de jabón</p>
<p>In (in) ……… En (dando la idea de estar dentro de algo)</p>
<p>On (ón) ……En; sobre (dando la idea que está encima de algo)<br />
Under (ándeR) ……………Debajo de<br />
Over (oUveR) ……………Sobre (por encima de algo)<br />
Your son is in my room …… Su hijo está en mi cuarto<br />
Your shirt is on your bed …… Su camisa está sobre su cama<br />
There is a light over my bed … Hay una luz sobre mi cama<br />
There is a box under my bed …… Hay una caja debajo de mi cama<br />
Put the bread on the table ……… Pon el pan sobre la mesa<br />
The dog is undre the table ……… El perro está bajo la mesa<br />
She is in the garden …………Ella está en el jardín</p>
<p>Under is the opposite of Over</p>
<p>Off (óof) .El uso del off casi siempre va unido a un verbo alterando su significado, ejemplo:</p>
<p>Take ……………… Tomar<br />
Take off ……………Sacar<br />
He is taking off his hat ……… El está sacándose su sombrero</p>
<p>Send ……………… Enviar<br />
Send off ………… Despedir<br />
He is sending me off ……… El está despidiéndome</p>
<p>With (uíz) ………………… Con<br />
He is with my father ………… El está con mi padre<br />
Do your work with care …………… Haga su trabajo con cuidado</p>
<p>Trhough (zrú) ……… Entre; a través de<br />
He made a journey trhough Chile… El hizo un viaje a través de Chile<br />
He is walking trough the wood …… El está caminando a través del bosque</p>
<p>Out (áut) ………………………… Fuera; afuera<br />
Out is the opposite of In …… Fuera es lo opuesto de dentro<br />
She is out ………………… Ella está afuera</p>
<p>To (tu) ……………………… A<br />
I will go to Mendoza ……… Yo iré a Mendoza</p>
<h1>3. VERBOS COMBINADOS CON PREPOSICIONES</h1>
<p>En el transcurso de este texto hemos enseñado el modo de formar nuevos verbos por medio de la unión de verbos básicos con determinadas palabras. Hemos dado algunas de estas combinaciones verbales que son de gran importancia para lograr un rápido progreso en sus estudios de inglés.</p>
<p>Ahora trataremos las combinaciones de verbos y preposiciones. A continuación se da un pequeño grupo de estas combinaciones ya que a la vez que el estudiante comprende esta forma de hacer nuevos verbos, podrá crear centenar de ellos sin dificultad.</p>
<p>To go after……… Perseguir<br />
The dog is going after the cat … El perro persigue al gato<br />
The dog went after the cat …………… El perro persiguió al gato</p>
<p>To go up …………Subir<br />
We went up the mountain ………… Subimos la montaña<br />
I will go up the mountain ……… Yo subiré la montaña</p>
<p>To go out …………… Salir<br />
He went out of the house ……… El salió de la casa<br />
He will go out of the house ……… El saldrá de la casa</p>
<p>To go on …………………Continuar<br />
Go on with your work ……………… Continúen con su trabajo<br />
I will go on with my work………… Continuaré con mi trabajo</p>
<p>To go in ………………… Entrar<br />
I will go in by that door …… Entraré por esa puerta<br />
He may go in now ………………… El puede entrar ahora<br />
She will go whit me …………… Ella me acompañará<br />
I might go whit her ………… Yo podría acompañarla</p>
<p>To keep on …… Proseguir ( mantener sobre)<br />
He keep on walking ………………… El prosiguío caminando<br />
He will keep on walking ……… El proseguirá caminando</p>
<p>To keep under ………… Oprimir (mantener abajo)<br />
She is kept under by my son ……… Ella está oprimida por mi hijo<br />
I am kept under by him …………… Yo estoy oprimido por el</p>
<p>To come to ……… Acercarse (venir a)<br />
We are coming to the river……… Estamos acercándonos a un rio<br />
I was coming to B. Aires……… Estaba acercándome a B. Aires</p>
<p>To come in ……… Entrar (venir dentro)<br />
You may come in, now …………… Ud puede entrar, ahora<br />
They came in to my house ………… Ellos entraron en mi casa</p>
<p>To come whit …………………… Acompañar (venir con)<br />
Come whit me to the school ………… Acompáñame a la escuela<br />
He came whit me to the school … El me acompañó a la escuela</p>
<p>To come for …………………… Venir a buscar (Venir por)<br />
I have come for my money ……………… He venido a buscar mi dinero<br />
I will come for my money ……………… Vendré a buscar mi dinero</p>
<p>To get up ………………Levantarse (conseguir arriba)<br />
I get up early ………… Yo me levanto temprano<br />
I got up early …………Yo me levanté temprano</p>
<p>To get out ………………… Salir (Conseguir afuera)<br />
Get out of my house …………………… Salga de mi casa<br />
He went out from my house …… El salió de mi casa</p>
<p>To let out …………Dejar salir<br />
He let out the dog …………… El dejó salir al perro<br />
He will let out the dog…… El dejará salir al perro</p>
<p>To take off ………Quitarse (tomar fuera)<br />
I took off my hat …………… Yo me sequé el sombrero<br />
He will take off his hat ………El se sacará el sombrero</p>
<p>To give out ……………… Agotar (dar afuera)<br />
Their food is giving out …… Su alimento está agotándose<br />
Their food gave out …………Su alimento se agotó</p>
<p>To give up …………………………Abandonar (dar arriba)<br />
That man gave up is work ………Ese hombre abandonó su trabajo<br />
That man was giving up his work…Ese hombre estaba abandonando su trabajo</p>
<p>To put out …………………………Apagar (poner afuera)<br />
Put out the light …………………Apague la luz<br />
They were putting out the light…Ellos estaban apagando la luz</p>
<p>To put off …………Postergar (poner fuera)<br />
The meeting has been put off …… La reunión ha sido postergada<br />
The peace has been put off ………… La paz ha sido postergada</p>
<p>To put in …………Insertar (poner dentro)<br />
That news was put in in the magazine ……… La noticia estaba insertada en la revista<br />
That news will be put in the magazine …… Esa noticia será insertada en la revista</p>
<p>To put on ……………Ponerse (poner sobre)<br />
He is putting on his coat ……El está poniéndose su chaqueta<br />
He put on his coat ……………El se puso su chaqueta</p>
<p>To send for ………Enviar a buscar (enviar por)<br />
I send for my sister ……Envié a buscar a mi hermana<br />
I will send for my sister ……… Enviaré a buscar a mi hermana</p>
<hr />
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/2009-05-19.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/2009-05-19.gif" alt="" title="2009-05-19" width="240" height="320" class="alignleft size-full wp-image-1859" /></a></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/1997-10-17.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/1997-10-17.gif" alt="" title="1997-10-17" width="240" height="320" class="alignright size-full wp-image-1860" /></a></p>
<p><br style="clear:both"></p>
<hr />
<h1>4. PARTICIPIO PASADO</h1>
<p>Ya se ha estudiado todo el sistema verbal básico, con excepción del tiempo llamado participio pasado.</p>
<p>Para que el estudiante se familiarice con el participio pasado de todos los verbos básicos, comience por aprender como si fueran palabras sueltas todos los tiempos de verbos que irán a continuación, la mayoría de los cuales ya son de su conocimiento.</p>
<p>To give (guív)………………… Dar<br />
I gave (guéiv)………………… Yo dí<br />
Given (guíven)………………… Dado</p>
<p>To seem (síim) ……………… Parecer<br />
I seemed (síimEd) ……… Yo parecí<br />
Seemed (síimEd) …………… Parecido</p>
<p>To sent (sént) ……………… Enviar<br />
I send (sénd) ………………… Yo envié<br />
Sent (sént) ……………………… Enviado</p>
<p>To get (guét) ………………… Conseguir<br />
I got (gót) ……………………… Yo conseguí<br />
Got (gót) …………………………… Conseguido</p>
<p>To take (téik) ……………… Tomar<br />
I took (túk) …………………… Yo tomé<br />
Taken (téikEn) ……………… Tomado</p>
<p>To let (lét) …………………… Dejar<br />
I let (lét) ……………………… Yo dejé<br />
Let (lét) …………………………… Dejado</p>
<p>To make (méik) ……………… Hacer<br />
I made (méid) ………………… Yo hice<br />
Made (méid) ……………………… Hecho</p>
<p>To see (síi) …………………… Ver<br />
I saw (sóo) ……………………… Yo ví<br />
Seen (síin) ……………………… Visto</p>
<p>To come (cám) ………………… Venir<br />
I came (kéim) ………………… Yo vine<br />
Come (cám) ………………………… Venido</p>
<p>To say (séi) …………………… Decir<br />
I said (séd) …………………… Yo dije<br />
Said (séd) ………………………… Dicho</p>
<p>To go (góu) ……………………… Ir<br />
I went (uént) ………………… Yo fui<br />
Gone (gón) ………………………… Ido</p>
<p>To put (pút) …………………… Poner<br />
I put (pút) ……………………… Yo puse<br />
Put (pút) …………………………… Puesto</p>
<p>To have (jáv) … Haber o Tener<br />
Had (jád) …………… Habido o tenido</p>
<p>To keep (kíip) ……………… Mantener<br />
I kept (képt) ………………… Yo mantuve<br />
Kept (képt) ……………………… Mantenido</p>
<p>To Be …………………… Ser o estar<br />
Been ……………………… Sido o estado</p>
<p><strong>EL SISTEMA VERBAL INGLES</strong></p>
<p>La mayor dificultad que ofrecen todos los idiomas son sus verbos; sin embargo, el sistema verbal inglés es por excepción y afortunadamente, de una simplicidad única. Todo lo que se necesita saber para conjugar un verbo inglés es conocer su presente, pasado y participio pasado.</p>
<p>La mejor manera de estudiar estos tres tiempos es repetirlos varias veces; por ejemplo, para aprender estos tres tiempos del verbo to take, bastará repetir varias veces: take, took, taken.</p>
<p>Cuando estas palabras se hayan pegado a su oido, sabrá inmediatamente que take corresponde al presente, took al pasado y taken al participio pasado.</p>
<p>Algunos verbos como let y put, son iguales en sus tres tiempos; otros como have, send, make, get, say y keep, tienen el pasado y el participio iguales. Esto facilita aun más su aprendizaje.</p>
<p>El estudiante ya ha estudiado los tres principales tiempos de los verbos básicos, pero conviene que los repita hasta que ellos se le peguen al oido.</p>
<p>Las palabras se dán en el siguiente orden en cada línea:<br />
Presente – Pasado – Participio</p>
<p>Give, Gave, Given<br />
Seem, Seemed, Seemed<br />
Send, Sent, Sent<br />
Get, Got, Got<br />
Take, Took, Taken<br />
Let, Let, Let<br />
Make, Made, Made<br />
See, Saw, Seen<br />
Do, Did, Done<br />
Say, Said, Said<br />
Come, Came, Come<br />
Put, Put, Put,<br />
Go, Went, Gone<br />
Keep, Kept, Kept<br />
Have, Had, Had<br />
Be, Was, Been</p>
<p><strong>EJERCICIO PARA FAMILIARIZARSE CON EL PARTICIPIO PASADO DE LOS<br />
VERBOS INGLESES.</strong></p>
<p>Al estudiar le conviene mucho tener un conocimiento perfecto y aprender a usar el pasado participio de los verbos ingleses, porque sus usos son exactamente los mismos en inglés como en español, y por tanto, cuando el estudiante se encuentre en apuros sobre la mejor manera de formar alguna frase inglesa en tiempo pasado, ***puede salir en el paso poniendo la frase en pasado participio y así estará seguro de poder decir esa frase en perfecto inglés, sin dificultad alguna, ya que la formación de la frases en ese tiempo es igual en ambos idiomas.</p>
<p>En el estudio de un idioma extranjero, VALE MÁS UNA ONZA DE PRÁCTICA QUE UNA LIBRA DE TEORIA; por consiguiente, bastará que el estudiante se familiarice con las frases que van a continuación para comprender lo fácil que resulta en participio pasado, y lo fácil que resultara formar innumerables frases en ese tiempo verbal. Los participios pasados en esos ejemplos en letras cursivas.</p>
<p>(Give – Gave – Given) &#8211; (guív – guéiv – guivn)<br />
To give a reward &#8211; Dar un premio<br />
I give a reward &#8211; Yo doy un premio<br />
I have given a reward &#8211; Yo he dado un premio<br />
I had given a reward &#8211; Yo había dado un premio</p>
<p>(send – sent – sent) &#8211; (send – sent – sent)<br />
To send a letter &#8211; Enviar una carta<br />
He sends a letter &#8211; El envía una carta<br />
He has sent a letter &#8211; El ha enviado una carta<br />
He had sent a letter &#8211; El había enviado una carta</p>
<p>(take – took – taken) &#8211; (téik – tuk – teikn)<br />
To take a book &#8211; Tomar un libro<br />
She takes a book &#8211; Ella toma un libro<br />
She has taken a book &#8211; Ella ha tomado un libro<br />
She had taken a book &#8211; Ella había tomado un libro</p>
<p>(make – made – made) &#8211; (méik – méid – meid)<br />
To make a table &#8211; Hacer una mesa<br />
We make a table &#8211; Hacemos una mesa<br />
We have made a table &#8211; Hemos hecho una mesa<br />
We had made a table &#8211; Habíamos hecho una mesa</p>
<p>(do – did – done) &#8211; (duu – did – dan)<br />
To do a work &#8211; Hacer un trabajo<br />
He does his work &#8211; El hace su trabajo<br />
He has done his werk &#8211; El ha hecho su trabajo<br />
He had done his werk &#8211; El había hecho su trabajo</p>
<p>(come – came – come) &#8211; (cám – kéim – cam)<br />
To came at seven &#8211; Venir a las siete<br />
I come at seven &#8211; Vengo a las siete<br />
I have come at seven &#8211; He venido a las siete<br />
I had come at seven &#8211; Había venido a las siete</p>
<p>(go – went – gone) &#8211; (góu – uént – gon)<br />
To go to Perú &#8211; Ir a Perú<br />
I go to Perú &#8211; Yo voy a Perú<br />
I have gone to Perú &#8211; Yo he ido a Perú<br />
I had gone to Perú &#8211; Yo había ido a Perú</p>
<p>(get – got – got) &#8211; (guét – got – got)<br />
To get the money &#8211; Conseguiré el dinero<br />
I get the money &#8211; Consigo el dinero<br />
I have got the money &#8211; He conseguido el dinero<br />
I have got the money &#8211; Había conseguido</p>
<p>(let – let –let) &#8211; (let – let – let)<br />
To let him go &#8211; Déjalo ir (a el)<br />
I let him go &#8211; Yo lo dejo ir<br />
I have let him go &#8211; Yo lo he dejado ir<br />
I have let him go &#8211; Yo lo había dejado ir</p>
<p>(see – saw – seen) &#8211; (síi – sóo – siin)<br />
I see the fight &#8211; Ver la pelea<br />
He sees the fight &#8211; El ve la pelea<br />
He has seen the fight &#8211; El ha visto la pelea<br />
He had seen the fight &#8211; El había visto la pelea</p>
<p>(say – said – said) &#8211; (séi – sed – sed)<br />
To say that &#8211; Decir eso<br />
They say that &#8211; Ellos dicen eso<br />
They have said that &#8211; Ellos han dicho eso<br />
They had said that &#8211; Ellos habían dicho eso</p>
<p>(put – put – put) &#8211; (put – put – put)<br />
To put &#8211; Poner<br />
She puts the food on the table &#8211; Ella pone el alimento sobre la mesa<br />
She has put the food on table &#8211; Ella ha puesto el alimento sobre la mesa<br />
She had put the food on the table &#8211; Ella había puesto el alimento sobre la mesa</p>
<p>(keep – kept – kept) &#8211; (kíip – kept – kept)<br />
To keep her word &#8211; Mantener su palabra<br />
She keeps her word &#8211; Ella mantiene su palabra<br />
She has kept her word &#8211; Ha mantenido su palabra<br />
She had kept her word &#8211; Había mantenido su palabra</p>
<p>(be – was – been) (bíi – uós – bíin)<br />
To be ill &#8211; Estar enfermo<br />
We are ill &#8211; Estamos enfermos<br />
We have been ill &#8211; Hemos estado enfermo<br />
We had been ill &#8211; Habíamos estado enfermo</p>
<p>(have – had – had) &#8211; (jáv – jad – jad)<br />
To have money &#8211; Tener dinero<br />
He has money &#8211; El tiene dinero<br />
He has had money &#8211; El ha tenido dinero<br />
He had had money &#8211; El había tenido dinero</p>
<p><strong>AUTOEXAMEN DE LA DECIMA LECCION</strong></p>
<p>a) Repase todos los exámenes y los ejercicios de perfeccionamiento que siguen a cada examen de todas las lecciones pasadas. Puede omitirse el hacerlo de nuevo por escrito; basta que el estudiante los repase mentalmente, para asegurarse de que está completamente familiarizado con las respuestas correcta a cada una de las preguntas de esos exámenes, como también de que domina en absoluto todo los ejercicios de perfeccionamiento que siguen a cada lección.</p>
<p>b) Traduzca al inglés las siguientes palabras:</p>
<p>1- Yo vengo –<br />
2. Ud dice –<br />
3.El deja –<br />
4- Ella toma –<br />
5- Nosotros damos –<br />
6- Uds tienen –<br />
7- Uds dan –<br />
8- Ellos hacen –<br />
9- Ella pone –<br />
10- Nosotros mantenemos –<br />
11- Ellas son –<br />
12- Ellos están –<br />
13- Yo envío –<br />
14- Nosotros vamos.</p>
<p>c) Traduzca al castellano las siguientes palabras:</p>
<p>1. You came –<br />
2. They give –<br />
3. We seem –<br />
4. They did –<br />
5. I tooch –<br />
6. I will be –<br />
7. They would keep –<br />
8. She send –<br />
9. We have put –<br />
10. It makes –<br />
11. We are letting –<br />
12. They say –<br />
13. I have come –<br />
14. I saw.</p>
<p>d) Traduzca al inglés las siguientes frases:</p>
<p>1. Este libro es mio –<br />
2. Esa es la casa de mi padre –<br />
3. Son las cinco y media –<br />
4. Ud está equivocado –<br />
5. Yo podría estar equivocado –<br />
6. ¿ Que es eso? –<br />
7. ¿ Cual es el camino a Mar del Plata? –<br />
8. Esa es una buena idea –<br />
9. ¿ Cuando puedo ir? –<br />
10. ¿ Donde está su casa? –<br />
11. ¿ Que hora es?.</p>
<p>e) Indique los tres principales tiempos verbales ( presente, pasado y participio pasado) de los siguientes verbos:</p>
<p>1. Dejar –<br />
2. Venir –<br />
3. Decir –<br />
4. Dar – 5. Tomar –<br />
6. Haber o Tener –<br />
7. Parecer –<br />
8. Poner –<br />
9. Mantener –<br />
10. Ser o Estar –<br />
11. Enviar –<br />
12. Conseguir –<br />
13. Ver –<br />
14. Ir –<br />
15. Hacer (do) –<br />
16. Hacer (make).</p>
<p><strong>COMPROBACION DEL EXAMEN DE LA DECIMA LECCION</strong></p>
<p>b)<br />
1. I come –<br />
2. You sav –<br />
3. He lets –<br />
4. She takes –<br />
5. We give –<br />
6. You have –<br />
7. You have –<br />
8. They do o They make<br />
9. She puts –<br />
10. We keep –<br />
11. They are –<br />
12. They are<br />
13. I send –<br />
14. We see.</p>
<p>c)<br />
1. Ud vino o Uds vinieron –<br />
2. Ellos (as) dan –<br />
3. Nosotros (as) parecemos –<br />
4. Ellos (as) hicieron –<br />
5. Yo tomé –<br />
6. Yo seré o estaré –<br />
7. Ellos (as) mantendrán –<br />
8. Ella envía –<br />
9. Nosotros (as) hemos puesto –<br />
10. Hace (neutro) –<br />
11.Nosotros (as) estamos dejando =<br />
12. Ellos (as) dicen –<br />
13. Yo he venido –<br />
14. Yo vi.</p>
<p>d)<br />
1. This book is mine –<br />
2. That is my father’s home –<br />
3. It is half past five –<br />
4. You are wrong –<br />
5. I might be wrong –<br />
6. What is that? –<br />
7. Which is the road to Mar del Plata? –<br />
8. That is a good idea –<br />
9. When may I go? –<br />
10.Where is your house? –<br />
11. What time is it?.</p>
<p>e)<br />
1. To let, let, let –<br />
2. To come, came, come –<br />
3. To say, said, said –<br />
4. To give, gave, given –<br />
5.To take, took, taken –<br />
6.To have, had, had –<br />
7. To seem, seemed, seemed –<br />
8. To put, put, put –<br />
9. To keep, kept, kept –<br />
10. To be, was, been –<br />
11.To send, sent, sent –<br />
12. To get, got, got –<br />
13. To see, saw, seen –<br />
14. To go, went, gone –<br />
15. To do, did, done –<br />
16. To make, made, made.</p>
<p>Insistimos en recordar que los exámenes deben hacerse sin dificultad. Si el examen de una lección le resulta difícil, eso indica de manera evidente que usted estudia demasiado de prisa , con lo cual sólo estará perdiendo el tiempo. Si ejecutó este examen sin una relativa facilidad, en lugar de seguir adelante, vuelva a repasar toda la décima lección, y sólo siga adelante cuando esté seguro de que la domina ampliamente.</p>
<p><strong>EJERCICIOS DE PERFECCIONAMIENTO DE LA DECIMA LECCION</strong></p>
<p>Cuando se conoce y se sabe emplear correctamente el sistema verbal de un idioma, puede decirse, con toda propiedad, que ya se domina ese idioma. Por supuesto, un idioma no se compone sólo de verbos, pero siendo estos su espina dorsal, todo lo demás resulta sencillo de emplear.</p>
<p>+++ El estudiante no debe olvidar nunca que el sistema verbal constituye el alma de un idioma, o sea el motor central que mueve ese idioma. +++</p>
<p>Para que se familiarice aún más con los verbos básicos, vamos a darle varias páginas con frases en las cuales los mismos verbos irán colocados en tiempos diferentes.</p>
<p>Comparando esas frases entre sí, se disipará cualquier duda que aún pueda tener acerca del uso de los verbos básicos.</p>
<p>Estudie con toda atención las frases que van a continuación porque su estudio le dará el conocimiento preciso del uso de los verbos básicos, sino también porque ellas, una vez bien aprendidas, le permitirán hacer miles de frases similares.</p>
<p>I am taking a bath Yo estoy tomando un baño<br />
I take a bath Yo tomé un baño<br />
I was taking a bath Yo estaba tomando un baño<br />
I have taken a bath Yo he tomado un baño<br />
I had taken a bath Yo había tomado un baño<br />
I will be taking a bath Yo estaré tomando un baño<br />
I might take a bath Yo podría tomar un baño<br />
I may take a bath Yo puedo tomar un baño<br />
I would take a bath Yo tomaría un baño<br />
I will take a bath, Yo tomaré un baño<br />
He is giving me my book, El está dándome mi libro<br />
She gave me my book, Ella me dio mi libro<br />
I will give you my book, Yo les daré mi libro<br />
I would give you my book, Yo le daría mi libro<br />
We have given the books, Hemos dado los libros<br />
We had given the books, Habíamos dado los libros<br />
Give me my book, Deme mi libro<br />
He was giving the book, El estaba dando el libro<br />
Come tomorrow, Venga mañana<br />
Come tomorrow, Vengan mañana<br />
I came yesterday, Yo vine ayer<br />
I will come tomorrow, Yo vendré mañana<br />
He has come today, El ha venido hoy<br />
He had come today, El habia venido hoy<br />
He might come tomorrow, El podría venir mañana<br />
We would come tomorrow, Vendríamos mañana<br />
I may come today, Yo puedo venir hoy<br />
Keep quiet, Manténganse tranquilos<br />
Keep quiet, Manténganse tranquilos<br />
My son is very ill, Mi hijo está muy enfermo<br />
He was very ill, El estaba muy enfermo<br />
He has been very ill, El ha estado muy enfermo<br />
He may be ill, El puede estar enfermo<br />
He might be ill, El podría estar enfermo<br />
My son would be ill, Mi hijo estaría enfermo<br />
He had be ill, El había estado enfermo<br />
To be or not to be, Ser o no ser<br />
Be a good boy, Sea un buen niño<br />
He sends me a present, El me envía un regalo<br />
He sent me a present, El me envió un regalo<br />
I will send a present, Yo enviaré un regalo<br />
You might send a present, Ud podría enviar un regalo<br />
I would send a present, Yo enviaría un regalo<br />
He may send a present, El puede enviar un regalo<br />
I was sending a present, Estaba enviando un regalo<br />
I have sent a present, Yo he enviado un regalo<br />
I had sent a present, Yo habia enviado un regalo<br />
He got the money, El consiguió el dinero<br />
She will get the money, Ella conseguirá el dinero<br />
I might get the money, Yo podría conseguir el dinero<br />
I have get the money, Yo he conseguido el dinero</p>
<p>I would get the money, Yo conseguiría el dinero<br />
He may get the money, El puede conseguir el dinero<br />
He will see that, El verá eso<br />
He might see you today, El podría verle a Ud hoy<br />
I have seen the fire, Yo he visto el incendio<br />
I had seen the fire, Yo habia visto el incendio<br />
Go and see yourself, Vaya y vea por sí mismo<br />
I saw that I was wrong, Vi que estaba equivocado<br />
I am going to the house, Estoy yendo a su casa<br />
I went to your house, Yo fui a su casa<br />
Tomorrow, I will go to your house , Mañana yo iré a su casa<br />
I have gone there, Yo he ido allá<br />
I had gone there, Yo habia ido allá<br />
He might go whit me, El podría ir conmigo<br />
I may go whit her, Puedo ir con ella<br />
You are wrong, Ud está equivocado<br />
You are wrong, Uds están equivocados</p>
<hr />
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/1997-05-31.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/1997-05-31.gif" alt="" title="1997-05-31" width="240" height="320" class="alignleft size-full wp-image-1848" /></a></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/1995-07-10.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/1995-07-10.gif" alt="" title="1995-07-10" width="240" height="320" class="alignright size-full wp-image-1849" /></a></p>
<p><br style="clear:both"></p>
<p>fuente de todas las morrocotudas imágenes anteriores: <a target="_blank" href="http://offthemark.com/search-results/key/sign/">http://offthemark.com/search-results/key/english/</a></p>
<hr />
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/JOKENotNowKid.jpg"><br />
<caption>Not now kid</caption>
<p><img src="http://nomikos.info/wp-content/uploads/2010/08/JOKENotNowKid.jpg" alt="" title="not now kid" width="627" height="492" class="aligncenter size-full wp-image-1847" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/15/un-excelente-resumen-para-potenciar-tu-ingles.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Debugbar &#8211; Extensión tipo Firebug para Internet Explorer.</title>
		<link>http://nomikos.info/2010/08/15/debugbar-extension-tipo-firebug-para-internet-explorer.html</link>
		<comments>http://nomikos.info/2010/08/15/debugbar-extension-tipo-firebug-para-internet-explorer.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 16:15:58 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Herramientas para programación web]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1835</guid>
		<description><![CDATA[Debugbar es un extensión para Internet Explorer semejante a Firebug para Firefox, lo que quire decir que te permite analizar profundamente el comportamiento de este navegador en determinadas páginas. Lo encuentras en http://www.debugbar.com. Es gratis para uso personal. DOM Inspector: para análisis y modificación del DOM (modelo de objetos del documento). HTTP Inspector: análisis de [...]


Posts relacionados:<ol><li><a href='http://nomikos.info/2009/07/31/cambiar-mime-type-de-un-archivo-o-su-tipo.html' rel='bookmark' title='Permanent Link: Cambiar mime-type de un archivo o su tipo.'>Cambiar mime-type de un archivo o su tipo.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Debugbar es un extensión para Internet Explorer semejante a Firebug para Firefox, lo que quire decir que te permite analizar profundamente el comportamiento de este navegador en determinadas páginas. Lo encuentras en <a target="_blank" href="http://www.debugbar.com/?langage=en">http://www.debugbar.com</a>. Es gratis para uso personal. </p>
<ul>
<li>DOM Inspector: para análisis y modificación del DOM (modelo de objetos del documento).
<li>HTTP Inspector: análisis de cookies,  GET, POST y cabeceras HTTP.
<li>Javascript Inspector and Javascript Console: permite ver y depurar javascript y AJAX.
<li>HTML Validator: validador HTML
</ul>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/debugbar-for-internet-explorer.jpg"><img src="http://nomikos.info/wp-content/uploads/2010/08/debugbar-for-internet-explorer.jpg" alt="" title="debugbar-for-internet-explorer" width="630" height="737" class="aligncenter size-full wp-image-1837" /></a></p>
<p>Lamentablemente IE siempre merece trato aparte, especialmente en su versión 6. Este programa me ha sacado de problemas en 2 oportunidades ya, por eso pensé hecerle esta pequeña reseña aquí. Lo recomiendo. Por supuesto que debes hacer todo esto sobre MS-Windows&trade; para obtener el comportamiento más fehaciente.</p>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2009/07/31/cambiar-mime-type-de-un-archivo-o-su-tipo.html' rel='bookmark' title='Permanent Link: Cambiar mime-type de un archivo o su tipo.'>Cambiar mime-type de un archivo o su tipo.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/15/debugbar-extension-tipo-firebug-para-internet-explorer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comandos linux &#8211; calc: calculadora.</title>
		<link>http://nomikos.info/2010/08/13/comandos-linux-calc-calculadora.html</link>
		<comments>http://nomikos.info/2010/08/13/comandos-linux-calc-calculadora.html#comments</comments>
		<pubDate>Fri, 13 Aug 2010 14:31:06 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Comandos]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1817</guid>
		<description><![CDATA[He notado que un rasgo distintivo de much@s programador@s y usuarios avanzados de computadores es su simpatía por los gatos. Es muy común encontrar fotos de ellos en sus blogs o ser presentados como &#8220;gato oficial&#8221; de un proyecto. Cuando a eso agregas una sana antipatía por el mouse, es que has encontrado un tipo [...]


Posts relacionados:<ol><li><a href='http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html' rel='bookmark' title='Permanent Link: Comandos linux &#8211; cal: calendario.'>Comandos linux &#8211; cal: calendario.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>He notado que un rasgo distintivo de much@s programador@s y usuarios avanzados de computadores es su simpatía por los gatos. Es muy común encontrar fotos de ellos en sus blogs o ser presentados como &#8220;gato oficial&#8221; de un proyecto. Cuando a eso agregas una sana antipatía por el mouse, es que has encontrado un tipo de cuidado. >_></p>
<hr />
<h1>calc</h1>
<p>Una completa calculadora con tan sólo 4 teclazos.<br />
Primero vemos su página de manual.</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">man</span> calc<br />
NAME<br />
&nbsp; &nbsp; &nbsp; &nbsp;calc - arbitrary precision calculator<br />
<br />
SYNOPSIS<br />
&nbsp; &nbsp; &nbsp; &nbsp;calc <span style="color: #7a0874; font-weight: bold;">&#91;</span>-c<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-C<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-d<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">&#91;</span>-D calc_debug<span style="color: #7a0874; font-weight: bold;">&#91;</span>:resource_debug<span style="color: #7a0874; font-weight: bold;">&#91;</span>:user_debug<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">&#91;</span>-e<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-h<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-i<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-m mode<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-O<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">&#91;</span>-p<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-q<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-s<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-u<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-v<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>--<span style="color: #7a0874; font-weight: bold;">&#93;</span> calc_cmd ...<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<br />
... etc ...</div></td></tr></tbody></table></div>
<p>Ejemplos:</p>
<p>Hay dos modos de usar la calculadora.<br />
La más rápida es como un comando seguido de un argumento que es la expresión a calcular:</p>
<div class="codecolorer-container fortran blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="fortran codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ calc <span style="color: #cc66cc;">9</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">9</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">9</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">90</span></div></td></tr></tbody></table></div>
<p>Y la otra es ejecutarla como programa. Veremos que el prompt de calc es el punto y coma (;) y que punto (.) representa el último resultado, muy útil para los flojos como somos todos los que usamos el teclado hasta para clavar.</p>
<div class="codecolorer-container fortran blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br /></div></td><td><div class="fortran codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ calc<br />
<span style="color: #666666; font-style: italic;">! C-style arbitrary precision calculator (version 2.12.3.3)</span><br />
<span style="color: #666666; font-style: italic;">! Calc is open software. For license details type: &nbsp;help copyright</span><br />
<span style="color: #666666; font-style: italic;">! [Type &quot;exit&quot; to exit, or &quot;help&quot; for help.]</span><br />
<br />
; <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">9</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">9</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">9</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">10</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">9</span><br />
; <span style="color: #993333;">cos</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">1</span><br />
; <span style="color: #993333;">log</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; ~<span style="color: #cc66cc;">0.30102999566398119521</span><br />
; <span style="color: #993333;">sqrt</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">1.4142135623730950488</span><br />
; pi<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">3.14159265358979323846</span><br />
; 2i <span style="color: #339933;">+</span> 3i<br />
&nbsp; &nbsp; 5i<br />
<br />
<span style="color: #666666; font-style: italic;">! usando punto como último resultado</span><br />
<br />
; .<span style="color: #339933;">*</span><span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; 5i<br />
; .<span style="color: #339933;">^</span><span style="color: #cc66cc;">2</span><br />
&nbsp; &nbsp; <span style="color: #339933;">-</span><span style="color: #cc66cc;">25</span><br />
<br />
<span style="color: #666666; font-style: italic;">! resultados como fracciones</span><br />
<br />
; config<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;mode&quot;</span>, <span style="color: #ff0000;">&quot;fraction&quot;</span><span style="color: #009900;">&#41;</span>,<br />
; <span style="color: #cc66cc;">10</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">30</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">1</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">3</span><br />
; <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">5</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">5</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">1</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">3</span><br />
<br />
<span style="color: #666666; font-style: italic;">! precedencia de operadores: () + - * /</span><br />
<br />
; <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">5</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">5</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">12</span><br />
<br />
<span style="color: #666666; font-style: italic;">! salir</span><br />
<br />
; <span style="color: #b1b100;">exit</span></div></td></tr></tbody></table></div>
<p>más info en: <a target="_blank" href="http://isthe.com/chongo/tech/comp/calc/calc-whatis.html">http://isthe.com/chongo/tech/comp/calc/calc-whatis.html</a></p>
<hr />
<h1>Ingenieros entran gratis</h1>
<p>Creo que la mayor ventaja de esta calculadora es que cuentas con todo el poder del procesador de tu pececito. Es decir, anda a poner esto en tu calculadorcita de bolsillo: 2^1000000. Sí, 2 elevado a un millón. El resultado puede tardar uno o dos segundos pero lo obtienes dígito a dígito y no en notación científica, No lo transcribo aquí pa&#8217; no gastarte la pantalla.<br />
Lo que quiero decir es que para un profesional de los números puede resultar fascinante investigar este comando. Para ello usa:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ info calc</div></td></tr></tbody></table></div>
<p>Para los que aprendieron a usar calculadoras HP-48 para algo más que determinar <em>límites</em> visualmente mediante gráficos, les encantará saber que puede usar notación <a target="_blank" href="http://es.wikipedia.org/wiki/Notaci%C3%B3n_polaca_inversa">RPN</a>. Sí, eso de poner los números primero y después el operador ( 2 3 + ).</p>
<p><br style="clear:both"></p>
<hr />
<p><center></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/hp48gx.jpg"><img src="http://nomikos.info/wp-content/uploads/2010/08/hp48gx-166x300.jpg" alt="" title="HP48-GX" width="166" height="300" class="aligncenter size-medium wp-image-1784" /></a></p>
<p><strong>Calculadora científica HP 48GX</strong> &#8211; Es lo que por estos lados llamamos: la raja. No gastes esfuerzos buscando la tecla <em>es igual</em> [=] Eso queda para quienes recién vienen saliendo de contar con los dedos.</p>
<p><br style="clear:both"><br />
<a href="http://nomikos.info/wp-content/uploads/2010/08/xcalc.png"><img src="http://nomikos.info/wp-content/uploads/2010/08/xcalc-217x300.png" alt="" title="xcalc" width="217" height="300" class="aligncenter size-medium wp-image-1809" /></a></p>
<p><strong>xcalc</strong> Versión X de calc: Más apropiada para el uso cotidiano puedes ejecutar una emulación gráfica de la TI-30 (Texas Instruments).</p>
<p><br style="clear:both"></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/xcalc-hp10c.png"><img src="http://nomikos.info/wp-content/uploads/2010/08/xcalc-hp10c.png" alt="" title="xcalc-hp10c" width="452" height="215" class="aligncenter size-full wp-image-1811" /></a></p>
<p><strong>xcalc -rpn</strong> Y aquí emulando la HP-10C (Hewllet Packard) en que puedes usar notación RPN.</p>
<p></center></p>
<p><br style="clear:both"></p>
<hr />
<h1> 	&Pi; para siempre</h1>
<p>Finalmente, una entretención para los adeptos del número PI (&pi;).  La versión calc-2.12.4 introduce una nueva función llamada piforever() que imprime tantos dígitos de PI como lo permita tu CPU y memoria. La última vez que la vi andaba por aquí: <a href="http://www.isthe.com/chongo/src/calc/calc-2.12.4.0.tar.bz2">http://www.isthe.com/chongo/src/calc/calc-2.12.4.0.tar.bz2</a> (debes compilarlo manualmente, <a target="_blank" href="http://www.isthe.com/chongo/src/calc/HOWTO.INSTALL">http://www.isthe.com/chongo/src/calc/HOWTO.INSTALL</a>) A continuación una muestra de la salida:</p>
<hr />
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br />90<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ /usr/share/doc/apcalc-common/examples/piforever<br />
qpi(epsilon) defined<br />
piforever() defined<br />
pi ~= 3.<br />
<br />
1415926535 8979323846 2643383279 5028841971 6939937510 <br />
5820974944 5923078164 0628620899 8628034825 3421170679 <br />
8214808651 3282306647 0938446095 5058223172 5359408128 <br />
4811174502 8410270193 8521105559 6446229489 5493038196 <br />
4428810975 6659334461 2847564823 3786783165 2712019091 <br />
4564856692 3460348610 4543266482 1339360726 0249141273 <br />
7245870066 0631558817 4881520920 9628292540 9171536436 <br />
7892590360 0113305305 4882046652 1384146951 9415116094 <br />
3305727036 5759591953 0921861173 8193261179 3105118548 <br />
0744623799 6274956735 1885752724 8912279381 8301194912 <br />
9833673362 4406566430 8602139494 6395224737 1907021798 <br />
6094370277 0539217176 2931767523 8467481846 7669405132 <br />
0005681271 4526356082 7785771342 7577896091 7363717872 <br />
1468440901 2249534301 4654958537 1050792279 6892589235 <br />
4201995611 2129021960 8640344181 5981362977 4771309960 <br />
5187072113 4999999837 2978049951 0597317328 1609631859 <br />
5024459455 3469083026 4252230825 3344685035 2619311881 <br />
7101000313 7838752886 5875332083 8142061717 7669147303 <br />
5982534904 2875546873 1159562863 8823537875 9375195778 <br />
1857780532 1712268066 1300192787 6611195909 2164201989 <br />
<br />
3809525720 1065485863 2788659361 5338182796 8230301952 <br />
0353018529 6899577362 2599413891 2497217752 8347913151 <br />
5574857242 4541506959 5082953311 6861727855 8890750983 <br />
8175463746 4939319255 0604009277 0167113900 9848824012 <br />
8583616035 6370766010 4710181942 9555961989 4676783744 <br />
9448255379 7747268471 0404753464 6208046684 2590694912 <br />
9331367702 8989152104 7521620569 6602405803 8150193511 <br />
2533824300 3558764024 7496473263 9141992726 0426992279 <br />
6782354781 6360093417 2164121992 4586315030 2861829745 <br />
5570674983 8505494588 5869269956 9092721079 7509302955 <br />
3211653449 8720275596 0236480665 4991198818 3479775356 <br />
6369807426 5425278625 5181841757 4672890977 7727938000 <br />
8164706001 6145249192 1732172147 7235014144 1973568548 <br />
1613611573 5255213347 5741849468 4385233239 0739414333 <br />
4547762416 8625189835 6948556209 9219222184 2725502542 <br />
5688767179 0494601653 4668049886 2723279178 6085784383 <br />
8279679766 8145410095 3883786360 9506800642 2512520511 <br />
7392984896 0841284886 2694560424 1965285022 2106611863 <br />
0674427862 2039194945 0471237137 8696095636 4371917287 <br />
4677646575 7396241389 0865832645 9958133904 7802759009 <br />
<br />
9465764078 9512694683 9835259570 9825822620 5224894077 <br />
2671947826 8482601476 9909026401 3639443745 5305068203 <br />
4962524517 4939965143 1429809190 6592509372 2169646151 <br />
5709858387 4105978859 5977297549 8930161753 9284681382 <br />
6868386894 2774155991 8559252459 5395943104 9972524680 <br />
8459872736 4469584865 3836736222 6260991246 0805124388 <br />
4390451244 1365497627 8079771569 1435997700 1296160894 <br />
4169486855 5848406353 4220722258 2848864815 8456028506 <br />
0168427394 5226746767 8895252138 5225499546 6672782398 <br />
6456596116 3548862305 7745649803 5593634568 1743241125 <br />
1507606947 9451096596 0940252288 7971089314 5669136867 <br />
2287489405 6010150330 8617928680 9208747609 1782493858 <br />
9009714909 6759852613 6554978189 3129784821 6829989487 <br />
2265880485 7564014270 4775551323 7964145152 3746234364 <br />
5428584447 9526586782 1051141354 7357395231 1342716610 <br />
2135969536 2314429524 8493718711 0145765403 5902799344 <br />
0374200731 0578539062 1983874478 0847848968 3321445713 <br />
8687519435 0643021845 3191048481 0053706146 8067491927 <br />
8191197939 9520614196 6342875444 0643745123 7181921799 <br />
9839101591 9561814675 1426912397 4894090718 6494231961 <br />
<br />
5679452080 9514655022 5231603881 9301420937 6213785595 <br />
6638937787 0830390697 9207734672 2182562599 6615014215 <br />
0306803844 7734549202 6054146659 2520149744 2850732518 <br />
6660021324 3408819071 0486331734 6496514539 0579626856 <br />
1005508106 6587969981 6357473638 4052571459 1028970641 <br />
4011097120 6280439039 7595156771 5770042033 7869936007 <br />
2305587631 7635942187 3125147120 5329281918 2618612586 <br />
7321579198 4148488291 6447060957 5270695722 0917567116 <br />
7229109816 9091528017 3506712748 5832228718 3520935396 <br />
5725121083 5791513698 8209144421 0067510334 6711031412 <br />
6711136990 8658516398 3150197016 5151168517 1437657618 <br />
3515565088 4909989859 9823873455 2833163550 7647918535 <br />
8932261854 8963213293 3089857064 2046752590 7091548141 <br />
6549859461 6371802709 8199430992 4488957571 2828905923 <br />
2332609729 9712084433 5732654893 8239119325 9746366730 <br />
5836041428 1388303203 8249037589 8524374417 0291327656 <br />
1809377344 4030707469 2112019130 2033038019 7621101100 <br />
4492932151 6084244485 9637669838 9522868478 3123552658 <br />
2131449576 8572624334 4189303968 6426243410 7732269780 <br />
2807318915 4411010446 8232527162 0105265227 2111660396 <br />
<br />
... etc ... forever! ...</div></td></tr></tbody></table></div>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/catsohigh.gif"><img src="http://nomikos.info/wp-content/uploads/2010/08/catsohigh.gif" alt="" title="cat so high" width="350" height="319" class="alignleft size-full wp-image-1758" /></a></p>
<p><br style="clear:both"></p>
<hr />
<p>A esto súmale el uso de <a href="http://nomikos.info/2009/04/29/uso-de-comando-mail-en-linux.html">mail</a> y <a href="http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html">cal</a> y ya puedes ir entrenando tu mejor gesto de desprecio cuando te pregunten que si es mejor KDE o Gnome&#8230; Ja! o/\o</p>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html' rel='bookmark' title='Permanent Link: Comandos linux &#8211; cal: calendario.'>Comandos linux &#8211; cal: calendario.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/13/comandos-linux-calc-calculadora.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comandos linux &#8211; cal: calendario.</title>
		<link>http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html</link>
		<comments>http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html#comments</comments>
		<pubDate>Fri, 13 Aug 2010 02:59:09 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Comandos]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1772</guid>
		<description><![CDATA[cal Un completo calendario con tan sólo 3 teclazos. Como siempre conviene echar un vistazo al manual antes de usar un comando nuevo. 12345678910$ man cal NAME &#160; &#160; &#160;cal, ncal — displays a calendar and the date of easter SYNOPSIS &#160; &#160; &#160;cal &#91;-3jmy&#93; &#91;&#91;month&#93; year&#93; &#160; &#160; &#160;ncal &#91;-jJpwy&#93; &#91;-s country_code&#93; &#91;&#91;month&#93; year&#93; [...]]]></description>
			<content:encoded><![CDATA[<h1>cal</h1>
<p>Un completo calendario con tan sólo 3 teclazos.<br />
Como siempre conviene echar un vistazo al manual antes de usar un comando nuevo.</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">man</span> <span style="color: #c20cb9; font-weight: bold;">cal</span><br />
NAME<br />
&nbsp; &nbsp; &nbsp;<span style="color: #c20cb9; font-weight: bold;">cal</span>, ncal — displays a calendar and the <span style="color: #c20cb9; font-weight: bold;">date</span> of easter<br />
<br />
SYNOPSIS<br />
&nbsp; &nbsp; &nbsp;<span style="color: #c20cb9; font-weight: bold;">cal</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-3jmy<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>month<span style="color: #7a0874; font-weight: bold;">&#93;</span> year<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp;ncal <span style="color: #7a0874; font-weight: bold;">&#91;</span>-jJpwy<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>-s country_code<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>month<span style="color: #7a0874; font-weight: bold;">&#93;</span> year<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp;ncal <span style="color: #7a0874; font-weight: bold;">&#91;</span>-Jeo<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>year<span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<br />
... etc ...</div></td></tr></tbody></table></div>
<p>Ahora algunos ejemplos:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># 3 meses, actual en el centro</span><br />
$ <span style="color: #c20cb9; font-weight: bold;">cal</span> <span style="color: #660033;">-3</span><br />
&nbsp; &nbsp; &nbsp;July <span style="color: #000000;">2010</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;August <span style="color: #000000;">2010</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;September <span style="color: #000000;">2010</span> &nbsp; &nbsp; <br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span><br />
&nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> &nbsp; <span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> &nbsp; <span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span><br />
<span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> &nbsp;<span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> &nbsp;<span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span><br />
<span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> &nbsp;<span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> &nbsp;<span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span><br />
<span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp;<span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span></div></td></tr></tbody></table></div>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># en vertical con mes 8 y año 2010</span><br />
$ ncal <span style="color: #000000;">8</span> <span style="color: #000000;">2010</span><br />
&nbsp; &nbsp; August <span style="color: #000000;">2010</span><br />
Mo &nbsp; &nbsp; <span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">16</span> <span style="color: #000000;">23</span> <span style="color: #000000;">30</span><br />
Tu &nbsp; &nbsp; <span style="color: #000000;">3</span> <span style="color: #000000;">10</span> <span style="color: #000000;">17</span> <span style="color: #000000;">24</span> <span style="color: #000000;">31</span><br />
We &nbsp; &nbsp; <span style="color: #000000;">4</span> <span style="color: #000000;">11</span> <span style="color: #000000;">18</span> <span style="color: #000000;">25</span> &nbsp; <br />
Th &nbsp; &nbsp; <span style="color: #000000;">5</span> <span style="color: #000000;">12</span> <span style="color: #000000;">19</span> <span style="color: #000000;">26</span> &nbsp; <br />
Fr &nbsp; &nbsp; <span style="color: #000000;">6</span> <span style="color: #000000;">13</span> <span style="color: #000000;">20</span> <span style="color: #000000;">27</span> &nbsp; <br />
Sa &nbsp; &nbsp; <span style="color: #000000;">7</span> <span style="color: #000000;">14</span> <span style="color: #000000;">21</span> <span style="color: #000000;">28</span> &nbsp; <br />
Su &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">8</span> <span style="color: #000000;">15</span> <span style="color: #000000;">22</span> <span style="color: #000000;">29</span></div></td></tr></tbody></table></div>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># todo el año 2010</span><br />
$ <span style="color: #c20cb9; font-weight: bold;">cal</span> <span style="color: #000000;">2010</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">2010</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
<br />
&nbsp; &nbsp; &nbsp; January &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; February &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; March &nbsp; &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span><br />
&nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> &nbsp; <span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> &nbsp; <span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span><br />
<span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> &nbsp;<span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> &nbsp;<span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span><br />
<span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> &nbsp;<span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> &nbsp;<span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span><br />
<span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp;<span style="color: #000000;">28</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; <br />
<span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp;April &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;May &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; June &nbsp; &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span><br />
&nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> &nbsp; <span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp; <span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span><br />
<span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> &nbsp; <span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> &nbsp;<span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span><br />
<span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> &nbsp;<span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> &nbsp;<span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span><br />
<span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> &nbsp;<span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; July &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; August &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;September &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span><br />
&nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> &nbsp; <span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> &nbsp; <span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span><br />
<span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> &nbsp;<span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> &nbsp;<span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span><br />
<span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> &nbsp;<span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> &nbsp;<span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span><br />
<span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp;<span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; October &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; November &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;December &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span><br />
&nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> &nbsp; <span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> &nbsp; <span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span><br />
<span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> &nbsp;<span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> &nbsp;<span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span><br />
<span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> &nbsp;<span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> &nbsp;<span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span><br />
<span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp;<span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; <br />
<span style="color: #000000;">31</span></div></td></tr></tbody></table></div>
<hr />
Mira, ahora le puedes pegar una mona arriba y te montas un negocio de calendarios.</p>
<hr />
<p><center></p>
<div style="background-color:white;border:1px solid black">
<h1 style="color:black">Calendario 2011 &#8211; NomikOS Illustrated : US$9.99</h1>
<p><a href="http://nomikos.info/wp-content/uploads/2010/08/cosplay-girls01.jpg"><img src="http://nomikos.info/wp-content/uploads/2010/08/cosplay-girls01.jpg" alt="" title="cosplay-girls01" width="550" height="828" class="aligncenter size-full wp-image-1820" /></a></p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; January &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; February &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; March &nbsp; &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span><br />
&nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp; <span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> &nbsp; <span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span><br />
&nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> &nbsp;<span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> &nbsp;<span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span><br />
<span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> &nbsp;<span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> &nbsp;<span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span><br />
<span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> &nbsp;<span style="color: #000000;">27</span> <span style="color: #000000;">28</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp;<br />
<span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp;April &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;May &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; June &nbsp; &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span><br />
&nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> &nbsp; <span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> &nbsp; <span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span><br />
<span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> &nbsp;<span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> &nbsp;<span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span><br />
<span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> &nbsp;<span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> &nbsp;<span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span><br />
<span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp;<span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; July &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; August &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;September &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span><br />
&nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> &nbsp; <span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> &nbsp; <span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span><br />
<span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> &nbsp;<span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> &nbsp;<span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span><br />
<span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> &nbsp;<span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> &nbsp;<span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span><br />
<span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp;<span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; <br />
<span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; October &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; November &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;December &nbsp; &nbsp; &nbsp;<br />
Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa &nbsp;Su Mo Tu We Th Fr Sa<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">1</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">1</span> &nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span><br />
&nbsp;<span style="color: #000000;">2</span> &nbsp;<span style="color: #000000;">3</span> &nbsp;<span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp; <span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> &nbsp; <span style="color: #000000;">4</span> &nbsp;<span style="color: #000000;">5</span> &nbsp;<span style="color: #000000;">6</span> &nbsp;<span style="color: #000000;">7</span> &nbsp;<span style="color: #000000;">8</span> &nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span><br />
&nbsp;<span style="color: #000000;">9</span> <span style="color: #000000;">10</span> <span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> &nbsp;<span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> &nbsp;<span style="color: #000000;">11</span> <span style="color: #000000;">12</span> <span style="color: #000000;">13</span> <span style="color: #000000;">14</span> <span style="color: #000000;">15</span> <span style="color: #000000;">16</span> <span style="color: #000000;">17</span><br />
<span style="color: #000000;">16</span> <span style="color: #000000;">17</span> <span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> &nbsp;<span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> &nbsp;<span style="color: #000000;">18</span> <span style="color: #000000;">19</span> <span style="color: #000000;">20</span> <span style="color: #000000;">21</span> <span style="color: #000000;">22</span> <span style="color: #000000;">23</span> <span style="color: #000000;">24</span><br />
<span style="color: #000000;">23</span> <span style="color: #000000;">24</span> <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> &nbsp;<span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">25</span> <span style="color: #000000;">26</span> <span style="color: #000000;">27</span> <span style="color: #000000;">28</span> <span style="color: #000000;">29</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span><br />
<span style="color: #000000;">30</span> <span style="color: #000000;">31</span></div></div>
</div>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/12/comandos-linux-cal-calendario.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Games &#8211; Dummy Never Fails.</title>
		<link>http://nomikos.info/2010/08/12/games-dummy-never-fails.html</link>
		<comments>http://nomikos.info/2010/08/12/games-dummy-never-fails.html#comments</comments>
		<pubDate>Thu, 12 Aug 2010 18:39:12 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1750</guid>
		<description><![CDATA[Por fin algo sencillo pa&#8217; entrenar el dedo. Si no cachai que hacer, pesca cualquier cabro chico que pase cerca para que te lo explique. También se hacen clases a domicilio.]]></description>
			<content:encoded><![CDATA[<p>Por fin algo sencillo pa&#8217; entrenar el dedo. Si no cachai que hacer, pesca cualquier cabro chico que pase cerca para que te lo explique. También se hacen clases a domicilio.</p>
<p><center><br />
<object width="600" height="346.15384615385" id="FlashContent" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="http://www.slumgames.com/games/files/dummy-never-fails.swf" name="movie"></param><param value="high" name="quality"></param><param value="never" name="AllowScriptAccess"></param>
<embed width="600" height="346.15384615385" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="never" name="FlashContent" quality="high" src="http://www.slumgames.com/games/files/dummy-never-fails.swf"></embed></object><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/08/12/games-dummy-never-fails.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbeans IDE &#8211; Actualización remota de archivos vía FTP/SFTP.</title>
		<link>http://nomikos.info/2010/07/31/netbeans-ide-actualizacion-remota-de-archivos-via-ftpsftp.html</link>
		<comments>http://nomikos.info/2010/07/31/netbeans-ide-actualizacion-remota-de-archivos-via-ftpsftp.html#comments</comments>
		<pubDate>Sat, 31 Jul 2010 15:26:58 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Netbeans - IDE]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1737</guid>
		<description><![CDATA[Configuración de proyecto: run/ejecución Selección de archivo y ejecución de upload Dialogo de upload/subida de archivo Informe de resultados Si quieres saber más sobre netbeans y este tema, como por ejemplo como hacer un atajo con el teclado deja un comentario y lo vemos. Y cuidado al subir las escaleras. Posts relacionados:Netbeans no tiene word [...]


Posts relacionados:<ol><li><a href='http://nomikos.info/2010/06/06/netbeans-no-tiene-word-wrap-what.html' rel='bookmark' title='Permanent Link: Netbeans no tiene word wrap… What?'>Netbeans no tiene word wrap… What?</a></li>
<li><a href='http://nomikos.info/2009/08/18/realizar-una-actualizacion-automatica-de-wordpress-sin-dar-datos-de-ftp.html' rel='bookmark' title='Permanent Link: Realizar una actualización automática de WordPress sin dar datos de FTP.'>Realizar una actualización automática de WordPress sin dar datos de FTP.</a></li>
<li><a href='http://nomikos.info/2010/06/08/midnight-commander-abrir-archivos-con-tus-programas-favoritos-caso-de-estudio-geany-para-archivos-php.html' rel='bookmark' title='Permanent Link: midnight-commander &#8211; Abrir archivos con tus programas favoritos. Caso de estudio: geany para archivos PHP.'>midnight-commander &#8211; Abrir archivos con tus programas favoritos. Caso de estudio: geany para archivos PHP.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Configuración de proyecto: run/ejecución</strong></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/07/netbeans-project-run-configuration.png"><img src="http://nomikos.info/wp-content/uploads/2010/07/netbeans-project-run-configuration-630x419.png" alt="" title="netbeans-project-run-configuration" width="630" height="419" class="aligncenter size-630 wp-image-1740" /></a></p>
<p><strong>Selección de archivo y ejecución de upload</strong></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-execute.png"><img src="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-execute.png" alt="" title="netbeans-upload-execute" width="629" height="665" class="aligncenter size-full wp-image-1742" /></a></p>
<p><strong>Dialogo de upload/subida de archivo</strong></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-dialog.png"><img src="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-dialog.png" alt="" title="netbeans-upload-dialog" width="588" height="386" class="aligncenter size-full wp-image-1739" /></a></p>
<p><strong>Informe de resultados</strong></p>
<p><a href="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-output.png"><img src="http://nomikos.info/wp-content/uploads/2010/07/netbeans-upload-output.png" alt="" title="netbeans-upload-output" width="629" height="683" class="aligncenter size-full wp-image-1738" /></a></p>
<hr />
<p>Si quieres saber más sobre netbeans y este tema, como por ejemplo como hacer un atajo con el teclado deja un comentario y lo vemos. Y cuidado al subir las escaleras.</p>
<hr />
<p><center><a target="_blank" href="http://passedoutphotos.com/passedout/849-self-pwn3d"><img src="http://passedoutphotos.com//content/849/resized/passedout-photos-1219293890-44550.jpg" /></a></center></p>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2010/06/06/netbeans-no-tiene-word-wrap-what.html' rel='bookmark' title='Permanent Link: Netbeans no tiene word wrap… What?'>Netbeans no tiene word wrap… What?</a></li>
<li><a href='http://nomikos.info/2009/08/18/realizar-una-actualizacion-automatica-de-wordpress-sin-dar-datos-de-ftp.html' rel='bookmark' title='Permanent Link: Realizar una actualización automática de WordPress sin dar datos de FTP.'>Realizar una actualización automática de WordPress sin dar datos de FTP.</a></li>
<li><a href='http://nomikos.info/2010/06/08/midnight-commander-abrir-archivos-con-tus-programas-favoritos-caso-de-estudio-geany-para-archivos-php.html' rel='bookmark' title='Permanent Link: midnight-commander &#8211; Abrir archivos con tus programas favoritos. Caso de estudio: geany para archivos PHP.'>midnight-commander &#8211; Abrir archivos con tus programas favoritos. Caso de estudio: geany para archivos PHP.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/07/31/netbeans-ide-actualizacion-remota-de-archivos-via-ftpsftp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$_SERVER[&#039;HTTP_REFERER&#039;] null. Solución.</title>
		<link>http://nomikos.info/2010/07/29/_serverhttp_referer-null-solucion.html</link>
		<comments>http://nomikos.info/2010/07/29/_serverhttp_referer-null-solucion.html#comments</comments>
		<pubDate>Thu, 29 Jul 2010 16:00:08 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Servidores web]]></category>
		<category><![CDATA[Tips y trucos cortos]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1724</guid>
		<description><![CDATA[Iba a tirar una talla, pero no hay tiempo. Muchos programas basados en web usan HTTP_REFERER que en PHP se encuentra en la variable superglobal $_SERVER['HTTP_REFERER']. Esta variable entrega la dirección de la página inmediatamente anterior a la actual. Se usa principalmente para saber desde donde se ha llegado (obvio, que imbécil y con este [...]]]></description>
			<content:encoded><![CDATA[<p>Iba a tirar una talla, pero no hay tiempo. Muchos programas basados en web usan HTTP_REFERER que en PHP se encuentra en la variable superglobal $_SERVER['HTTP_REFERER']. Esta variable entrega la dirección de la página inmediatamente anterior a la actual. Se usa principalmente para saber desde donde se ha llegado (obvio, que imbécil <img src='http://nomikos.info/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  y con este wn tengo quer vivir!)</p>
<p>A veces esta variable es nula, principalmente cuando se escribe directamente la dirección en el navegador o se usa un bookmark, etc. A veces también es nula cuando el navegador la bloquea (o un firewall u otro programa) así que se se sabe que no es confiable. Lo dice el mismo manual de PHP.</p>
<p>Cuando estas modificando un sitio en producción de un cliente y de pronto algún formulario deja de funcionar tu cara puede ponerse blanca y tu monitor cubrirse con un repentino emesis, cachai?.</p>
<p>Asegúrate de que tu navegador está enviando este dato. En el bueno de Firefox lo haces así:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># En la entrada de direcciones escribes about:config<br />
# busca el valor network.http.sendRefererHeader<br />
# ponlo a su valor por defecto que es 2</div></td></tr></tbody></table></div>
<p><a href="http://nomikos.info/wp-content/uploads/2010/07/http_referrer1.png"><img src="http://nomikos.info/wp-content/uploads/2010/07/http_referrer1.png" alt="" title="http_referrer" width="630" height="481" class="aligncenter size-full wp-image-1727" /></a></p>
<p>Este dato se supone disponible siempre que se envía un formulario, ya sea con GET o POST. Pero es mejor prescindir de él si estas codificando tú. Como a veces debes meter mano en programas de terceros puedes encontrártelo. Y si tu navegador estás bloqueando el envío de este dato puedes, ya sabes, terminar limpiando tu monitor con una escobilla. Lo que quiero decir es que este es un efecto local que depende de tu ambiente de desarrollo, el navegador en este caso. No necesariamente va a significar un problema para otros usuarios. Pero sigue siendo un problema en potencia. Si depende de ti no uses esta variable.</p>
]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/07/29/_serverhttp_referer-null-solucion.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>…permiso… aqui viene Yoshinori Sunahara…</title>
		<link>http://nomikos.info/2010/07/27/permiso-aqui-viene-yoshinori-sunahara.html</link>
		<comments>http://nomikos.info/2010/07/27/permiso-aqui-viene-yoshinori-sunahara.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 01:31:26 +0000</pubDate>
		<dc:creator>NomikOS</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://nomikos.info/?p=1717</guid>
		<description><![CDATA[( a ver que tal mis nuevos super audífonos stereo) Posts relacionados:Yoshinori Sunahara &#8211; tema 2


Posts relacionados:<ol><li><a href='http://nomikos.info/2010/08/17/yoshinori-sunahara-tema-2.html' rel='bookmark' title='Permanent Link: Yoshinori Sunahara &#8211; tema 2'>Yoshinori Sunahara &#8211; tema 2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>( a ver que tal mis nuevos super audífonos stereo)</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/MzCi5kr4Aak&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MzCi5kr4Aak&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>


<p>Posts relacionados:<ol><li><a href='http://nomikos.info/2010/08/17/yoshinori-sunahara-tema-2.html' rel='bookmark' title='Permanent Link: Yoshinori Sunahara &#8211; tema 2'>Yoshinori Sunahara &#8211; tema 2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://nomikos.info/2010/07/27/permiso-aqui-viene-yoshinori-sunahara.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
