<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by Anastasiosyal</title>
    <description>Stories kicked by Anastasiosyal</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>Skip the Visual Studio Splash Screen</title>
      <description>Anything to speed up Visual Studio. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvisualstudiohacks.com%2ftips%2fsave-time-at-startup-by-skipping-the-splash%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvisualstudiohacks.com%2ftips%2fsave-time-at-startup-by-skipping-the-splash%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Skip_the_Visual_Studio_Splash_Screen</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Skip_the_Visual_Studio_Splash_Screen</guid>
      <pubDate>Mon, 05 Jan 2009 17:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Introducing a new large scale ASP.NET MVC project framework: Unifico</title>
      <description>Written in C# against MVC Beta and ASP.NET 3.5.1 the code currently recreates the account 'component' of the MVC example template with a simple SQL Repository. The ASP.NET Membership Provider is completely replaced with a component written against the Unifico Framework's pattern. In this example several things are achieved:

    * A Service Oriented Architecture (SOA) ready to be remoted through Windows Communication Foundation while using StructureMap to provide dependency injection from WCF.
    * A repository based data source also protected with dependency injection that is exposed through in a pipes and filters manor. LINQ to SQL is used within a particular repository implementation, but is in no way exposed to the service.
    * A Model View Controller (MVC) pattern is also used. The only objects returned from a service are models, and all controller activity is within the service itself. Virtual Paths are used to store the views within the component's assembly.
    * Utility methods have been developed to provide paging across the service interfaces while leaving the 'control' in the hands of the service. The paging methods support multiple filters and multiple sorts within any paging method for a general service.
    * The framework supports unit testing, however unit tests need to be added specifically for the account service. A project has been setup to show where this is done.
    * 'Form' Models are used for requests to a service to allow all validation for a request to occur within the service. The responsibility of form validation is retained within a service in this manor, and prevents outside code from creating models.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeplex.com%2funifico"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeplex.com%2funifico" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Introducing_a_new_large_scale_ASP_NET_MVC_project_framework_Unifico</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Introducing_a_new_large_scale_ASP_NET_MVC_project_framework_Unifico</guid>
      <pubDate>Mon, 05 Jan 2009 16:31:06 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC Release Candidate shipping in January</title>
      <description>ScottGu talks about the upcoming Release Candidate of ASP.NET MVC V1 and the features it brings to the table &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f12%2f19%2fasp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f12%2f19%2fasp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Release_Candidate_shipping_in_January</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Release_Candidate_shipping_in_January</guid>
      <pubDate>Fri, 19 Dec 2008 12:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Extending the Visual-Studio Context-Menu</title>
      <description>We can add features to the Visual-Studio context menu, without installing addins.
Here is an example showing how to add &amp;quot;Explore&amp;quot; and &amp;quot;Execute&amp;quot; commands to any item in the Solution Explorer.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sharpregion.com%2fblog%2f%3fp%3d105"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sharpregion.com%2fblog%2f%3fp%3d105" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Extending_the_Visual_Studio_Context_Menu</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Extending_the_Visual_Studio_Context_Menu</guid>
      <pubDate>Tue, 16 Dec 2008 17:16:06 GMT</pubDate>
    </item>
    <item>
      <title>Yet another Singleton Yada-Yada</title>
      <description>Using a static-constructor in a singleton, affects it's laziness.
