<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Orlando Dojo</title>
	<atom:link href="http://orlandodojo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://orlandodojo.wordpress.com</link>
	<description>The Orlando Coding Dojo Group</description>
	<lastBuildDate>Fri, 05 Feb 2010 23:22:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='orlandodojo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Orlando Dojo</title>
		<link>http://orlandodojo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://orlandodojo.wordpress.com/osd.xml" title="Orlando Dojo" />
	<atom:link rel='hub' href='http://orlandodojo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Session 3 Review &#8211; The Calculator</title>
		<link>http://orlandodojo.wordpress.com/2010/02/05/session-3-review-the-calculator/</link>
		<comments>http://orlandodojo.wordpress.com/2010/02/05/session-3-review-the-calculator/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 16:41:22 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=52</guid>
		<description><![CDATA[What a great time we had at our third Coding Dojo session yesterday! If you weren&#8217;t one of the 10 people that were there, I&#8217;m afraid you might have missed great conversations and the perfect opportunity to sharpen your &#8220;coding blade&#8221;. http://www.flickr.com/photos/jhandelman/3642432193/ Our challenge this time was to code a basic calculator. Using a 7-minute [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=52&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What a great time we had at our third Coding Dojo session yesterday!</p>
<p>If you weren&#8217;t one of the 10 people that were there, I&#8217;m afraid you might have missed great conversations and the perfect opportunity to sharpen your &#8220;coding blade&#8221;.</p>
<p style="text-align:center;"><a href="http://orlandodojo.files.wordpress.com/2010/02/ninja_blade.jpg"><img class="size-medium wp-image-56 aligncenter" style="border:0 initial initial;" title="ninja_blade" src="http://orlandodojo.files.wordpress.com/2010/02/ninja_blade.jpg?w=300&#038;h=199" alt="" width="300" height="199" /></a></p>
<p style="text-align:center;">http://www.flickr.com/photos/jhandelman/3642432193/</p>
<p>Our challenge this time was to code a basic calculator. Using a 7-minute timebox for every <a href="http://en.wikipedia.org/wiki/Pair_programming">programming pair,</a> everyone there got a chance to code some PHP. The final version of our calculator is available at <a href="http://github.com/orlandophp/02-Calculator">the OrlandoPHP github account</a>.</p>
<p>We had very interesting topics coming up during our session, such as <a href="http://en.wikipedia.org/wiki/Exception_handling">exception handling</a>, <a href="http://en.wikipedia.org/wiki/Type_system">type systems</a> and <a href="http://en.wikipedia.org/wiki/XUnit">xUnit</a> testing conventions.</p>
<p>At a given point, we were surprised to see how PHP reacted when a function was invoked with more parameters than the ones defined in its signature. We were in a situation where we had the following function:</p>
<pre><code>
public function add($num1, $num2){ ... }

</code></pre>
<p>and we wrote a test expecting to throw some sort of syntax error:</p>
<pre><code>
$result = $calculator-&gt;add(5,5,10)
$this-&gt;assertEquals(20, $result);

</code></pre>
<p>But instead, we got an assertion error:</p>
<pre><code>
1) 5+5+10 should equal 20 but got 10 at [/Users/caike/Projects/Katas/02-Calculator/CalculatorTest.php line 92]
	in test_add_multvals
	in CalculatorTest
FAILURES!!!
Test cases run: 1/1, Passes: 9, Failures: 1, Exceptions: 0

</code></pre>
<p>In this case, we figured PHP behaves just like JavaScript and simply ignores all of the arguments that exceed the ones defined in the signature of the function. Humm&#8230; interesting.</p>
<p>After our coding, we did a <a href="http://agileretrospectivewiki.org/index.php?title=Main_Page">retrospective</a> and the following points were raised:</p>
<ul>
<li>Everyone actually got to pilot <em>and</em> co-pilot this time!</li>
<li>Technically, we shouldn’t rag the pair so much while they’re coding.</li>
<li>We should probably get to a standard EDITOR.</li>
<li>Practical applications? What about the <a href="http://sites.google.com/site/tddproblems/all-problems-1">Google TDD Problems</a></li>
<li>Let’s get food next time! <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Need a mouse, too…</li>
</ul>
<p>Make sure you join our <a href="groups.google.com/group/orlando-dojo?hl=en">google group</a> to know when our March session is going to take place.</p>
<p>Looking forward to seeing <strong>you</strong> there!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=52&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2010/02/05/session-3-review-the-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2010/02/ninja_blade.jpg?w=300" medium="image">
			<media:title type="html">ninja_blade</media:title>
		</media:content>
	</item>
		<item>
		<title>Session #3</title>
		<link>http://orlandodojo.wordpress.com/2010/02/03/session-3/</link>
		<comments>http://orlandodojo.wordpress.com/2010/02/03/session-3/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 18:40:39 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=49</guid>
		<description><![CDATA[Tomorrow, February 4th, we will hold our third Coding Dojo session together with our friends from the Orlando PHP User Group. If you want to come hack with us and exercise your agile techniques such as pair-programming, test driven development, refactoring, SOLID principles and others, feel free to join us at 7PM at the following [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=49&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tomorrow, February 4th, we will hold our third Coding Dojo session together with our friends from the <a href="http://meetup.orlandophp.org/">Orlando PHP User Group</a>.</p>
<p>If you want to come hack with us and exercise your agile techniques such as <a href="http://en.wikipedia.org/wiki/Pair_programming">pair-programming</a>, <a href="http://en.wikipedia.org/wiki/Test-driven_development">test driven development</a>, <a href="http://en.wikipedia.org/wiki/Code_refactoring">refactoring</a>, <a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod">SOLID principles</a> and others, feel free to join us at 7PM at the following location:</p>
<p>Camden apartments in downtown Orlando – courtesy of Demetrius Ford, our resident resident and official “Location Coordinator” for the <a href="http://meetup.orlandophp.org/">OrlandoPHP</a>.</p>
<p>The address is:</p>
<p>688 N Orange Ave<br />
Orlando, FL 32801<br />
(<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=668+N+Orange+Ave,+Orlando,+FL+32801&amp;sll=28.552474,-81.379214&amp;sspn=0.011346,0.017574&amp;ie=UTF8&amp;ll=28.553182,-81.379209&amp;spn=0.011346,0.017574&amp;z=16&amp;iwloc=A">map</a>)</p>
<p>You can park in the parking lot in front of the complex and in the adjacent lot, just not in the garage. The clubhouse is inside the main complex, secured by a maglock, and it’s super sweet. We’ll try to leave someone outside to lead people in, but try to come earlier rather than later.</p>
<p>If you get locked out, just ping one of us by cell phone (321-352-1689) or Twitter; we will try to keep an eye on the @orlandophp account and #orlandodojo.</p>
<p>For more info, check out the <a href="http://meetup.orlandophp.org/calendar/12013364/">orlando php meet up group</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=49&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2010/02/03/session-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>
	</item>
		<item>
		<title>Second Session Review</title>
		<link>http://orlandodojo.wordpress.com/2010/01/08/second-session-review/</link>
		<comments>http://orlandodojo.wordpress.com/2010/01/08/second-session-review/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 22:19:36 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=41</guid>
		<description><![CDATA[We had our second Orlando coding dojo session yesterday together with the Orlando PHP user group. Since the only ones there that were also in the first session at ColabOrlando were David Rogers, David Harris and me, we chose to code the same CodeBreaker problem but this time, naturally, using PHP. Actually before the dojo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=41&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We had our second Orlando coding dojo session yesterday together with the <a href="http://meetup.orlandophp.org/">Orlando PHP user group</a>. Since the only ones there that were also in the first session at ColabOrlando were <a href="http://meetup.orlandophp.org/members/6528870/">David Rogers</a>, <a href="http://meetup.orlandophp.org/members/8680854/">David Harris</a> and <a href="http://meetup.orlandophp.org/members/10428868/">me</a>, we chose to code the same <a href="http://github.com/orlandophp/01-CodeBreaker">CodeBreaker</a> problem but this time, naturally, using PHP.</p>
<p>Actually before the dojo session we had a nice conversation about <a href="http://www.extremeprogramming.org/rules/userstories.html">user stories</a> and the <a href="http://en.wikipedia.org/wiki/Planning_poker">planning poker technique</a>, where David Rogers shared his experience using these agile practices in his own company.</p>
<p><a href="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-36-53.jpg"><img class="aligncenter size-medium wp-image-42" title="David Rogers" src="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-36-53.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>We spent about 20 minutes talking about the problem and presenting the tools to the 11 participants. For this session we used <a href="http://www.phpunit.de/">PHPUnit</a> as the testing framework and Eclipse as our IDE/text editor.</p>
<p><a href="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-37-07.jpg"><img class="aligncenter size-medium wp-image-46" title="talking about the problem" src="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-37-07.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Hardcore test driven development went on for about 40 minutes, where each pair had 7 minutes of coding.</p>
<p><a href="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-04-59.jpg"><img class="aligncenter size-medium wp-image-43" title="pair programming" src="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-04-59.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>After a few cycles we did a retrospective of what we&#8217;d done so far. Very interesting points were discussed:</p>
<p>1. There is a moment where the simplest thing that could possibly work starts turning into the stupidest thing that works and we find ourselves in a mess.</p>
<p>2. We should never test the language/platform. But how about when we have a business requirement that says, for example, once a price is assigned to a product then it must never be changed and we choose to meet that requirement by using a private instance variable ? Is there a way to write a test for that without &#8216;testing the platform&#8217; ?</p>
<p>3. The Code Breaker problem involved testing a single external behaviour. Only one public method was being tested &#8211; besides the constructor &#8211; so getting the problem solved was all about using different input values and checking for the expected output.</p>
<p><a href="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-12-07.jpg"><img class="aligncenter size-medium wp-image-44" title="participants" src="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-12-07.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>The Coding Dojo is all about exercising our techniques and being exposed to new ones. We all end up learning new things, even if it&#8217;s just a different keyboard shortcut that will save us a couple of seconds typing.</p>
<p>I hope everyone had a good time and make sure to join our <a href="http://groups.google.com/group/orlando-dojo">google group</a> in case you haven&#8217;t already!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=41&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2010/01/08/second-session-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-36-53.jpg?w=300" medium="image">
			<media:title type="html">David Rogers</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-19-37-07.jpg?w=300" medium="image">
			<media:title type="html">talking about the problem</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-04-59.jpg?w=300" medium="image">
			<media:title type="html">pair programming</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2010/01/2010-01-07-20-12-07.jpg?w=300" medium="image">
			<media:title type="html">participants</media:title>
		</media:content>
	</item>
		<item>
		<title>Session #2</title>
		<link>http://orlandodojo.wordpress.com/2010/01/07/session-2/</link>
		<comments>http://orlandodojo.wordpress.com/2010/01/07/session-2/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 04:23:44 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=35</guid>
		<description><![CDATA[Hey, guys! I hope everyone had a great holiday and did not forget to include &#8216;LOTS OF PROGRAMMING PRACTICE&#8217; in your new year&#8217;s resolution list Our second Coding Dojo session will be held tomorrow, February 7th with the local PHP group. We&#8217;ll be doing the Randori Kata, where everyone who wants to participate gets a swing at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=35&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey, guys!</p>
<p>I hope everyone had a great holiday and did not forget to include &#8216;LOTS OF PROGRAMMING PRACTICE&#8217; in your new year&#8217;s resolution list <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Our second Coding Dojo session will be held tomorrow, February 7th with the local PHP group. We&#8217;ll be doing the Randori Kata, where everyone who <em>wants</em> to participate gets a swing at pair programming. Should be fun.</p>
<p>The meeting will be held at the clubhouse at Camden apartments in downtown Orlando &#8211; courtesy of Demetrius Ford, our resident resident and official &#8220;Location Coordinator&#8221; for the <a href="http://meetup.orlandophp.org/">OrlandoPHP</a>.</p>
<p>The address is:</p>
<p>688 N Orange Ave<br />
Orlando, FL 32801<br />
(<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=668+N+Orange+Ave,+Orlando,+FL+32801&amp;sll=28.552474,-81.379214&amp;sspn=0.011346,0.017574&amp;ie=UTF8&amp;ll=28.553182,-81.379209&amp;spn=0.011346,0.017574&amp;z=16&amp;iwloc=A">map</a>)</p>
<p>You can park in the parking lot in front of the complex and in the adjacent lot, just not in the garage. The clubhouse is inside the main complex, secured by a maglock, and it&#8217;s super sweet. We&#8217;ll try to leave someone outside to lead people in, but try to come earlier rather than later. If you get locked out, just ping one of us by cell phone or Twitter; we will try to keep an eye on the @orlandophp account and #orlandodojo.</p>
<p>For more info, check out the <a href="http://meetup.orlandophp.org/calendar/12013364/">orlando php meet up group</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=35&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2010/01/07/session-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>
	</item>
		<item>
		<title>First Session Review</title>
		<link>http://orlandodojo.wordpress.com/2009/12/13/first-session-review/</link>
		<comments>http://orlandodojo.wordpress.com/2009/12/13/first-session-review/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 02:31:01 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=24</guid>
		<description><![CDATA[Thanks to everyone who made it to our first session on thursday! We formed groups of 2 or 3 people who paired in their language of choice in order to solve the Code Breaker problem. After one hour of coding, we did a little retrospective and each group presented their approach to the solution along [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=24&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks to everyone who made it to our first session on thursday! We formed groups of 2 or 3 people who paired in their language of choice in order to solve the Code Breaker problem. After one hour of coding, we did a little retrospective and each group presented their approach to the solution along with thoughts about the session. We all had a great time!</p>
<p><a href="http://orlandodojo.files.wordpress.com/2009/12/dojo_1.jpg"><img class="aligncenter size-medium wp-image-25" title="dojo_1" src="http://orlandodojo.files.wordpress.com/2009/12/dojo_1.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Feel free to look around our <a href="http://github.com/codedojo/01-CodeBreaker/network">github network for the Code Breaker</a> and look at each other&#8217;s solution.</p>
<p>Thanks Gregg for setting up the problem and having us at <a href="http://colabusa.com/">Colab Orlando</a>. Great place!</p>
<p>We&#8217;re holding our next session in the upcoming PHP user group meeting on January 7th. If you&#8217;re interested in joining us, checkout <a href="http://meetup.orlandophp.org">http://meetup.orlandophp.org</a> for more info on that.</p>
<p>I wish everyone a good holiday and hope to see you all soon!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=24&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2009/12/13/first-session-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>

		<media:content url="http://orlandodojo.files.wordpress.com/2009/12/dojo_1.jpg?w=300" medium="image">
			<media:title type="html">dojo_1</media:title>
		</media:content>
	</item>
		<item>
		<title>Session #1 &#8211; Colab Orlando</title>
		<link>http://orlandodojo.wordpress.com/2009/12/03/session-1-colab-orlando/</link>
		<comments>http://orlandodojo.wordpress.com/2009/12/03/session-1-colab-orlando/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 22:12:25 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://orlandodojo.wordpress.com/?p=10</guid>
		<description><![CDATA[We&#8217;re having our first Coding Dojo session on Thursday of next week at Colab Orlando. Check our google group for more info. See you guys there!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=10&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re having our first Coding Dojo session on Thursday of next week at Colab Orlando. Check our <a href="http://groups.google.com/group/orlando-dojo/browse_thread/thread/e87996d0b76d4b0a">google group</a> for more info.</p>
<p>See you guys there!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=10&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2009/12/03/session-1-colab-orlando/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome</title>
		<link>http://orlandodojo.wordpress.com/2009/11/13/welcome/</link>
		<comments>http://orlandodojo.wordpress.com/2009/11/13/welcome/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 05:13:51 +0000</pubDate>
		<dc:creator>caikesouza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is the home of the Orlando Coding Dojo group. We have just officially started and would be glad to have you join us for a session. All skill levels are welcome! For more info: http://groups.google.com/group/orlando-dojo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=1&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is the home of the Orlando Coding Dojo group.</p>
<p>We have just officially started and would be glad to have you join us for a session.</p>
<p>All skill levels are welcome!</p>
<p>For more info: <a href="http://groups.google.com/group/orlando-dojo">http://groups.google.com/group/orlando-dojo</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/orlandodojo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/orlandodojo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/orlandodojo.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=orlandodojo.wordpress.com&amp;blog=10464909&amp;post=1&amp;subd=orlandodojo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://orlandodojo.wordpress.com/2009/11/13/welcome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9958009345c43a8461e8673fbd0ae256?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caikesouza</media:title>
		</media:content>
	</item>
	</channel>
</rss>
