<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by Lyhr</title>
    <description>Stories kicked by Lyhr</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>What Goes In Must Come Out</title>
      <description>In essence all computer systems are about I/O, data is send against the system and data is sent back.

Splitting logic into Business rules and ETL. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f09%2fwhat-goes-in-must-come-out.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f09%2fwhat-goes-in-must-come-out.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/What_Goes_In_Must_Come_Out</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/What_Goes_In_Must_Come_Out</guid>
      <pubDate>Wed, 10 Sep 2008 03:12:12 GMT</pubDate>
    </item>
    <item>
      <title>How to create fully encapsulated and simple Domain Models</title>
      <description>Udi wrote about this topic, but I never really liked the solution. To me it seemed complex and over architected, even the solutions from the commenter's where surprisingly complex (No disrespect for Udi or any of the commenter's intended).

My solution looks like this. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f09%2fhow-to-create-fully-encapsulated-and.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f09%2fhow-to-create-fully-encapsulated-and.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/How_to_create_fully_encapsulated_and_simple_Domain_Models</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/How_to_create_fully_encapsulated_and_simple_Domain_Models</guid>
      <pubDate>Sun, 07 Sep 2008 03:27:19 GMT</pubDate>
    </item>
    <item>
      <title>Lists: Filter, Map and Reduce - and the Magic of IEnumerator.</title>
      <description>There are 3 very handy list functions which make dealing with lists a breeze: Map, Filter and Reduce.  But along the way of writing them, an important principle of IEnumerator&amp;lt;&amp;gt; comes up. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhonestillusion.com%2fblogs%2fblog_0%2farchive%2f2008%2f08%2f25%2flists-filter-map-and-reduce-and-the-magic-of-ienumerator.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhonestillusion.com%2fblogs%2fblog_0%2farchive%2f2008%2f08%2f25%2flists-filter-map-and-reduce-and-the-magic-of-ienumerator.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Lists_Filter_Map_and_Reduce_and_the_Magic_of_IEnumerator</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Lists_Filter_Map_and_Reduce_and_the_Magic_of_IEnumerator</guid>
      <pubDate>Tue, 26 Aug 2008 07:49:30 GMT</pubDate>
    </item>
    <item>
      <title>Error creating window handle</title>
      <description>I have been chasing a bug in a VB.NET Windows Forms application today. The error log was filled with Win32Exception Error creating window handle. Digging in the usage log I loacted the following code. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2ferror-creating-window-handle.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2ferror-creating-window-handle.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/Error_creating_window_handle</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/Error_creating_window_handle</guid>
      <pubDate>Fri, 22 Aug 2008 01:17:52 GMT</pubDate>
    </item>
    <item>
      <title>Delegates - Late Bound VS Expression</title>
      <description>With the new Expressions .NET 3.5, is there any reason to use a late bound delegate? 
Lets put it to the test. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2fdelegates-late-bound-vs-expression.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2fdelegates-late-bound-vs-expression.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Delegates_Late_Bound_VS_Expression</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Delegates_Late_Bound_VS_Expression</guid>
      <pubDate>Thu, 21 Aug 2008 13:53:12 GMT</pubDate>
    </item>
    <item>
      <title>Onion Architecture in Praxis </title>
      <description>Jeffrey Palermo has coined the pattern onion architecture, so what is it?

Actually it is &amp;quot;just&amp;quot; my default architecture, and has been for some time now. The ideas behind are not new, and it is related to other principles and patterns. Never the less I really like having a name for it, so we have a common understanding of it.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2fonion-architecture-in-praxis.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f08%2fonion-architecture-in-praxis.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Onion_Architecture_in_Praxis</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Onion_Architecture_in_Praxis</guid>
      <pubDate>Thu, 14 Aug 2008 03:23:26 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio Theme Generator</title>
      <description>A fun little ASP.NET MVC Application I wrote to generate Visual Studio themes based off of 3 given colors. I have always felt that selecting every color to make a decent theme is way too repetitive. This web application automatically chooses complements / contrasts based off your initial color selections (and uses jQuery to let you preview your theme before creating). Check it out and let me know what you think. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ffrickinsweet.com%2ftools%2fTheme.mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffrickinsweet.com%2ftools%2fTheme.mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Visual_Studio_Theme_Generator</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Visual_Studio_Theme_Generator</guid>
      <pubDate>Thu, 07 Aug 2008 19:16:02 GMT</pubDate>
    </item>
    <item>
      <title>fluent-nhibernate for creating entity mapping files</title>
      <description>fluent-nhibernate is an API that creates nhibernate entity mapping files.  This will prevent you from having to create the XML mapping files and provides testability.  This API was part of the Shade Tree code base written by Jeremy Miller.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.zachariahyoung.com%2fzy%2fpost%2f2008%2f08%2ffluent-nhibernate-for-creating-entity-mapping-files.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.zachariahyoung.com%2fzy%2fpost%2f2008%2f08%2ffluent-nhibernate-for-creating-entity-mapping-files.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/fluent_nhibernate_for_creating_entity_mapping_files_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/fluent_nhibernate_for_creating_entity_mapping_files_1</guid>
      <pubDate>Sun, 03 Aug 2008 02:44:18 GMT</pubDate>
    </item>
    <item>
      <title>Four Ways to Test Expected Exceptions</title>
      <description>For new applications, I recommend you set aside ExpectedException and use either Assert.Throws or Throws.Exception. That way, what you are testing is clearly stated right in the code, for everyone to see. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnunit.com%2fblogs%2f%3fp%3d63"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnunit.com%2fblogs%2f%3fp%3d63" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Four_Ways_to_Test_Expected_Exceptions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Four_Ways_to_Test_Expected_Exceptions</guid>
      <pubDate>Sat, 02 Aug 2008 08:39:00 GMT</pubDate>
    </item>
    <item>
      <title>Learning by Sample: Monorail and AspView </title>
      <description>I really like the AspView View engine for Monorail, not that the other view engines are bad - but... 