Here's a generic singleton that is thread-safe using a static-constructor, and still lazy. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sharpregion.com%2fblog%2f%3fp%3d89"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sharpregion.com%2fblog%2f%3fp%3d89" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Yet_another_Singleton_Yada_Yada</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Yet_another_Singleton_Yada_Yada</guid>
      <pubDate>Wed, 17 Dec 2008 09:01:04 GMT</pubDate>
    </item>
    <item>
      <title>SubSonic 3 Alpha Is Ready</title>
      <description>SubSonic 3 is ready for Alpha. It's a pretty significant upgrade and I think I've tackled all the bugs and issues. Lofty hopes, but with your help maybe we can make this thing solid. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.wekeroad.com%2fblog%2fsubsonic-3-alpha-is-ready%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.wekeroad.com%2fblog%2fsubsonic-3-alpha-is-ready%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SubSonic_3_Alpha_Is_Ready</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SubSonic_3_Alpha_Is_Ready</guid>
      <pubDate>Wed, 10 Dec 2008 15:01:14 GMT</pubDate>
    </item>
    <item>
      <title>Oxite: OpenSource CMS from Microsoft Built on ASP.NET MVC</title>
      <description>Simone Chiaretta writes about the recent announcement by Microsoft Evangelist, Jeff Sandquist, about Oxite which is an open source CMS built by Microsoft as a showcase and sample for ASP.NET MVC. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodeclimber.net.nz%2farchive%2f2008%2f12%2f09%2foxite-opensource-cms-from-microsoft.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodeclimber.net.nz%2farchive%2f2008%2f12%2f09%2foxite-opensource-cms-from-microsoft.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Oxite_OpenSource_CMS_from_Microsoft_Built_on_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Oxite_OpenSource_CMS_from_Microsoft_Built_on_ASP_NET_MVC</guid>
      <pubDate>Tue, 09 Dec 2008 11:16:18 GMT</pubDate>
    </item>
    <item>
      <title>Implementing a red black tree in C#</title>
      <description>This article talks about how to implement a red-black tree in C#.  The implementation is generic, and it also implements IEnumerable&amp;lt;T&amp;gt;. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jaltiere.com%2f%3fp%3d53"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jaltiere.com%2f%3fp%3d53" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Implementing_a_red_black_tree_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Implementing_a_red_black_tree_in_C</guid>
      <pubDate>Tue, 09 Dec 2008 06:01:08 GMT</pubDate>
    </item>
    <item>
      <title>Taking the Magic out of Expression</title>
      <description>Concise introduction to expression trees. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f11%2f29%2fTaking-the-Magic-out-of-Expression.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f11%2f29%2fTaking-the-Magic-out-of-Expression.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Taking_the_Magic_out_of_Expression</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Taking_the_Magic_out_of_Expression</guid>
      <pubDate>Mon, 01 Dec 2008 13:31:12 GMT</pubDate>
    </item>
    <item>
      <title>Preventing Double Form Posts</title>
      <description>Most posts on this topic focus on disabling the submit button that causes the post. This works fine when you only have one submit control. But, if you have multiple buttons and/or link buttons that can cause a post and want to avoid potential conflicts if a user clicks a second submit control before the first one has been processed then this is really simply approach. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fandrewtokeley.net%2farchive%2f2008%2f11%2f14%2fpreventing-double-form-posts.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fandrewtokeley.net%2farchive%2f2008%2f11%2f14%2fpreventing-double-form-posts.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Preventing_Double_Form_Posts</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Preventing_Double_Form_Posts</guid>
      <pubDate>Sun, 16 Nov 2008 21:01:09 GMT</pubDate>
    </item>
    <item>
      <title>SubSonic 3.0 Preview 2</title>
      <description>Rob Conery: Over the last week I've made massive improvements and upgrades to SubSonic 3.0 and the templates that it comes with. I haven't been this obsessive and inspired since I created SubSonic in the first place, and I have to tell you I am more than stoked to see this pull together. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.wekeroad.com%2fblog%2fsubsonic-3-0-preview-2%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.wekeroad.com%2fblog%2fsubsonic-3-0-preview-2%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SubSonic_3_0_Preview_2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SubSonic_3_0_Preview_2</guid>
      <pubDate>Thu, 13 Nov 2008 11:16:04 GMT</pubDate>
    </item>
    <item>
      <title>http://riderdesign.com/articles/Build-a-file-tree-explorer-with-jQuery</title>
      <description>Create a file tree explorer with the jQuery File tree plugin and asp.net. With this plugin and a little server side logic, it is very easy to create a great looking client side file tree explorer. This article explains how to set up, configure and customize jQuery File Tree and use ASP.NET to retrieve the file structure. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2friderdesign.com%2farticles%2fBuild-a-file-tree-explorer-with-jQuery-and-ASP.NET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2friderdesign.com%2farticles%2fBuild-a-file-tree-explorer-with-jQuery-and-ASP.NET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/http_riderdesign_com_articles_Build_a_file_tree_explorer_with_jQuery</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/http_riderdesign_com_articles_Build_a_file_tree_explorer_with_jQuery</guid>
      <pubDate>Fri, 07 Nov 2008 03:01:02 GMT</pubDate>
    </item>
    <item>
      <title>C# future</title>
      <description>Dynamic Lookup - Named and Optional Arguments - Features for COM interop - Variance, check out the full story over at msdn
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcode.msdn.microsoft.com%2fcsharpfuture"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcode.msdn.microsoft.com%2fcsharpfuture" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_future</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_future</guid>
      <pubDate>Tue, 28 Oct 2008 01:06:55 GMT</pubDate>
    </item>
    <item>
      <title>ScottGu: ASP.NET MVC Beta</title>
      <description>One of ScottGu&amp;#180;s monster blogposts &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f10%2f16%2fasp-net-mvc-beta-released.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f10%2f16%2fasp-net-mvc-beta-released.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ScottGu_ASP_NET_MVC_Beta</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ScottGu_ASP_NET_MVC_Beta</guid>
      <pubDate>Fri, 17 Oct 2008 02:46:03 GMT</pubDate>
    </item>
    <item>
      <title>OSS Licensing - Terms and Concepts</title>
      <description>The first post in a series on OSS Licensing
