<?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>El Señor de los Ignacios</title>
	<atom:link href="http://www.iarivas.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iarivas.com</link>
	<description>&#34;Iterame la parabola&#34;</description>
	<lastBuildDate>Wed, 27 Jan 2010 02:28:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Twitter TimeLine Viewer</title>
		<link>http://www.iarivas.com/2010/01/twitter-timeline-viewer/</link>
		<comments>http://www.iarivas.com/2010/01/twitter-timeline-viewer/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:27:17 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=467</guid>
		<description><![CDATA[I spent some time going around with the Twitter API and wrote a simple application that shows your timeline, avatars of your followers, and so on. It is too simple, but it was fun  to develop.
Download it:



Hope you&#8217;re enjoy it!
Copyright &#169; 2009 Este feed es personal y de uso no comercial.  Si copias material de [...]]]></description>
			<content:encoded><![CDATA[<p>I spent some time going around with the Twitter API and wrote a simple application that shows your timeline, avatars of your followers, and so on. It is too simple, but it was fun  to develop.</p>
<p>Download it:</p>
<ul>
<li><a class="downloadlink" href="http://www.iarivas.com/wp-content/plugins/download-monitor/download.php?id=15" title="Version1 downloaded 16 times" >Twitter TimeLine (16)</a></li>
</ul>
<p>Hope you&#8217;re enjoy it!</p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/twitter-timeline-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win KeyBoard Shortcuts .NET</title>
		<link>http://www.iarivas.com/2010/01/windows-keyboard-shortcuts-net/</link>
		<comments>http://www.iarivas.com/2010/01/windows-keyboard-shortcuts-net/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:14:00 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=458</guid>
		<description><![CDATA[KeyBoardShortcut is a library written in C #. NET that allows you to capture keyboard events on windows and handle them in our CLR application.
Example:




KeyboardShortcut hook = new KeyboardShortcut();


hook.RegisterHotKey(ModifierKeys.Control, System.Windows.Forms.Keys.I);


hook.KeyPressed +=new EventHandler(hook_KeyPressed);


public void hook_KeyPressed(object sender, KeyPressedEventArgs e)


{


// handle event


}



As you can see is quite simple to use, here&#8217;s the sources and the compiled binary:




I hope [...]]]></description>
			<content:encoded><![CDATA[<p>KeyBoardShortcut is a library written in C #. NET that allows you to capture keyboard events on windows and handle them in our CLR application.</p>
<p>Example:</p>
<p><span id="more-458"></span></p>
<div class="csharp">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">KeyboardShortcut hook = <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> KeyboardShortcut<span style="color: #000000;">(</span><span style="color: #000000;">)</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hook.<span style="color: #0000ff;">RegisterHotKey</span><span style="color: #000000;">(</span>ModifierKeys.<span style="color: #0000ff;">Control</span>, <span style="color: #000000;">System</span>.<span style="color: #0000ff;">Windows</span>.<span style="color: #0000ff;">Forms</span>.<span style="color: #0000ff;">Keys</span>.<span style="color: #0000ff;">I</span><span style="color: #000000;">)</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hook.<span style="color: #0000ff;">KeyPressed</span> +=<a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> EventHandler<span style="color: #000000;">(</span>hook_KeyPressed<span style="color: #000000;">)</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600ff;">public</span> <span style="color: #0600ff;">void</span> hook_KeyPressed<span style="color: #000000;">(</span><span style="color: #ff0000;">object</span> sender, KeyPressedEventArgs e<span style="color: #000000;">)</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">{</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #008080; font-style: italic;">// handle event</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">}</span></div>
</li>
</ol>
</div>
<p>As you can see is quite simple to use, here&#8217;s the sources and the compiled binary:</p>
<ul>
<li><a class="downloadlink" href="http://www.iarivas.com/wp-content/plugins/download-monitor/download.php?id=9" title="Version1.0 downloaded 62 times" >Fuentes KeyBoard Shortcut c# (62)</a></li>
<li><a class="downloadlink" href="http://www.iarivas.com/wp-content/plugins/download-monitor/download.php?id=10" title="Version1.0 downloaded 63 times" >DLL KeyBoard Shortcuts C# (63)</a></li>
</ul>
<p>I hope you like it!</p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/windows-keyboard-shortcuts-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Simple Truth Table Generator</title>
		<link>http://www.iarivas.com/2010/01/a-simple-truth-table-generator/</link>
		<comments>http://www.iarivas.com/2010/01/a-simple-truth-table-generator/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:54:51 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=445</guid>
		<description><![CDATA[Truth Table Generator is a very simple application that lets you solve logical expressions and validate correctly. The application is written in ANSI-ISO C + + and compiled with Visual Studio 2008. All the code is properly documented and there is also documentation generated by doxygen.
The project still in development and is released under the BSD license.
Download:




A [...]]]></description>
			<content:encoded><![CDATA[<p>Truth Table Generator is a very simple application that lets you solve logical expressions and validate correctly. The application is written in ANSI-ISO C + + and compiled with Visual Studio 2008. All the code is properly documented and there is also documentation generated by doxygen.</p>
<p>The project still in development and is released under the BSD license.</p>
<p>Download:</p>
<ul>
<li><a class="downloadlink" href="http://www.iarivas.com/wp-content/plugins/download-monitor/download.php?id=13" title="Version1 downloaded 142 times" >Truth Table Generator (142)</a></li>
<li><a class="downloadlink" href="http://www.iarivas.com/wp-content/plugins/download-monitor/download.php?id=14" title="Version1 downloaded 172 times" >Truth Table Generator (172)</a></li>
</ul>
<p>A critical code section:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><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 /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">bool Expression::Valid()<br />
{<br />
this-&amp;gt;errors.clear();<br />
int IndexOfErrors = 0;<br />
<br />
for (vector::iterator i = this-&amp;gt;rules.begin(); i != this-&amp;gt;rules.end(); i++)<br />
{<br />
if (!const_cast(*i)-&amp;gt;Valid())<br />
{<br />
this-&amp;gt;errors.insert(errors.end(), const_cast(*i)-&amp;gt;FindError());<br />
IndexOfErrors++;<br />
}<br />
}<br />
return (IndexOfErrors == 0);<br />
}</div></td></tr></tbody></table></div>
<p>I hope you find it useful !</p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/a-simple-truth-table-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuevo look</title>
		<link>http://www.iarivas.com/2010/01/nuevo-look/</link>
		<comments>http://www.iarivas.com/2010/01/nuevo-look/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 19:12:15 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Noticias]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=433</guid>
		<description><![CDATA[Nuevo theme, nuevo año, nuevos monos bailarines con cáncer de raviol.

Copyright &#169; 2009 Este feed es personal y de uso no comercial.  Si copias material de este blog, recuerda a su autor orginal en tu entrada. ]]></description>
			<content:encoded><![CDATA[<p>Nuevo theme, nuevo año, nuevos monos bailarines con cáncer de raviol.</p>
<p><a href="http://2.bp.blogspot.com/_i5TsfW1mbw8/STbor-z68bI/AAAAAAAAAGM/VyJ8-l5Eh_4/s400/Awesome.png"><img class="aligncenter" src="http://2.bp.blogspot.com/_i5TsfW1mbw8/STbor-z68bI/AAAAAAAAAGM/VyJ8-l5Eh_4/s400/Awesome.png" alt="" width="400" height="400" /></a></p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/nuevo-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Elder of the Internet</title>
		<link>http://www.iarivas.com/2010/01/the-elder-of-the-internet/</link>
		<comments>http://www.iarivas.com/2010/01/the-elder-of-the-internet/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:19:15 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=430</guid>
		<description><![CDATA[
El tipo es un filosofo, a mi no me jodan.
Copyright &#169; 2009 Este feed es personal y de uso no comercial.  Si copias material de este blog, recuerda a su autor orginal en tu entrada. ]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iarivas.com/wp-content/uploads/2010/01/save-the-internet.jpg"><img class="size-full wp-image-431  aligncenter" title="save-the-internet" src="http://www.iarivas.com/wp-content/uploads/2010/01/save-the-internet.jpg" alt="" width="500" height="667" /></a></p>
<p>El tipo es un filosofo, a mi no me jodan.</p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/the-elder-of-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>El mejor examen</title>
		<link>http://www.iarivas.com/2010/01/el-mejor-examen/</link>
		<comments>http://www.iarivas.com/2010/01/el-mejor-examen/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 14:00:40 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=428</guid>
		<description><![CDATA[Escriba una pregunta acorde con este examen y respóndala.

Copyright &#169; 2009 Este feed es personal y de uso no comercial.  Si copias material de este blog, recuerda a su autor orginal en tu entrada. ]]></description>
			<content:encoded><![CDATA[<blockquote><p>Escriba una pregunta acorde con este examen y respóndala.</p>
</blockquote>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/el-mejor-examen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Felices pascuas idiotas</title>
		<link>http://www.iarivas.com/2010/01/felices-pascuas-idiotas/</link>
		<comments>http://www.iarivas.com/2010/01/felices-pascuas-idiotas/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 05:01:34 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Chuck Norris]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=424</guid>
		<description><![CDATA[Luego de pensar mucho cual iba a ser mi primer post del año decidi no ir al baño durante todo el dia y aguantar y para las 2 de la mañana del dia 1/1/2010 no pude contenerlo mas y lo fui a parir al baño.

Espero les parezca atractiva mi obra maestra. ^_^
Copyright &#169; 2009 Este [...]]]></description>
			<content:encoded><![CDATA[<p>Luego de pensar mucho cual iba a ser mi primer post del año decidi no ir al baño durante todo el dia y aguantar y para las 2 de la mañana del dia 1/1/2010 no pude contenerlo mas y lo fui a parir al baño.</p>
<p style="text-align: center;"><a href="http://www.iarivas.com/wp-content/uploads/2010/01/DSC005151.jpg"><img class="size-large wp-image-426  aligncenter" title="DSC00515" src="http://www.iarivas.com/wp-content/uploads/2010/01/DSC005151-768x1024.jpg" alt="" width="768" height="1024" /></a></p>
<p style="text-align: left;">Espero les parezca atractiva mi obra maestra. ^_^</p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2010/01/felices-pascuas-idiotas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jugar al pong en el browser</title>
		<link>http://www.iarivas.com/2009/12/jugar-al-pong-en-browser/</link>
		<comments>http://www.iarivas.com/2009/12/jugar-al-pong-en-browser/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 21:56:23 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Articulos]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Juegos]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=421</guid>
		<description><![CDATA[Pong Browser es un juego clasico para jugar no en una ventana del navegador,sino con las ventanas del navegador.

Pong Browser es un exelente juego generado mediante JS por la gente de stewdio, y la verdad me parece una idea genial y debo admitir que estuve jugado fácil unos 15 minutos.El track de audio fue creado por el artista sonoro [...]]]></description>
			<content:encoded><![CDATA[<p>Pong Browser es un juego clasico para jugar no en una ventana del navegador,sino <strong>con</strong> las ventanas del navegador.</p>
<p style="text-align: center;"><a href="http://stewdio.org/med/stewdio.pong.04.jpg"><img class="aligncenter" src="http://stewdio.org/med/stewdio.pong.04.jpg" alt="" width="420" height="280" /></a></p>
<p>Pong Browser es un exelente juego generado mediante JS por la gente de <a href="http://stewdio.org">stewdio</a>, y la verdad me parece una idea genial y debo admitir que estuve jugado fácil unos 15 minutos.El track de audio fue creado por el artista sonoro y músico Domingo Matar de Nine Cats música específicamente para este juego.</p>
<p>Link: <a href="http://stewdio.org/pong/">Browser Pong</a></p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2009/12/jugar-al-pong-en-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movimiento de internet en un día</title>
		<link>http://www.iarivas.com/2009/12/movimiento-de-internet-en-un-dia/</link>
		<comments>http://www.iarivas.com/2009/12/movimiento-de-internet-en-un-dia/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 19:48:48 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Noticias]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=418</guid>
		<description><![CDATA[
Visto en Geekstir
Copyright &#169; 2009 Este feed es personal y de uso no comercial.  Si copias material de este blog, recuerda a su autor orginal en tu entrada. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iarivas.com/wp-content/uploads/2009/12/internet-day.jpg"><img class="aligncenter size-full wp-image-419" title="internet-day" src="http://www.iarivas.com/wp-content/uploads/2009/12/internet-day.jpg" alt="" width="600" height="1949" /></a></p>
<p>Visto en <a href="http://www.geekstir.com/a-day-in-the-life-of-the-internet" target="_blank">Geekstir</a></p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2009/12/movimiento-de-internet-en-un-dia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webcam de Star Trek</title>
		<link>http://www.iarivas.com/2009/12/webcam-de-star-trek/</link>
		<comments>http://www.iarivas.com/2009/12/webcam-de-star-trek/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 19:46:35 +0000</pubDate>
		<dc:creator>Ignacio</dc:creator>
				<category><![CDATA[Informacion]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.iarivas.com/?p=415</guid>
		<description><![CDATA[
Esta webcam les va a encantar a los geeks, ya que tiene la forma de la U.S.S. Enterprise y además tiene unos LEDs rojos para darle un poco más de vida. En cuanto a las especificaciones técnicas, es una cámara de 300k y trabaja hasta 30 cuadros por segundo (es una webcam común y silvestre).
La webcam [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iarivas.com/wp-content/uploads/2009/12/startrek-webcam.jpg"><img class="aligncenter size-full wp-image-416" title="startrek-webcam" src="http://www.iarivas.com/wp-content/uploads/2009/12/startrek-webcam.jpg" alt="" width="400" height="458" /></a></p>
<p>Esta<strong> webcam</strong> les va a encantar a los<strong> geeks</strong>, ya que tiene la forma de la <strong>U.S.S. Enterprise</strong> y además tiene unos LEDs rojos para darle un poco más de vida. En cuanto a las especificaciones técnicas, es una cámara de 300k y trabaja hasta 30 cuadros por segundo (es una webcam común y silvestre).</p>
<p>La webcam está disponible en ThinkGeek a un precio de <a href="http://www.itsamples.com/network-activity-indicator.html" target="_blank">$22.99 dólares</a>.</p>
<p>Visto en: <a href="http://www.puntogeek.com/" target="_blank">Punto Geek</a></p>
<hr /><small>Copyright &copy; 2009<br /> Este feed es personal y de uso no comercial. <br /> Si copias material de este blog, recuerda a su autor orginal en tu entrada.<br /> </small>]]></content:encoded>
			<wfw:commentRss>http://www.iarivas.com/2009/12/webcam-de-star-trek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
