<?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>Ib Quezada</title>
	<atom:link href="http://ibquezada.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ibquezada.com</link>
	<description>Just another software developer blog</description>
	<lastBuildDate>Mon, 16 Apr 2012 18:08:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>PHP Interfaces vs. Abstact classes</title>
		<link>http://ibquezada.com/php-interfaces-vs-abstact-classes/</link>
		<comments>http://ibquezada.com/php-interfaces-vs-abstact-classes/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 17:57:21 +0000</pubDate>
		<dc:creator>IbQuezada</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[abstract class]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://ibquezada.com/?p=40</guid>
		<description><![CDATA[I&#8217;ve been reading a lot about OOP in PHP, and I&#8217;ve noticed that these concepts may be confusing since they seem to work the same way. &#160; Interfaces Interfaces allow you to define methods a class implementing the interface and how to handle them. All the methods specified in an interface must be implemented in [...]<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_39564768"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_39564768'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/php-interfaces-vs-abstact-classes\/","customTitle":"PHP Interfaces vs. Abstact classes","publisher_key":"avm-05130","code_id":39564768};})(window);
                        //-->
                    </script></div></div>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading a lot about OOP in PHP, and I&#8217;ve noticed that these concepts may be confusing since they seem to work the same way.</p>
<p>&nbsp;</p>
<h3><strong>Interfaces</strong></h3>
<p>Interfaces allow you to define methods a class implementing the interface and how to handle them.<br />
All the methods specified in an interface must be implemented in a class.</p>
<pre class="brush:php">interface GeometricShape {
    public function getArea();
    public function draw();
    // ...
}</pre>
<p class="brush:php">Features of an Interface:</p>
<ul>
<li>A class can implement several interfaces.</li>
<li>Interface constant cannot be overridden.</li>
<li>Methods cannot contain code/logic.</li>
<li>Methods must be public.</li>
<li>Slower than abstract classes</li>
</ul>
<h3 class="brush:php">Abstract Classes</h3>
<p>Abstract classes look like interfaces but, this abstract classes can define methods, in other words, you can put a &#8220;default&#8221; logic to the abstract class methods.</p>
<p>&nbsp;</p>
<pre class="brush:php">abstract class GeometricShape {
    abstract protected function getArea() {
        // You can add some "default" code here
        return 0;
    }
}</pre>
<p>Features of Abstract Classes</p>
<ul>
<li>A class can only extend one abstract class.</li>
<li>Constrants can be overridden.</li>
<li>Methods can contain logic (i.e. default code which can be overridden).</li>
<li>Shared code can be in abstract classes.</li>
<li>Fast.</li>
</ul>
<p>&nbsp;</p>
<p>There are more features you can find in an interface or an abstract class, however I don&#8217;t recall them right now <img src='http://ibquezada.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<ul>
<li><a href="http://php.net/manual/en/language.oop5.interfaces.php ">http://php.net/manual/en/language.oop5.interfaces.php</a></li>
<li><a href="http://php.net/manual/en/language.oop5.interfaces.php ">http://www.php.net/manual/en/language.oop5.abstract.php</a></li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_99363990"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_99363990'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/php-interfaces-vs-abstact-classes\/","customTitle":"PHP Interfaces vs. Abstact classes","publisher_key":"avm-05130","code_id":99363990};})(window);
                        //-->
                    </script></div></div><div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_94416383"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_94416383'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/php-interfaces-vs-abstact-classes\/","customTitle":"PHP Interfaces vs. Abstact classes","publisher_key":"avm-05130","code_id":94416383};})(window);
                        //-->
                    </script></div></div>]]></content:encoded>
			<wfw:commentRss>http://ibquezada.com/php-interfaces-vs-abstact-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Game Design</title>
		<link>http://ibquezada.com/game-design/</link>
		<comments>http://ibquezada.com/game-design/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 00:57:39 +0000</pubDate>
		<dc:creator>IbQuezada</dc:creator>
				<category><![CDATA[GameDev]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game design]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[videogame]]></category>

		<guid isPermaLink="false">http://ibquezada.com/?p=34</guid>
		<description><![CDATA[This post was inspired by a JDGamer, in his post titled &#8220;Design Before Development &#8211; An Important Lesson&#8220;, I read the post and it says: nothing but the truth!. There is this, group of friends I have (including me) with a common goal: we want to make a videogame, but, we have tried to do [...]<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_64968995"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_64968995'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/game-design\/","customTitle":"Game Design","publisher_key":"avm-05130","code_id":64968995};})(window);
                        //-->
                    </script></div></div>]]></description>
			<content:encoded><![CDATA[<p>This post was inspired by a <a href="http://www.jdgamer.com/">JDGamer</a>, in his post titled &#8220;<a href="http://www.jdgamer.com/design-before-development/">Design Before Development &#8211; An Important Lesson</a>&#8220;, I read the post and it says: nothing but the truth!.</p>
<p>There is this, group of friends I have (including me) with a common goal: we <strong>want to make a videogame</strong>, but, we have tried to do this for a long, long time now, looks like whatever we plan, it always get stucked. I&#8217;ve been asking me &#8220;why we can&#8217;t make a videogame?&#8221;.</p>
<p>Well, it seems like we always say we want to make a videogame and immediately after we start to code / draw, so, we are meeting again, and I&#8217;ll ask a lot of questions, like:</p>
<ul>
<li>What kind of videogame are we developing?</li>
<li>What is the fun factor of it?</li>
<li>How complex do we intend to do this game? Is it casual? is it hardcore?</li>
<li>What can I do for the project to succeed?</li>
</ul>
<p>These questions, and probably many more will come to my head, but perhaps, this time, we can do something, with a <strong>well-thought </strong>base idea.</p>
<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_33832870"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_33832870'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/game-design\/","customTitle":"Game Design","publisher_key":"avm-05130","code_id":33832870};})(window);
                        //-->
                    </script></div></div><div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_10073983"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_10073983'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/game-design\/","customTitle":"Game Design","publisher_key":"avm-05130","code_id":10073983};})(window);
                        //-->
                    </script></div></div>]]></content:encoded>
			<wfw:commentRss>http://ibquezada.com/game-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unity3D + ex2D</title>
		<link>http://ibquezada.com/unity3d-ex2d/</link>
		<comments>http://ibquezada.com/unity3d-ex2d/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 23:46:43 +0000</pubDate>
		<dc:creator>IbQuezada</dc:creator>
				<category><![CDATA[GameDev]]></category>
		<category><![CDATA[Unity3D]]></category>
		<category><![CDATA[2d]]></category>
		<category><![CDATA[2d in unity]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[ex2D]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[unity3d]]></category>

		<guid isPermaLink="false">http://ibquezada.com/?p=30</guid>
		<description><![CDATA[Hey I&#8217;m back!, today, I&#8217;m testing this extension for Unity3D called ex2D which (as its website says) is a highly integrated 2D-sprite-related development extension for Unity. It aims at providing high performance 2D sprite/UI solution inside Unity, with a specific focus on creating tons of cutting-edge sprite animations and other content in complicated Unity scenes, while still maintaining great performance [...]<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_7836125"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_7836125'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/unity3d-ex2d\/","customTitle":"Unity3D + ex2D","publisher_key":"avm-05130","code_id":7836125};})(window);
                        //-->
                    </script></div></div>]]></description>
			<content:encoded><![CDATA[<p>Hey I&#8217;m back!, today, I&#8217;m testing this extension for <strong>Unity3D </strong>called <strong>ex2D</strong> which (as its website says) is a highly integrated <strong>2D-sprite-related</strong> development extension for<strong> Unity</strong>. It aims at providing high performance <strong>2D sprite/UI solution</strong> inside<strong> Unity</strong>, with a specific focus on creating tons of cutting-edge sprite animations and other content in complicated Unity scenes, while still maintaining great performance on mobile devices.</p>
<p>I really like this tool and it&#8217;s really worth the price ($25 USD). If you are using <strong>Unity</strong> and you want to make a <strong>2D </strong>game, try <strong>ex2D</strong> you wont be dissapointed.</p>
<p>When you are in Unity, it looks something like this (depending on your projects art <img src='http://ibquezada.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ):</p>
<p><a href="http://ibquezada.com/wp-content/uploads/2012/02/shot1.png"><img class="aligncenter size-medium wp-image-32" title="ex2D" src="http://ibquezada.com/wp-content/uploads/2012/02/shot1-300x175.png" alt="" width="300" height="175" /></a></p>
<p>I&#8217;m starting this project, it is a 2D side scroller, and the 2D/3D mixing looks really nice:</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/ht2UFnpIbZY?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/ht2UFnpIbZY?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>Official ex2D website: <a href="http://www.ex-dev.com/ex2d/">http://www.ex-dev.com/ex2d/</a></p>
<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_88959431"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_88959431'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/unity3d-ex2d\/","customTitle":"Unity3D + ex2D","publisher_key":"avm-05130","code_id":88959431};})(window);
                        //-->
                    </script></div></div><div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_85355071"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_85355071'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/unity3d-ex2d\/","customTitle":"Unity3D + ex2D","publisher_key":"avm-05130","code_id":85355071};})(window);
                        //-->
                    </script></div></div>]]></content:encoded>
			<wfw:commentRss>http://ibquezada.com/unity3d-ex2d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videos when I played with Unity3D</title>
		<link>http://ibquezada.com/videos-when-i-played-with-unity3d/</link>
		<comments>http://ibquezada.com/videos-when-i-played-with-unity3d/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 20:58:19 +0000</pubDate>
		<dc:creator>IbQuezada</dc:creator>
				<category><![CDATA[GameDev]]></category>
		<category><![CDATA[Unity3D]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gamedev]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[unity3d]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ibquezada.com/?p=17</guid>
		<description><![CDATA[These are some videos I recorded when I was playing with Unity3D and followed a tutorial: &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_54932725"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_54932725'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/videos-when-i-played-with-unity3d\/","customTitle":"Videos when I played with Unity3D","publisher_key":"avm-05130","code_id":54932725};})(window);
                        //-->
                    </script></div></div>]]></description>
			<content:encoded><![CDATA[<p>These are some videos I recorded when I was playing with Unity3D and followed a tutorial:</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/DmHoRG7gQCY?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/DmHoRG7gQCY?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<p><span id="more-17"></span><!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/uWcj4m9t-NI?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/uWcj4m9t-NI?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object></p>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/ucG7q-3_36U?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/ucG7q-3_36U?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/DrdUqnnRsxk?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/DrdUqnnRsxk?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p><!--more--></p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/qJuFoql2DEo?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/qJuFoql2DEo?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/eqhM_obVRM8?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/eqhM_obVRM8?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/a2Gt9wRBVRc?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/a2Gt9wRBVRc?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/BotaZGEP-sI?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/BotaZGEP-sI?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<!-- Enhanced YouTube Shortcode -->
<object style="height: 355px; width: 425px">
<param name="movie" value="http://www.youtube.com/v/UUhLoxnpWWA?version=3&fs=1&autohide=1&modestbranding=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/UUhLoxnpWWA?version=3&fs=1&autohide=1&modestbranding=1&rel=0" type="application/x-shockwave-flash"	allowfullscreen="true" 
allowScriptAccess="always" width="425" height="355"></embed>
</object>
<p>&nbsp;</p>
<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_74610708"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_74610708'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/videos-when-i-played-with-unity3d\/","customTitle":"Videos when I played with Unity3D","publisher_key":"avm-05130","code_id":74610708};})(window);
                        //-->
                    </script></div></div><div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_19015653"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_19015653'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/videos-when-i-played-with-unity3d\/","customTitle":"Videos when I played with Unity3D","publisher_key":"avm-05130","code_id":19015653};})(window);
                        //-->
                    </script></div></div>]]></content:encoded>
			<wfw:commentRss>http://ibquezada.com/videos-when-i-played-with-unity3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://ibquezada.com/hello-world/</link>
		<comments>http://ibquezada.com/hello-world/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 18:57:03 +0000</pubDate>
		<dc:creator>IbQuezada</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://ibquezada.com/?p=1</guid>
		<description><![CDATA[Welcome to my personal blog, where I&#8217;ll be posting, mostly, about software development, let&#8217;s see how it goes<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_11881110"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_11881110'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/hello-world\/","customTitle":"Hello world!","publisher_key":"avm-05130","code_id":11881110};})(window);
                        //-->
                    </script></div></div>]]></description>
			<content:encoded><![CDATA[<p>Welcome to my personal blog, where I&#8217;ll be posting, mostly, about software development, let&#8217;s see how it goes <img src='http://ibquezada.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_51832776"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_51832776'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/hello-world\/","customTitle":"Hello world!","publisher_key":"avm-05130","code_id":51832776};})(window);
                        //-->
                    </script></div></div><div align="right"><div class="sharexyWidgetNoindexUniqueClassName"><div id="shr_32205326"></div></div><div><script type='text/javascript'><!--
                        (function(w){
                            if (!w.SharexyWidget) {w.SharexyWidget = {Params : {}};}
                            w.SharexyWidget.Params['shr_32205326'] = {"user_id":"AVM-05130","design":"classic","layout_static":"h","type":"st","mode_float":"l","size_float":"32","size_static":"32","buzz":"1","services":["facebook","twitter","stumbleupon","linkedin"],"url":"current","allways_show_ads":0,"show_ads_sharing":0,"show_ads_cursor":0,"bg_float":"0","bg_color":"#f1f1f1","labels":"","counters":"1","counters_float":"0","retweet@username":"retweetmeme","popup_bot_a":0,"customLink":"http:\/\/ibquezada.com\/hello-world\/","customTitle":"Hello world!","publisher_key":"avm-05130","code_id":32205326};})(window);
                        //-->
                    </script></div></div>]]></content:encoded>
			<wfw:commentRss>http://ibquezada.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