This post is about explaining some terms and concepts that will be used in following posts &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.kenegozi.com%2fBlog%2f2008%2f10%2f12%2foss-licensing-terms-and-concepts.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.kenegozi.com%2fBlog%2f2008%2f10%2f12%2foss-licensing-terms-and-concepts.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/OSS_Licensing_Terms_and_Concepts</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/OSS_Licensing_Terms_and_Concepts</guid>
      <pubDate>Sun, 12 Oct 2008 09:19:38 GMT</pubDate>
    </item>
    <item>
      <title>Expression Tree vs Reflection.</title>
      <description>Expression Trees can be used to avoid Reflection poor performance when you need to invoke methods in object that you deos not know at runtime. In this post I show you how you can access to property of objects building and compiling an expression tree. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f04%2fexpression-tree-vs-reflection%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f04%2fexpression-tree-vs-reflection%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Expression_Tree_vs_Reflection</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Expression_Tree_vs_Reflection</guid>
      <pubDate>Mon, 06 Oct 2008 11:46:11 GMT</pubDate>
    </item>
    <item>
      <title>Best practices for creating websites in IIS 6</title>
      <description>A list of steps that I always take while creating ASP.NET websites in IIS 6. It ensures better performance maintainability, and scalability of your application.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmsmvps.com%2fblogs%2fomar%2farchive%2f2008%2f10%2f04%2fbest-practices-for-creating-websites-in-iis-6-0.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmsmvps.com%2fblogs%2fomar%2farchive%2f2008%2f10%2f04%2fbest-practices-for-creating-websites-in-iis-6-0.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Best_practices_for_creating_websites_in_IIS_6</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Best_practices_for_creating_websites_in_IIS_6</guid>
      <pubDate>Sun, 05 Oct 2008 20:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Removing unused CSS Classes from your web application</title>
      <description>2 ways to clean up your Css by removing unused classes. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetsurfers.com%2fBlog%2f2008%2f10%2f02%2fRemovingUnusedCSSClassesFromYourWebApplication.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetsurfers.com%2fBlog%2f2008%2f10%2f02%2fRemovingUnusedCSSClassesFromYourWebApplication.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Removing_unused_CSS_Classes_from_your_web_application</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Removing_unused_CSS_Classes_from_your_web_application</guid>
      <pubDate>Thu, 02 Oct 2008 12:31:14 GMT</pubDate>
    </item>
    <item>
      <title>UK Software Consultant Nightmare: The IT Recruiting Agents</title>
      <description>The definite guide to the tricks and tactics employed by some IT recruting agents that made the UK software consultant's recruting process a nightmare. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.adamtibi.net%2fpost%2f2008%2f09%2f30%2fUK-Software-Consultant-Nightmare-The-IT-Recruiting-Agents.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.adamtibi.net%2fpost%2f2008%2f09%2f30%2fUK-Software-Consultant-Nightmare-The-IT-Recruiting-Agents.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/UK_Software_Consultant_Nightmare_The_IT_Recruiting_Agents</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/UK_Software_Consultant_Nightmare_The_IT_Recruiting_Agents</guid>
      <pubDate>Wed, 01 Oct 2008 07:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Development Tools I Use &amp;amp; Recommend</title>
      <description>Eventually I will get to some technical code Posts. But for now, I'm a bit delayed with some other things at work lately. I will be blogging about Code Generation, OOP, and other topics very soon though. In the meantime, I wanted to share a list of tools I regularly use now or have used in the past as a C# / ASP.NET Engineer listed below: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodezest.com%2farchive%2f2008%2f09%2f28%2fdevelopment-tools-i-use-amp-recommend.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodezest.com%2farchive%2f2008%2f09%2f28%2fdevelopment-tools-i-use-amp-recommend.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Development_Tools_I_Use_Recommend</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Development_Tools_I_Use_Recommend</guid>
      <pubDate>Sun, 28 Sep 2008 22:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Persistence Ignorance (POCO) Adapter for Entity Framework V1</title>
      <description>One of the limitations of Entity Framework V1 released as part of .NET Framework 3.5 SP1 and Visual Studio 2008 SP1 is lack of support for POCO entity objects. POCO stands for Plain Old CLR Object and refers to an object that does not have any persistence concerns and is not aware of persistence framework. Modern development approaches such as DDD (Domain-Driven Design) and TDD (Test-Driven Development) prefer clear separation of concerns which implies persistence ignorance. [...]
