<?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>Kobo's Blog &#187; Programming</title>
	<atom:link href="http://www.kobochan.org/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kobochan.org</link>
	<description>Video Games &#124; Programming &#124; Art</description>
	<lastBuildDate>Wed, 11 Aug 2010 06:32:56 +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>Adding a Cursor in XNA</title>
		<link>http://www.kobochan.org/2010/adding-a-cursor-in-xna/</link>
		<comments>http://www.kobochan.org/2010/adding-a-cursor-in-xna/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 06:53:34 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[XNA]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[mouse]]></category>

		<guid isPermaLink="false">http://www.kobochan.org/?p=138</guid>
		<description><![CDATA[If you want to add mouse cursor functionality to your XNA project you can simply add the following in your Initialize() method: this.IsMouseVisible = true; Then of course, where&#8217;s the fun in that, right? Real cursor functionality consists on you adding your own 2D Texture to represent your mouse, this is actually pretty easy to [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to add mouse cursor functionality to your XNA project you can simply add the following in your Initialize() method:</p>
<pre class="brush: csharp;">this.IsMouseVisible = true;</pre>
<p>Then of course, where&#8217;s the fun in that, right? Real cursor functionality consists on you adding your own 2D Texture to represent your mouse, this is actually pretty easy to do, first of all, you will need the texture, typically, a cursor texture has its hotspot (The tip of the arrow from where you click) on the upper-left corner of the image. Your cursor could be any size, try not to make it too big or too small.</p>
<p>Here&#8217;s an example:<br />
<img class="alignnone size-full wp-image-139" title="cursor" src="http://www.kobochan.org/wp-content/uploads/2010/06/cursor.png" alt="" width="32" height="32" /></p>
<p>Let&#8217;s add a few global variables:</p>
<pre class="brush: csharp;">
Texture2D cursorTexture;
Vector2 cursorPosition;
</pre>
<p>Now load the texture in your LoadContent() method:</p>
<pre class="brush: csharp;">
cursorTexture = Content.Load(&quot;cursor&quot;); //Use your asset name.
</pre>
<p>On our Update() method, we&#8217;ll pass over the mouse&#8217;s position to our cursorPosition variable:</p>
<pre class="brush: csharp;">
cursorPosition.X = Mouse.GetState().X;
cursorPosition.Y = Mouse.GetState().Y;
</pre>
<p>Lastly, we need to draw our cursorTexture with the continuously changing cursorPosition, we do this of course in our Draw() method:</p>
<pre class="brush: csharp;">
spriteBatch.Begin();
spriteBatch.Draw(cursorTexture, cursorPosition, Color.White);
spriteBatch.End();
</pre>
<p>Simple as that, try it out!<br />
Happy coding! <img src='http://www.kobochan.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2010/adding-a-cursor-in-xna/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sudo make me a sandwich!</title>
		<link>http://www.kobochan.org/2009/sudo-make-me-a-sandwich/</link>
		<comments>http://www.kobochan.org/2009/sudo-make-me-a-sandwich/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 03:07:26 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sandwich]]></category>
		<category><![CDATA[sudo]]></category>

		<guid isPermaLink="false">http://www.kobochan.org/2009/sudo-make-me-a-sandwich/</guid>
		<description><![CDATA[XKCD is pretty much a comic about a programmer’s and/or mathematician&#8217;s daily dribble. Picture this, all day working on your computer, expanding your knowledge by allowing the internet to fill the void of ignorance, sometimes stuff goes in, stuff goes out, you may call this SISO. Anyways, time pretty much passes by! You tend to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/149/"><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="Proper User Policy apparently means Simon Says." src="http://www.kobochan.org/wp-content/uploads/2009/02/image.png" border="0" alt="Proper User Policy apparently means Simon Says." width="242" height="201" /></a></p>
<p><a href="http://xkcd.com/">XKCD</a> is pretty much a comic about a <a href="http://www.computerguy.tv/Photos/ComputerGuyGirls_TheGrove23June2008_Lg.jpg">programmer’s</a> and/or <a href="http://i10.photobucket.com/albums/a145/lawryde/angry-hobo.jpg">mathematician&#8217;s</a> daily dribble. Picture this, all day working on your computer, expanding your knowledge by allowing the internet to fill the void of ignorance, sometimes stuff goes in, stuff goes out, you may call this <a href="http://en.wikipedia.org/wiki/FIFO">SISO</a>. Anyways, time pretty much passes by! You tend to forget to satisfy certain bodily functions that you actually need in order to live, like <a href="http://i132.photobucket.com/albums/q3/Misselaineous10/Random%20Stuff/burger.jpg">eating</a> and of course or <a href="http://lizditz.typepad.com/photos/uncategorized/barf_boy556.jpg">drinking</a> water, whatever it is you were thinking, well that <a href="http://i533.photobucket.com/albums/ee335/ryanconnearney/Number-Two-Austin-Powers.jpg">too</a>.</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="sammich" src="http://www.kobochan.org/wp-content/uploads/2009/02/sammich.jpg" border="0" alt="sammich" width="502" height="334" /></p>
<p>So here it is! From a comic comes a brilliant idea, sure, asking for some mustard or mayo, maybe some Doritos or <a href="http://farm2.static.flickr.com/1168/1428855612_dce3c7f39d.jpg">jalapeños</a> in between is out of the question at the moment, but I truly believe the guys in this video are <a href="http://www.tubecad.com/2004/Einstein.jpg">GENIUSES</a>.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:fdfd8ce9-76a7-42a0-b8dd-b26786d3775e" class="wlWriterEditableSmartContent" style="margin: 0px auto; padding: 0px; display: block; float: none; width: 500px;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/gfkN7+EvgTM" /><embed type="application/x-shockwave-flash" width="500" height="400" src="http://blip.tv/play/gfkN7+EvgTM"></embed></object></div>
</div>
<p>One small step towards a future with <a href="http://www.youtube.com/watch?v=Je5ON5U8h2Y">ROOOBOOOTS</a>!!<br />
<em>BTW, why not click the links I post, they have funnies.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2009/sudo-make-me-a-sandwich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XNA, OOP and you!</title>
		<link>http://www.kobochan.org/2009/xna-oop-and-you/</link>
		<comments>http://www.kobochan.org/2009/xna-oop-and-you/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 04:48:44 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[object-oriented]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xbox]]></category>
		<category><![CDATA[XNA]]></category>
		<category><![CDATA[ziggyware]]></category>

		<guid isPermaLink="false">http://www.kobochan.org/2009/xna-oop-and-you/</guid>
		<description><![CDATA[I wrote this neat little article for n00bs that would like to create games for Windows and the Xbox 360 using the XNA Framework, it’s actually aimed at those who have very little programming experience. Since Object-Oriented Programming has become pretty much a standard for real software developers and engineers, game development is no exception. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kobochan.org/wp-content/uploads/2009/01/xna-oop.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="XNA_OOP" src="http://www.kobochan.org/wp-content/uploads/2009/01/xna-oop-thumb.png" border="0" alt="XNA_OOP" width="363" height="137" /></a></p>
<p>I wrote this neat little article for n00bs that would like to create games for <a href="http://www.acadiawindows.com/picts/HomeWindow-exp.jpg" target="_blank">Windows</a> and the <a href="http://farm4.static.flickr.com/3255/2300013955_18ea445180.jpg?v=0" target="_blank">Xbox</a> <a href="http://www.smithdrafting.com/p260.jpg" target="_blank">360</a> using the <a href="http://msdn.microsoft.com/en-us/xna/default.aspx" target="_blank">XNA Framework</a>, it’s actually aimed at those who have very little programming experience. Since <a href="http://en.wikipedia.org/wiki/Object-oriented_programming" target="_blank">Object-Oriented Programming</a> has become pretty much a standard for <a href="http://www.carnagecorp.com/pub/pictures/oh_i_upgraded_your_ram.jpg" target="_blank">real software developers and engineers</a>, game development is no exception. However, most beginners tend to get scared and/or confused with this simple <a href="http://en.wikipedia.org/wiki/Programming_paradigm" target="_blank">paradigm</a> that’s actually designed to make your coding EASIER.</p>
<p>So go ahead! Download it! This tutorial will guide you step by step through the basic principles of the XNA Framework while learning <a href="http://www.dixiedoodlellamas.com/Alley_Oop-Ad.jpg" target="_blank">OOP</a>, by the end of it, you’ll create a simple shooter game engine. This article was also featured in <a href="http://ziggyware.com/readarticle.php?article_id=224" target="_blank">ziggyware.com</a>.</p>
<p>[<a href="http://www.kobochan.org/assets/xna/xnaoop_260109-kobochan.org.pdf" target="_blank">Download Article (PDF)</a>]<br />
[<a href="http://kobochan.org/assets/xna/xnaoop_shooter.zip" target="_blank">Download the Sample</a>]</p>
<p>If you don’t know what the hell I’m talking about, let me refer to an older post, XNA is a collection of tools developed by <a href="http://i219.photobucket.com/albums/cc185/Plothole/sexy-bill-gates.jpg" target="_blank">Microsoft</a> for developing games for the Xbox 360 and Windows, all you need is either <a href="http://www.microsoft.com/express/vcsharp/" target="_blank">Visual C# Express 2008</a>, which is free, or <a href="http://www.microsoft.com/visualstudio/" target="_blank">Visual Studio 2008</a>, which is expensive, and of course, <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7D70D6ED-1EDD-4852-9883-9A33C0AD8FEE&amp;displaylang=en" target="_blank">XNA Game Studio Express 3.0</a>, which is also free. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2009/xna-oop-and-you/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>XNA Game Studio 3.0 Is Live!</title>
		<link>http://www.kobochan.org/2008/xna-game-studio-30-is-live/</link>
		<comments>http://www.kobochan.org/2008/xna-game-studio-30-is-live/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 20:21:18 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://www.kobochan.org/?p=27</guid>
		<description><![CDATA[YES! XNA Game Studio 3.0! Now, this is why I like Microsoft, they are just doing so many good things lately (Let us ignore Vista for now) XNA Game Studio 3.0 expands on all the offerings of earlier iterations to include additional functionality to appeal to game developers of every level and enable them to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" style="border: 0px; max-width: 800px;" src="http://www.kobochan.org/assets/xna.png" alt="" /></p>
<p style="text-align: justify;">YES! <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7D70D6ED-1EDD-4852-9883-9A33C0AD8FEE&amp;displaylang=en" target="_blank">XNA Game Studio 3.0</a>!</p>
<p>Now, this is why I like Microsoft, they are just doing so many good things lately (Let us ignore Vista for now) XNA Game Studio 3.0 expands on all the offerings of earlier iterations to include additional functionality to appeal to game developers of every level and enable them to create games to distribute through <a href="http://creators.xna.com/XboxLIVECommunityGames" target="_blank">Xbox LIVE Community Games</a> on the Xbox 360 as part of the <a href="http://www.xbox.com/en-US/live/nxe/" target="blank">New Xbox Experience</a>.</p>
<p>But that&#8217;s not all! Besides developing games for the Xbox 360 and Windows PC you can now deploy to Zune! Which of course means, I must get one! The iPod SDK is just too damn expensive!</p>
<p>What are you waiting for? <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7D70D6ED-1EDD-4852-9883-9A33C0AD8FEE&amp;displaylang=en" target="_blank">Start downloading XNA Game Studio 3.0 now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2008/xna-game-studio-30-is-live/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lanzamiento Visual Studio 2008 &#8211; Bol Bol!</title>
		<link>http://www.kobochan.org/2008/lanzamiento-visual-studio-2008-bol-bol/</link>
		<comments>http://www.kobochan.org/2008/lanzamiento-visual-studio-2008-bol-bol/#comments</comments>
		<pubDate>Tue, 20 May 2008 18:59:40 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Local]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://kobochan.org/blog/?p=10</guid>
		<description><![CDATA[La Comunidad .NET de Cd. Juárez está haciendo el lanzamiento de Visual Studio 2008. Pero en esta ocasión, quisieron hacerlo MUY diferente a como habían sido sus eventos anteriores, y en lugar de realizarlo en el ITESM, donde regularmente lo hacen, ahora consiguieron el apoyo del boliche Bol Bol. La idea es que ahora sea [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://kobochan.org/assets/vs2008.jpg" alt="Comunidad .NET - Bol Bol - Visual Studio 2008!" /></p>
<p style="text-align: justify;">La Comunidad .NET de Cd. Juárez está haciendo el lanzamiento de Visual Studio 2008. Pero en esta ocasión, quisieron hacerlo MUY diferente a como habían sido sus eventos anteriores, y en lugar de realizarlo en el ITESM, donde regularmente lo hacen, ahora consiguieron el apoyo del boliche Bol Bol. La idea es que ahora sea en un ambiente más relajado. Por otro lado, también tienen el objetivo de que los asistentes se vayan con la idea de que aprendieron algo nuevo, no solo de que fueron a un evento de mercadotecnia. Por esto, aunque inicialmente habían pensado en incluir SQL Server 2008 en las pláticas, al final decidieron no hacerlo, y solo se enfocarán en Visual Studio 2008, pero tratando de profundizar en las nuevas características que a nuestros ojos lo hacen valioso.</p>
<p><strong> * Lo nuevo en C# y en VB9.<br />
* Usando LINQ con bases de datos relacionales.<br />
* Construyendo Aplicaciones Web con VS 2008. Presentación de las nuevas herramientas.<br />
* Programación Web con Windows Communication Foundation (WCF).<br />
* Introducción a Silverlight.</strong></p>
<p>Regresando a la parte relajada del evento, Bol Bol se ha portado excelente, no solamente apoya con sus instalaciones, sino que además regalará líneas de boliche para los asistentes. Así que ya saben! Acudan al evento y no solo aprenderán sobre Visual Studio 2008, sino que además podrán jugar boliche gratis.</p>
<p>Eso no es todo, además, amigos de Dataxport también están apoyando, y gracias a ellos podremos tener refrescos y bocadillos para los asistentes. Así como algunas playeras para rifar gracias a Mister G.</p>
<p>Finalmente, para que les interese aun mas, de parte de Microsoft habrá varios paquetes de software (Windows Server 2008, SQL Server 2008, Visual Studio 2008 y Windows Vista) con licencias Full para rifar entre los asistentes.</p>
<p>Por supuesto, como todos los eventos de la Comunidad .NET de Juarez, es totalmente gratis.<br />
<span style="color: #993300;"><strong><br />
Donde: Bol Bol.<br />
Cuando: Martes 27 de Mayo 2008.<br />
Hora: 3:00 PM (2:30 Registro).<br />
Cuanto: NADA! Totalmente Gratis!</strong></span></p>
<p>Spread the word!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2008/lanzamiento-visual-studio-2008-bol-bol/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Raptor Attacks!</title>
		<link>http://www.kobochan.org/2008/raptor-attacks/</link>
		<comments>http://www.kobochan.org/2008/raptor-attacks/#comments</comments>
		<pubDate>Thu, 08 May 2008 04:56:11 +0000</pubDate>
		<dc:creator>Kobo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Jesus]]></category>
		<category><![CDATA[Mayan]]></category>
		<category><![CDATA[n00b]]></category>
		<category><![CDATA[Raptor]]></category>

		<guid isPermaLink="false">http://kobochan.org/blog/?p=7</guid>
		<description><![CDATA[God! What a horrible day it was, getting attacked by a Raptor at 9:00 AM IS NOT COOL. No, it isn&#8217;t, I don&#8217;t care what your definition of cool is, seriously&#8230; Yeah, if it were Raptor Jesus, that would&#8217;ve been cool, or an Orbital Frame&#8230;but no, I&#8217;m referring to something more evil! More sinister! Vile [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">God! What a horrible day it was, getting attacked by a <a title="Raptor?" href="http://en.wikipedia.org/wiki/Raptor" target="_blank">Raptor</a> at 9:00 AM <strong>IS NOT COOL</strong>. No, it isn&#8217;t, I don&#8217;t care what your definition of cool is, seriously&#8230;</p>
<p style="text-align: center;"><img src="http://kobochan.org/assets/raptorRise.jpg" alt="Raptor Jesus" width="278" height="399" /></p>
<p style="text-align: justify;">Yeah, if it were <a title="Raptor Jesus?" href="http://www.encyclopediadramatica.com/index.php/Raptorjesus">Raptor Jesus</a>, that would&#8217;ve been cool, or an <a title="Orbital Frame?" href="http://en.wikipedia.org/wiki/Zone_of_the_Enders_(series)">Orbital Frame</a>&#8230;but no, I&#8217;m referring to something more evil! More sinister! Vile and Satanic! Not a dinosaur either, other adjectives include: &#8220;malefic, wicked, depraved, vicious and so on&#8230;&#8221;, but the one that describes it the best is&#8230;dumb. Yes, <strong>DUMB</strong>:</p>
<p style="text-align: center;"><a href="http://kobochan.org/assets/raptor.png" target="_blank"><img src="http://kobochan.org/assets/traptor.jpg" alt="Raptor Thumbnail" width="363" height="282" /></a></p>
<p style="text-align: center;"><span style="color: #888888;"><em>[Click it for a bigger size of this stupidity]</em></span></p>
<p style="text-align: justify;">It&#8217;s <strong>RAPTOR</strong>! An acronym actually, stands for <strong>Rapid Algorithmic Prototyping Tool for Ordered Reasoning</strong>, clever. BUT! What a horrible thing to use! I know it&#8217;s supposed to be used by beginner programmers, so why the hell do experienced, heck, I dare say it, <span style="color: #888888;"><a title="Tacos con Crema" href="http://www.seamlessweb.com/finedining/img/VendorMenuPlusTabContentImages/lg_1711_5.jpg"><em>(Por echarme crema a mis tacos)</em></a></span> professional programmers, use it? Quoting my teacher:</p>
<blockquote>
<p style="text-align: justify;"><em>So you can remember the basic principles of programming and using arrays without those advanced tools you&#8217;ve grown so used to.</em></p>
</blockquote>
<p style="text-align: justify;">OK, fine, she has a point, but those wonderful <strong>SQL Databases</strong> and <strong>Queries </strong>are what make programming <strong>EZ</strong>. But I digress, the purpose of this rant is, that I could&#8217;ve finished a stupid exercise in 3 minutes in <a title="C#" href="http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29">C#</a> instead of using this compiler piece of crud without <a href="http://en.wikipedia.org/wiki/Data_Definition_Language">DDL compatibility</a>, that&#8217;s right, I had to use <a title="Array" href="http://en.wikipedia.org/wiki/Array">Arrays</a> to save data. Raptor Jesus, do you know how long it took me!? 3 damn hours, <strong>THREE</strong>.</p>
<p>This thing goes beyond the scopes of practical programming for beginners, it screws data types and you have to write ALL the code, so, something as beautiful as this:</p>
<blockquote><p><code><span style="color: #0000ff;">for</span>(<span style="color: #0000ff;">int</span> i=0;i&lt;=5;i++)<br />
{<br />
<span style="color: #008000;">//do something.</span><br />
}</code></p></blockquote>
<p>Will look horribly like this:</p>
<p style="text-align: center;"><img src="http://kobochan.org/assets/horribleFor.jpg" alt="Horrible For" width="245" height="325" /></p>
<p style="text-align: center;"><span style="color: #888888;"><em>[Oh, did I mention you can't use 0 to initialize variables, nor point to arrays with it, I mean, seriously, WTF, those poor <a title="Mayan?" href="http://en.wikipedia.org/wiki/Maya_civilization">Mayans</a> invented the damn number for a reason! And yeah, notice the condition for the Loop. You see it? Compare it with the For's condition if you don't see it, then laugh maniacly]</em></span></p>
<p style="text-align: justify;">Anyways, this is a horrible way for <a title="noob!" href="http://images.wikia.com/uncyclopedia/images/2/25/Noobsensor.jpg">n00bs</a> to begin programming, what makes me sad is that this is not an old application! That last version got out on<em> May 18th, 2007</em>. The worst part is, this is what they use to teach programming methods at <a title="UACJ" href="http://www.uacj.mx/">UACJ</a>. Kill me. You want my suggestion, try coding in <strong>C#</strong> or<strong> C++</strong>, even if you are n00b, there are a lot of awesome guides and tutorials, visit <a href="http://msdn.microsoft.com/en-us/beginner/bb964631.aspx">MSDN</a> if you are into C# <em>(The future in Windows Programming and <strong>ASP.NET</strong>)</em>, you learn the basics while working with the hard stuff.</p>
<p style="text-align: justify;">So yeah, what a dumb program to use, but it was perfect for a dumb rant heh~ Anyways&#8230;</p>
<p style="text-align: center;"><img src="http://kobochan.org/assets/post.png" alt="Post Tits or GTFO" width="538" height="307" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobochan.org/2008/raptor-attacks/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