Intellisense and a familiar syntax just does it for me, however the documentation is lacking behind.

So I have converted the monorail getting started sample application to use aspview.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2flearning-by-sample-monorail-and-aspview.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2flearning-by-sample-monorail-and-aspview.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Learning_by_Sample_Monorail_and_AspView</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Learning_by_Sample_Monorail_and_AspView</guid>
      <pubDate>Sat, 19 Jul 2008 01:23:49 GMT</pubDate>
    </item>
    <item>
      <title>Hammett is joining the MEF team at Microsoft</title>
      <description>Hamilton Verissimo, aka Hammett is joining MS as PM inside the MEF (Managed Extensibility Framework) team, but will keep on working on Castle. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhammett.castleproject.org%2f%3fp%3d312"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhammett.castleproject.org%2f%3fp%3d312" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Hammett_is_joining_the_MEF_team_at_Microsoft</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Hammett_is_joining_the_MEF_team_at_Microsoft</guid>
      <pubDate>Wed, 16 Jul 2008 17:01:03 GMT</pubDate>
    </item>
    <item>
      <title>The Seductive Visual Designer </title>
      <description>Is the Visual Designer the best tool in the toolbox, for every GUI  task? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fseductive-visual-designer.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fseductive-visual-designer.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/The_Seductive_Visual_Designer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/The_Seductive_Visual_Designer</guid>
      <pubDate>Tue, 15 Jul 2008 04:24:05 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio #regions are a code smell </title>
      <description>Offers the why's and hows... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fvisual-studio-regions-are-code-smell.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fvisual-studio-regions-are-code-smell.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Visual_Studio_regions_are_a_code_smell</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Visual_Studio_regions_are_a_code_smell</guid>
      <pubDate>Thu, 10 Jul 2008 16:46:25 GMT</pubDate>
    </item>
    <item>
      <title>Creating an Active Directory Authentication Service </title>
      <description>This should be as easy as a one liner, and guess what - it is :-) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fcreating-active-directory.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fcreating-active-directory.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/directoryservices/Creating_an_Active_Directory_Authentication_Service</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/directoryservices/Creating_an_Active_Directory_Authentication_Service</guid>
      <pubDate>Thu, 10 Jul 2008 14:24:27 GMT</pubDate>
    </item>
    <item>
      <title>Doing BDD, with Rhino Mocks AAA syntax </title>
      <description>Ayende proposed a new AAA syntax in Rhino Mocks. I was wondering how it mixed with BDD. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd-with-rhino-mocks-aaa-syntax.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd-with-rhino-mocks-aaa-syntax.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Doing_BDD_with_Rhino_Mocks_AAA_syntax</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Doing_BDD_with_Rhino_Mocks_AAA_syntax</guid>
      <pubDate>Wed, 09 Jul 2008 12:33:31 GMT</pubDate>
    </item>
    <item>
      <title>Doing BDD, when expecting an exception </title>
      <description>I really like the look of my tests specifications, they read almost like plain English.

After fumbling around for a while, I finally get how to specify an expected exception.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd-when-expecting-exception.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd-when-expecting-exception.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Doing_BDD_when_expecting_an_exception</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Doing_BDD_when_expecting_an_exception</guid>
      <pubDate>Tue, 08 Jul 2008 12:42:17 GMT</pubDate>
    </item>
    <item>
      <title>Doing BDD</title>
      <description>Basically it a shift towards specifying behavior instead of testing behavior.