We have recently published a sample called EFPocoAdapter that includes code generator and a supporting library that implements POCO object tracking on top of Entity Framework V1
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fjkowalski%2farchive%2f2008%2f09%2f09%2fpersistence-ignorance-poco-adapter-for-entity-framework-v1.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fjkowalski%2farchive%2f2008%2f09%2f09%2fpersistence-ignorance-poco-adapter-for-entity-framework-v1.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Persistence_Ignorance_POCO_Adapter_for_Entity_Framework_V1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Persistence_Ignorance_POCO_Adapter_for_Entity_Framework_V1</guid>
      <pubDate>Wed, 10 Sep 2008 07:03:07 GMT</pubDate>
    </item>
    <item>
      <title>The Death of Software Engineering</title>
      <description>Why software engineering is fading away. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmonstersgotmy.net%2fpost%2fThe-Death-of-Software-Engineering.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmonstersgotmy.net%2fpost%2fThe-Death-of-Software-Engineering.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/The_Death_of_Software_Engineering</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/The_Death_of_Software_Engineering</guid>
      <pubDate>Wed, 10 Sep 2008 21:31:03 GMT</pubDate>
    </item>
    <item>
      <title>Path to .NET 3.5 Developer Certification</title>
      <description>If you are trying to figure out the new certification exams for Microsoft Certified Professional Developer (MCPD) or Microsoft Certified Technical Specialist (MCTS) for .NET Framework 3.5 / Visual Studio 2008 then you may be interested in a diagram that I put together to helped me to visualize the path through the required certification exams. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.thearchitect.co.uk%2fweblog%2farchives%2f2008%2f08%2fpath_to_net_35_developer_certification.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.thearchitect.co.uk%2fweblog%2farchives%2f2008%2f08%2fpath_to_net_35_developer_certification.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Path_to_NET_3_5_Developer_Certification</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Path_to_NET_3_5_Developer_Certification</guid>
      <pubDate>Thu, 11 Sep 2008 03:31:05 GMT</pubDate>
    </item>
    <item>
      <title>FFlib.NET released!</title>
      <description>Are you web developer? Are you looking for video conversion library for long time? So, be happy! We are pleased to introduce you the first release of our .NET &amp;amp; FFMPEG based video conversion library - FFlib.NET. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.intuitive.sk%2ffflib%2fpost%2ffflib-net-released.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.intuitive.sk%2ffflib%2fpost%2ffflib-net-released.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/FFlib_NET_released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/FFlib_NET_released</guid>
      <pubDate>Fri, 05 Sep 2008 08:46:02 GMT</pubDate>
    </item>
    <item>
      <title>jQuery Form Serialization without ASP.NET ViewState</title>
      <description>When building AJAX applications that send client form content to the server, ViewState and EventValidation fields can get in the way. Using jQuery you can make short work skipping over these fields and send only the raw POST data to the server. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.west-wind.com%2fweblog%2fposts%2f472329.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.west-wind.com%2fweblog%2fposts%2f472329.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/jQuery_Form_Serialization_without_ASP_NET_ViewState</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/jQuery_Form_Serialization_without_ASP_NET_ViewState</guid>
      <pubDate>Thu, 04 Sep 2008 21:31:10 GMT</pubDate>
    </item>
  </channel>
</rss>