<?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>ORTHOcoders &#187; Presentations</title>
	<atom:link href="http://orthocoders.com/category/presentations/feed/" rel="self" type="application/rss+xml" />
	<link>http://orthocoders.com</link>
	<description>U can code it, we can help</description>
	<lastBuildDate>Thu, 22 Jul 2010 20:14:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Real world BDD introduction</title>
		<link>http://orthocoders.com/2010/05/26/real-world-bdd-introduction/</link>
		<comments>http://orthocoders.com/2010/05/26/real-world-bdd-introduction/#comments</comments>
		<pubDate>Thu, 27 May 2010 02:58:40 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[BDD]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[PrairieDevCon]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=162</guid>
		<description><![CDATA[Getting ready for PrairieDevCon
Next week I’ll be presenting at the PrairieDevCon in Regina and one of my presentations is about Behavior Driven Development, how to apply it using .NET tools like SpecFlow, Nunit, Watin, Cassini, MbUnit, etc.
Because is a Dojo/Code with me presentation I’m planning to do a BDD exercise with all the attendees to [...]]]></description>
			<content:encoded><![CDATA[<h3>Getting ready for PrairieDevCon</h3>
<p>Next week I’ll be presenting at the <a href="http://www.prairiedevcon.com" target="_blank">PrairieDevCon</a> in Regina and one of my presentations is about Behavior Driven Development, how to apply it using .NET tools like SpecFlow, Nunit, Watin, Cassini, MbUnit, etc.</p>
<p>Because is a Dojo/Code with me presentation I’m planning to do a BDD exercise with all the attendees to show them how to describe a new feature using BDD and implement it together.</p>
<p>We will start with a project that has one feature implemented, and will code together the second feature using full BDD and TDD.</p>
<p>So, what should I use to illustrate BDD? No other than my old friend the MediaLibrary example that I used quite a few times, but now including a full BDD implementation.</p>
<h3>MediaLibrary</h3>
<p>The MediaLibrary project is a web application that  allows the user to register and catalog his collection of movies, books, games, etc.</p>
<p>I’m using GitHub to publish the code we are going to use in the Dojo. Right now the latest version represents the code that I’m going to start with.</p>
<p>If you would like to check out the code I’m going to use please go to the <a href="http://orthocoders.com/prairiedevcon/" target="_blank">PrairieDevCon page</a> on my blog and get the code from <a href="http://github.com/amirci/Media-Library-Demo-PrairieDevCon-2010" target="_blank">GitHub</a>, read the README file to verify you have the requirements installed and the application is working.</p>
<p>Do you have everything installed? Did you read the README file? Cool, open the solution and let’s move on!</p>
<h3>Using BDD</h3>
<p>Behavior Driven Development is a term used to describe (in our case) development that starts by writing the feature (or user story) that we want to implement. Once we have the feature, we will use a “story runner” that will run the feature we just wrote and show if the story is actually implemented as we wanted or not yet. If it is, good, everything should be “green”. If not, we get a “red”, and we have to add code and implement more functionality to make it pass.</p>
<p>To write the user story we are going to use a particular syntax from the Gherkin language. The Gherkin language has very few rules, please read the introduction for Cucumber from <a title="http://wiki.github.com/aslakhellesoy/cucumber/gherkin" href="http://wiki.github.com/aslakhellesoy/cucumber">Aslak Hellesoy</a>.</p>
<p>Let’s see the feature that it’s implemented in the code, <em>Browse Movies:</em></p>
<pre class="code"><span style="color: blue;">Feature: </span>Browse Movies
    As a User
    I want to Browse Movies
    So I can see the contents of the library

    <span style="color: blue;">Scenario: </span>Browse available movies
        <span style="color: blue;">Given </span><span style="color: green;">I have the following movies:
          </span>| title           |
          | Blazing Saddles |
          | Space Balls     |
        <span style="color: blue;">When </span><span style="color: green;">I go to </span><span style="color: red;">Movies
        </span><span style="color: blue;">Then </span><span style="color: green;">I should see in the listing:
          </span>| title             |
          | Blazing Saddles   |
          | Space Balls       |</pre>
<p>What is most important here is to look at the scenario. The scenario is describing that if you have movies A, B and C in the library, when you browse you should see the same movies on the <em>Movies</em> page.</p>
<p>Now if we want to check the feature manually, what would we do? Something like this:</p>
<ol>
<li>Add the movies to the storage</li>
<li>Start the web application</li>
<li>Launch the browser</li>
<li>Go to the movies page</li>
<li>Check that all the movies in the storage are listed in the browser</li>
</ol>
<p>The thing is that I don’t want to validate each feature (with many scenarios) manually, I’d like the scenario/feature runner to do that for me, add the movies, launch the browser and check, everything automated following the steps I wrote in my scenario.</p>
<p>Probable we could manage to write code that will do that for us, now, the question is how the scenario runner translates this feature into actual code? If we were using rails we could use <em>Cucumber, </em>but luckily for the .NET world we can use <a href="http://www.specflow.org">SpecFlow</a> (<em><a href="http://ironruby.net/download">IronRuby</a></em> too, but that’s another post).</p>
<h3>Given That I have the following movies</h3>
<p>Specflow is a tool that understands <a href="http://wiki.github.com/aslakhellesoy/cucumber/gherkin">Gherkin</a> and generates an <a href="http://nunit.org/">NUnit</a> test for every feature that we use. Being an NUnit test, simplifies how we going to run the specification. Just run the NUnit test with your favorite test runner: <a href="http://www.jetbrains.com/resharper/">ReSharper</a>, NUnit (console or GUI), <a href="http://www.gallio.org">MbUnit</a>, etc.</p>
<p>Each scenario is composed by a series of steps, each step is identified by a Gherkin keyword, in our feature we found <em>Given, When</em> and <em>Then.</em></p>
<p>The NUnit test has code for each scenario and will invoke the steps indicated in the scenario.</p>
<p>In order to do so, Specflow uses the text that we write in the step, to match the code.</p>
<p>Let’s look at our first step “Given I have the following movies:”. In order to implement the step, in the code, you will find a method that looks like:</p>
<pre class="code">[<span style="color: #2b91af;">Given</span>(<span style="color: #a31515;">@"I have the following movies:"</span>)]
<span style="color: blue;">public void </span>AddMovies(<span style="color: #2b91af;">Table </span>movies)
{
    movies.Rows.ForEach(row =&gt; AddMovieToStorage(row[<span style="color: #a31515;">"title"</span>]));
}</pre>
<p>The <em>Given</em> attribute is used to match the text we wrote in the scenario, to indicate the the method <em>AddMovies</em> should be called when the step is invoked.</p>
<p>The step in the scenario indicates that the method receives a series of rows should be passed as parameter (first row is the title, every column separated by “|”), that is why it receives a <em>Table</em>.</p>
<p>In the implementation for each movie in the table, the title will be added to the storage. Check the method <em>AddMoviesToStorage</em> for more details.</p>
<p>Now that we setup our storage we are ready to move on and launch the browser.</p>
<h3>When I go to Movies</h3>
<p>The next step to implement implies opening the browser and going to the <em>Movies </em>page to see the listing<em>.</em></p>
<p>Now, to do so we need two things, first the web application running and then to launch a browser to go the actual page.</p>
<p>To run the application I’m going to use <a href="http://www.asp.net/downloads/archived-v11/cassini">Cassini</a> web server. The setup of the features will start the web server and stop it when it’s not needed any more. We can see the implementation in the <em>Browser </em>class under Utililty.</p>
<pre class="code"><span style="color: blue;">static </span>Browser()
{
    WebServer = <span style="color: blue;">new </span><span style="color: #2b91af;">Server</span>(Port, <span style="color: #a31515;">"/"</span>, GetPhysicalPath());
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>With the server running, we now need to launch the browser and automate the checking for all the movies.</p>
<p>For that we are going to use<em> </em>Watin. <a href="http://watin.sourceforge.net/">Watin</a> (Web automation test in .NET) is a library that helps us to manipulate the browser (based on <a href="http://watir.com/">Watir</a>) and also give us all the HTML for the page we are visiting.</p>
<p>We can see the use of the <em>IE </em>instance in the <em>Browser</em> class:</p>
<pre class="code"><span style="color: blue;">public static void </span>InitializeBrowser()
{
    WebServer.Start();

    Instance = <span style="color: blue;">new </span><span style="color: #2b91af;">IE</span>(ApplicationURL);
}

<span style="color: blue;">public static void </span>ShutdownBrowser()
{
    Instance.Close();

    WebServer.Stop();
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>Now that we have our server running, and our <em>IE</em> instance, we only need to go to the right path. In this case we want to go to “/Movies”. For that let’s look at the <em>NavigationSteps class:</em></p>
<pre class="code">[<span style="color: #2b91af;">When</span>(<span style="color: #a31515;">@"I go to (.*)"</span>)]
<span style="color: blue;">public void </span>WhenIGoToPage(<span style="color: blue;">string </span>pageName)
{
    <span style="color: #2b91af;">Browser</span>.GoTo(PathFor(pageName));
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The step uses the browser to navigate to the right page. The page is passed as a parameter that we can see in the attribute as a regular expression.</p>
<p>So far, so good. Now, our last step is to check for the movies in the page to make sure that all of them are in the list.</p>
<h3>Then I should see in the listing</h3>
<p>To implement the last step in our scenario we are going to use the following implementation:</p>
<pre class="code">[<span style="color: #2b91af;">Then</span>(<span style="color: #a31515;">@"I should see in the listing:"</span>)]
<span style="color: blue;">public void </span>AssertListingContains(<span style="color: #2b91af;">Table </span>movies)
{
    <span style="color: blue;">var </span>expected = movies.Rows.Select(row =&gt; row[<span style="color: #a31515;">"title"</span>]);

    <span style="color: blue;">var </span>listing = <span style="color: blue;">this</span>.Page.Listing;

    listing.Should().Have.SameSequenceAs(expected);
}</pre>
<p>Again we are using a step that takes a table as parameter, so we iterate thru the table and get the titles of all the movies that should be in the page.</p>
<p>The code has no mysteries except the <em>Page</em> property.</p>
<pre class="code"><span style="color: blue;">public </span>ListingSteps()
{
    <span style="color: blue;">this</span>.Page = <span style="color: blue;">new </span><span style="color: #2b91af;">BrowseMoviesPage</span>();
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The <em>Page</em> property is initialized in the constructor and the goal of the <em>BrowseMoviesPage</em> is to abstract the internals of how the movies are listed in the page. For example, right now the view that implements the listing of movies uses a table for each movie, however it could use a <em>DIV</em> or some other tag. Here is the implementation:</p>
<pre class="code"><span style="color: blue;">public </span><span style="color: #2b91af;">IEnumerable</span>&lt;<span style="color: blue;">string</span>&gt; Listing
{
    <span style="color: blue;">get
    </span>{
        <span style="color: blue;">var </span>elements = <span style="color: #2b91af;">Browser</span>.Instance.TableCells.Where(cell =&gt; cell.ClassName == <span style="color: #a31515;">"title"</span>);

        <span style="color: blue;">return </span>elements.Select(e =&gt; e.InnerHtml.Trim());
    }
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>As we can see, the code is getting all the table cells where the <em>CSS</em> class is <em>title</em> and then getting the inner html and trimming it.</p>
<p>If we would have to use this code every time we want to check the listing we would have code duplication, plus if the implementation of the view changes, we would have to modify each piece of code that refers to this page. Using the <em>PageObject</em> pattern we avoid code duplication and it’s easy to change the implementation.</p>
<p>And voila! We got all our steps implemented.</p>
<h3>What’s next?</h3>
<p>If you join me next week on the Prairie Dev Con, we will implement the next feature together “<em>Add Movies”.</em></p>
<p>What’s so cool about BDD? Please go ahead and run “rake test:features” on the command line, and you’ll see that the steps for the second feature are still pending, that means that they are not implemented yet.</p>
<p>Writing the feature first we manage to describe what we want, and implementing step by step we make sure that we are working towards make the feature pass. BDD on the outside and TDD on the inside.</p>
<p>Hope to see you all next week in the conference!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2010/05/26/real-world-bdd-introduction/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RoR Course Content</title>
		<link>http://orthocoders.com/2010/05/08/ror-course-content-and-sessions/</link>
		<comments>http://orthocoders.com/2010/05/08/ror-course-content-and-sessions/#comments</comments>
		<pubDate>Sat, 08 May 2010 22:44:07 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[RubyOnRails]]></category>
		<category><![CDATA[Unit Testing]]></category>

		<guid isPermaLink="false">http://orthocoders.com/2010/05/08/ror-course-content-and-sessions/</guid>
		<description><![CDATA[I'm giving a RoR training course at NMM on June 14th to 18th, the content includes...]]></description>
			<content:encoded><![CDATA[<p>Here is the content that I’m going to cover in the RoR course I’m giving on June 14th – to 18th at <a href="http://newmediamanitoba.com">NMM</a>:</p>
<h3>Ruby content</h3>
<ul>
<li>Introduction to scripting languages</li>
<li>Introduction to unit testing, functional testing, BDD</li>
<li>Great Ruby and Rails free resources</li>
<li>Basic git usage (distribute version control system), github</li>
<li>IRB, rubygems</li>
<li>Basic Ruby syntax</li>
<li>Classes and inheritance in Ruby</li>
<li>Ruby blocks, closures, iterators, examples of use</li>
<li>Basic usage of Ruby standard library</li>
<li>Modules, mixins, multiple inheritance in Ruby</li>
<li>RSpec, Cucumber</li>
</ul>
<h3>Ruby on Rails content</h3>
<ul>
<li>Introduction to MVC for web frameworks, Rails history, comparison with other frameworks</li>
<li>Serving static content</li>
<li>Rails ORM (ActiveRecord), migrations, database backends Joins, validations, associations, named_scopes</li>
<li>Controllers, information sharing, filters, permissions Helpers, idioms, code smells</li>
<li>Routing, REST, nested resources Login, logout, sessions, attachments</li>
<li>Gem management, plugins, git submodules</li>
<li>Advanced forms, custom form builders haml, sass will_paginate, paperclip, authlogic, formtastic</li>
<li>Rspec-rails, cucumber-rails, other test gems</li>
<li>Rails console, Rails runner Scripted deployment</li>
<li>Testing web applications, modern Rails testing</li>
</ul>
<p>Each day will consist of an explanation of the subjects, practical examples illustrating the concepts and hands on time to implement a series of exercises using the topics presented during the day.</p>
<p>Any questions please contact me!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2010/05/08/ror-course-content-and-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prairie Development Conference</title>
		<link>http://orthocoders.com/2010/05/03/prairie-development-conference/</link>
		<comments>http://orthocoders.com/2010/05/03/prairie-development-conference/#comments</comments>
		<pubDate>Tue, 04 May 2010 03:14:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BDD]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Mocking]]></category>
		<category><![CDATA[SOLID]]></category>

		<guid isPermaLink="false">http://orthocoders.com/2010/05/03/prairie-development-conference/</guid>
		<description><![CDATA[On Jun 2nd and 3rd I’ll be speaking at the PrairieDevCon 2010 in Regina!!!

You can read about it at http://www.prairiedevcon.com/. It would be two complete days of sessions with four tracks and many cool speakers!!!!
I will do two presentations:
 
Real World Behaviour Driven Development
Behaviour Driven Development drives you process towards keeping the focus on the [...]]]></description>
			<content:encoded><![CDATA[<p>On Jun 2nd and 3rd I’ll be speaking at the <strong>PrairieDevCon</strong> 2010 in Regina!!!</p>
<p><a href="http://orthocoders.com/wp-content/uploads/2010/05/Prairie_Dev_Con_Presenter.gif"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Prairie_Dev_Con_Presenter" src="http://orthocoders.com/wp-content/uploads/2010/05/Prairie_Dev_Con_Presenter_thumb.gif" border="0" alt="Prairie_Dev_Con_Presenter" width="225" height="123" /></a></p>
<p>You can read about it at <a href="http://www.prairiedevcon.com/">http://www.prairiedevcon.com/</a>. It would be two complete days of sessions with four tracks and many cool speakers!!!!</p>
<p>I will do two presentations:</p>
<p><strong> </strong></p>
<h5>Real World Behaviour Driven Development</h5>
<p>Behaviour Driven Development drives you process towards keeping the focus on the stakeholder’s goals while discovering new features to achieve those goals.<br />
But&#8230; what does it mean in a .NET project to use BDD? What do I have to change? What tools are available? Can I use it for project with actual deadlines? How the quality will be improved?<br />
We are going to see a real world example from start to finish using BDD and TDD while answering all those questions. After the session you will have the foundation to apply BDD with confidence on any .NET project.<br />
<strong>Track:</strong> Developer Foundation<br />
<strong>Style:</strong> Dojo (Bring your laptop and code with me!)</p>
<h5>Test Driven Development Patterns for .NET Developers</h5>
<p>Test Driven Development is a methodology that will help us to discover our model while improving the quality of our software.<br />
We are going to see different patterns to help us deal with day to day problems like constructor initialization, exception testing, combinatorial tests, database testing, and many others.<br />
<strong>Track:</strong> Developer Foundation<br />
<strong>Style:</strong> Lecture</p>
<p>Hope to see you there!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2010/05/03/prairie-development-conference/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft TechDays Canada</title>
		<link>http://orthocoders.com/2009/09/16/microsoft-techdays-canada/</link>
		<comments>http://orthocoders.com/2009/09/16/microsoft-techdays-canada/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 04:30:27 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[SOLID]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=51</guid>
		<description><![CDATA[I&#8221;ll be presenting this year at Microsoft TechDays Canada. I&#8217;m super excited!
Here is a brief description of my presentation:
SOLIDify Your Microsoft ASP.NET MVC Applications
Object-oriented programming makes it easier to manage complexity, but only if you do it right. The five SOLID principles of class design (one for each letter) help ensure that you’re writing applications [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8221;ll be presenting this year at <span lang="EN-CA"><a href="http://techdays.ca/" target="_blank">Microsoft TechDays Canada</a>.</span> I&#8217;m super excited!</p>
<p>Here is a brief description of my presentation:</p>
<p style="margin-left: 0.5in;"><strong><span lang="EN-CA">SOLIDify Your Microsoft <a href="http://asp.net/" target="_blank">ASP.NET</a> MVC Applications</span></strong></p>
<p style="margin-left: 0.5in;"><span lang="EN-CA">Object-oriented programming makes it easier to manage complexity, but only if you do it right. The five SOLID principles of class design (one for each letter) help ensure that you’re writing applications that are flexible, comprehensible and maintainable, and we’ll explain and explore them in this session. We’ll start with a brittle <a href="http://asp.net/" target="_blank">ASP.NET</a> MVC application that’s badly in need of refactoring and fix it by applying the SOLID principles. This session is a good follow-up for Introducing <a href="http://asp.net/" target="_blank">ASP.NET</a> MVC, but it’s also good for developers of <a href="http://asp.net/" target="_blank">ASP.NET</a> MVC looking to improve their code – or even if you’re not planning to use <a href="http://asp.net/" target="_blank">ASP.NET</a> MVC. The SOLID principles apply to programming in any object-oriented language or framework.</span></p>
<p style="margin-left: 0.5in;"><em><span lang="EN-CA">December 15-16 at the Winnipeg Convention Centre</span></em></p>
<p>Hope u can make it!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/09/16/microsoft-techdays-canada/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winnipeg Code Camp 2009</title>
		<link>http://orthocoders.com/2009/03/15/winnipeg-code-camp-2009/</link>
		<comments>http://orthocoders.com/2009/03/15/winnipeg-code-camp-2009/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 14:54:58 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[Mocking]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=24</guid>
		<description><![CDATA[Wow! What a day!
We started around 8 AM with breakfast and at 9 started the presentations.
I did mine around 10:30, I think it was pretty good (no one faint, or run from the room screaming).
The audience was great, made great questions and laughed (utter kindness) at my bad jokes.
I want to thank everyone that was [...]]]></description>
			<content:encoded><![CDATA[<p>Wow! What a day!</p>
<p>We started around 8 AM with breakfast and at 9 started the presentations.</p>
<p>I did mine around 10:30, I think it was pretty good (no one faint, or run from the room screaming).</p>
<p>The audience was great, made great questions and laughed (utter kindness) at my bad jokes.</p>
<p>I want to thank everyone that was there, and D&#8217;arcy for inviting me.</p>
<p>Here is the presentation <a href="http://orthocoders.com/wp-content/uploads/2009/03/talk-the-talk-and-mock-the-mock.zip">PDF presentation</a>, the source code <a href="http://orthocoders.com/wp-content/uploads/2009/03/mocktutorial_start.zip">Demo Code (start)</a> and the source code complete with all the tests <a href="http://orthocoders.com/wp-content/uploads/2009/03/mocktutorial_witheverything.zip">Demo Code with all the tests</a>.</p>
<p>The video is still to come <img src='http://orthocoders.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> !</p>
<p>Comments are welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/03/15/winnipeg-code-camp-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mock The Mock @ Winnipeg Code Camp</title>
		<link>http://orthocoders.com/2009/03/14/presentation-at-winnipeg-code-camp/</link>
		<comments>http://orthocoders.com/2009/03/14/presentation-at-winnipeg-code-camp/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 06:21:19 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[Mocking]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=22</guid>
		<description><![CDATA[I&#8217;m getting ready for the presentation tomorrow at the Winnipeg Code Camp!
I&#8217;m going to talk about mocking using Rhino Mocks.
Here is the presentation: PDF presentation download.
I&#8217;ll try to make a video later this week.
See you there!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting ready for the presentation tomorrow at the <a href="http://www.winnipegcodecamp.com/" target="_blank">Winnipeg Code Camp</a>!</p>
<p>I&#8217;m going to talk about mocking using Rhino Mocks.</p>
<p>Here is the presentation: <a title="PDF presentation download." href="http://orthocoders.com/wp-content/uploads/2009/03/talk-the-talk-and-mock-the-mock.zip">PDF presentation download</a>.</p>
<p>I&#8217;ll try to make a video later this week.</p>
<p>See you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/03/14/presentation-at-winnipeg-code-camp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDD Presentation Postmortem</title>
		<link>http://orthocoders.com/2009/02/19/tdd-presentation-postmortem/</link>
		<comments>http://orthocoders.com/2009/02/19/tdd-presentation-postmortem/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 21:17:12 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=20</guid>
		<description><![CDATA[I did the presentation, was pretty good!
I hope everyone enjoyed it as much as I did. The questions were pretty good and we had a nice chat about Behavior Driven Development and factories to generate random values.
Here is a video I recorded with the presentation: TDD Presentation video.
Thanks to all the participants!
See you soon.
]]></description>
			<content:encoded><![CDATA[<p>I did the presentation, was pretty good!</p>
<p>I hope everyone enjoyed it as much as I did. The questions were pretty good and we had a nice chat about Behavior Driven Development and factories to generate random values.</p>
<p>Here is a video I recorded with the presentation: <a href="http://orthocoders.com/wp-content/uploads/2009/02/TDD_presentation_17_Feb_2009.wmv">TDD Presentation video.</a></p>
<p>Thanks to all the participants!</p>
<p>See you soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/02/19/tdd-presentation-postmortem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://orthocoders.com/wp-content/uploads/2009/02/TDD_presentation_17_Feb_2009.wmv" length="64164978" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>TDD presentation @ Winnipeg .NET User Group</title>
		<link>http://orthocoders.com/2009/02/17/tdd-presentation-winnipeg-net-user-group/</link>
		<comments>http://orthocoders.com/2009/02/17/tdd-presentation-winnipeg-net-user-group/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 09:00:04 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Presentation]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=15</guid>
		<description><![CDATA[I&#8217;m about to do the presentation for the .NET User Group.
You can download the presentation with the following links.
PPT: TDD Presentation &#38; TDD Movie Library Demo
PDF: TDD Presentation &#38; TDD Movie Library Demo 
Here is a video I made with the presentation.
Comments are welcome!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m about to do the presentation for the .NET User Group.</p>
<p>You can download the presentation with the following links.</p>
<p>PPT: <a href="http://orthocoders.com/wp-content/uploads/2009/02/tdd-presentation-ppt.zip">TDD Presentation</a> &amp; <a href="http://orthocoders.com/wp-content/uploads/2009/02/tdd-presentation-mld-ppt.zip">TDD Movie Library Demo</a><br />
PDF: <a href="http://orthocoders.com/wp-content/uploads/2009/02/tdd-presentation-v2.pdf">TDD Presentation</a> &amp; <a href="http://orthocoders.com/wp-content/uploads/2009/02/tdd-presentation-v2-mld.pdf">TDD Movie Library Demo </a></p>
<p>Here is a <a title="TDD presentation Video" href="http://orthocoders.com/wp-content/uploads/2009/02/TDD_presentation_17_Feb_2009.wmv" target="_blank">video</a> I made with the presentation.</p>
<p>Comments are welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/02/17/tdd-presentation-winnipeg-net-user-group/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://orthocoders.com/wp-content/uploads/2009/02/TDD_presentation_17_Feb_2009.wmv" length="64164978" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>TDD @ the Winnipeg .NET User Group</title>
		<link>http://orthocoders.com/2009/01/31/tdd-the-winnipeg-net-user-group/</link>
		<comments>http://orthocoders.com/2009/01/31/tdd-the-winnipeg-net-user-group/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 07:00:54 +0000</pubDate>
		<dc:creator>Amir Barylko</dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[.NET User Group]]></category>
		<category><![CDATA[Presentation]]></category>

		<guid isPermaLink="false">http://orthocoders.com/?p=13</guid>
		<description><![CDATA[On Feb 17th I&#8217;m going to do a presentation about TDD with the Winnipeg .NET user group.
The presentation will explain the benefits of using TDD and how to start.
I&#8217;m planning to talk about code coverage, mocking, which tools are available and how they make our testing easier.
I&#8217;ll post the presentation as soon I have it [...]]]></description>
			<content:encoded><![CDATA[<p>On Feb 17th I&#8217;m going to do a presentation about TDD with the Winnipeg .NET user group.</p>
<p>The presentation will explain the benefits of using TDD and how to start.</p>
<p>I&#8217;m planning to talk about code coverage, mocking, which tools are available and how they make our testing easier.</p>
<p>I&#8217;ll post the presentation as soon I have it ready. Here is the information about the <a title="Winnipeg .NET User Group" href="http://www.dotnetwired.com/" target="_blank">event</a>.</p>
<p>See u there!</p>
]]></content:encoded>
			<wfw:commentRss>http://orthocoders.com/2009/01/31/tdd-the-winnipeg-net-user-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