The specification consists of 3 parts:

1: A namespace with called &amp;quot;Specs_for_subject&amp;quot; 
2: One or more classes called &amp;quot;When_operation_on_state&amp;quot;, with a SetUp/Init method that performs the &amp;quot;operation_on_state&amp;quot; 
3: One or more methods called &amp;quot;Should_expectation&amp;quot; 
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f07%2fdoing-bdd.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Doing_BDD</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Doing_BDD</guid>
      <pubDate>Tue, 08 Jul 2008 03:06:40 GMT</pubDate>
    </item>
    <item>
      <title>NHibernates MemCached feature</title>
      <description>Make you database write only with NHibernate and MemCached. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-memcached-feature.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-memcached-feature.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/NHibernates_MemCached_feature</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/NHibernates_MemCached_feature</guid>
      <pubDate>Thu, 27 Mar 2008 13:12:19 GMT</pubDate>
    </item>
    <item>
      <title>NHibernates Search Feature</title>
      <description>Googlize your entities: NHibernate &amp;amp; Lucene.NET Integration - Example. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-search-feature.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-search-feature.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/NHibernates_Search_Feature</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/NHibernates_Search_Feature</guid>
      <pubDate>Thu, 27 Mar 2008 00:50:04 GMT</pubDate>
    </item>
    <item>
      <title>NHibernates SchemaUpdate feature </title>
      <description>Zero friction data access with NHibernate. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-schemaupdate-feature.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fnhibernates-schemaupdate-feature.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/NHibernates_SchemaUpdate_feature</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/NHibernates_SchemaUpdate_feature</guid>
      <pubDate>Sat, 22 Mar 2008 13:19:23 GMT</pubDate>
    </item>
    <item>
      <title>When to throw an Exception</title>
      <description>2 Golden rules of using Exceptions:

- Fail Fast 
- Exceptions should be... well exceptional. 

These two rules are contradicting, or are they?
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fwhen-to-throw-exception.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmorten.lyhr.dk%2f2008%2f03%2fwhen-to-throw-exception.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/When_to_throw_an_Exception</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/When_to_throw_an_Exception</guid>
      <pubDate>Fri, 07 Mar 2008 03:15:57 GMT</pubDate>
    </item>
    <item>
      <title>What's your ALT.NET?</title>
      <description>Simple description of ALT.NET... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fdavid_laribee%2farchive%2f2007%2f12%2f11%2fwhat-s-your-alt-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fdavid_laribee%2farchive%2f2007%2f12%2f11%2fwhat-s-your-alt-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/What_s_your_ALT_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/What_s_your_ALT_NET</guid>
      <pubDate>Wed, 12 Dec 2007 03:33:14 GMT</pubDate>
    </item>
    <item>
      <title>MVC Membership Basics</title>
      <description>Getting Register, Login, and Logout working in the recently released ASP.Net MVC framework. Downloadable code samples included. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.squaredroot.com%2fpost%2f2007%2f12%2fASPNet-MVC-Membership-Basics.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.squaredroot.com%2fpost%2f2007%2f12%2fASPNet-MVC-Membership-Basics.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/MVC_Membership_Basics</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/MVC_Membership_Basics</guid>
      <pubDate>Tue, 11 Dec 2007 09:46:03 GMT</pubDate>
    </item>
    <item>
      <title>10 Rules that Age of Empires Teaches about Development</title>
      <description>&amp;quot;Here are 10 rules, that Age of Empires clearly demonstrates, which also apply to software engineering:&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftimstall.dotnetdevelopersjournal.com%2f10_rules_that_age_of_empires_teaches_about_development.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftimstall.dotnetdevelopersjournal.com%2f10_rules_that_age_of_empires_teaches_about_development.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/10_Rules_that_Age_of_Empires_Teaches_about_Development</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/10_Rules_that_Age_of_Empires_Teaches_about_Development</guid>
      <pubDate>Thu, 06 Dec 2007 02:23:28 GMT</pubDate>
    </item>
    <item>
      <title>Fun with Generics - From Repository to DTO</title>
      <description>Fantastic post using .Net to implement DDD to derive a Data Transfer Object Model. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2felegantcode.com%2f2007%2f12%2f05%2ffun-with-generics-from-repository-to-dto%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2felegantcode.com%2f2007%2f12%2f05%2ffun-with-generics-from-repository-to-dto%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Fun_with_Generics_From_Repository_to_DTO</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Fun_with_Generics_From_Repository_to_DTO</guid>
      <pubDate>Thu, 06 Dec 2007 12:46:02 GMT</pubDate>
    </item>
  </channel>
</rss>
