<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by raasiel</title>
    <description>Stories kicked by raasiel</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>Visual Studio 2010: Multiple web.config versions</title>
      <description>Visual Studio 2010 has support for multiple web.config files. It is one feature of new web application packaging and deployment system. We can create now separate web.config files for each configuration we have for application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f06%2f03%2fvisual-studio-2010-multiple-web-config-versions.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f06%2f03%2fvisual-studio-2010-multiple-web-config-versions.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Multiple_web_config_versions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Multiple_web_config_versions</guid>
      <pubDate>Wed, 03 Jun 2009 23:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Executing Powershell Scripts in the Same Execution Context</title>
      <description>How to executes scripts and retains variables and functions written in the script even after the script executes. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f05%2fexecuting-powershell-scripts-in-the-same-execution-context.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f05%2fexecuting-powershell-scripts-in-the-same-execution-context.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Executing_Powershell_Scripts_in_the_Same_Execution_Context</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Executing_Powershell_Scripts_in_the_Same_Execution_Context</guid>
      <pubDate>Sat, 23 May 2009 19:39:20 GMT</pubDate>
    </item>
    <item>
      <title>Code Generation Should be the Nuclear Option</title>
      <description>So let me first just start off by saying: I do not like code generation. In certain cases I think it can help greatly, but many people are far too eager to jump to this solution. I don't think that there is anything particularly evil about the process of generating code, but I do feel like using code generation as a day to day tool is a very bad practice. Code generation should be the tool of last resort when there is no good way to cleanly implement a solution which doesn't require code to be spread out everywhere. &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%2f2009%2f05%2f05%2fCode-Generation-Should-be-the-Nuclear-Option.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f05%2f05%2fCode-Generation-Should-be-the-Nuclear-Option.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Code_Generation_Should_be_the_Nuclear_Option</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Code_Generation_Should_be_the_Nuclear_Option</guid>
      <pubDate>Wed, 06 May 2009 09:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Top 5 SQL System stored procedures every developer should know</title>
      <description>There are a number of documented and undocumented system stored procedures in MS SQL Server that are helpful for every web developer working with databases. From the developer's perspective, here's a list of 5 System stored procedures that are my favorite. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fTop-5-SQL-System-stored-procedures-every-developer-should-know.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fTop-5-SQL-System-stored-procedures-every-developer-should-know.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Top_5_SQL_System_stored_procedures_every_developer_should_know</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Top_5_SQL_System_stored_procedures_every_developer_should_know</guid>
      <pubDate>Wed, 13 May 2009 17:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Hiding Thread.CurrentPrincipal from your code</title>
      <description>You can get information about the current user who is logged in using Thread.CurrentPrincipal. The problem with this is that it's difficult to work with it in tests. It forces you to set the current principal in your test setup so that your code will work correctly, and this can be difficult if not impossible in situations where you're using Windows Authentication (if you're using Forms Authentication, it's not quite as painful, but it's still a pain). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjonkruger.com%2fblog%2f2009%2f04%2f13%2fhiding-threadcurrentprincipal-from-your-code%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjonkruger.com%2fblog%2f2009%2f04%2f13%2fhiding-threadcurrentprincipal-from-your-code%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Hiding_Thread_CurrentPrincipal_from_your_code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Hiding_Thread_CurrentPrincipal_from_your_code</guid>
      <pubDate>Tue, 14 Apr 2009 09:28:26 GMT</pubDate>
    </item>
    <item>
      <title>InterOp: Using .NET COM in non .NET platform with Isolated Application</title>
      <description>How to use a .NET based COM component in a non .NET environment without registering the application by using Registry Free COM &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f04%2finterop-using-a-net-based-component-from-a-non-net-platform-using-registry-free-com.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f04%2finterop-using-a-net-based-component-from-a-non-net-platform-using-registry-free-com.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/InterOp_Using_NET_COM_in_non_NET_platform_with_Isolated_Application</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/InterOp_Using_NET_COM_in_non_NET_platform_with_Isolated_Application</guid>
      <pubDate>Tue, 14 Apr 2009 02:58:14 GMT</pubDate>
    </item>
    <item>
      <title>The Open Source Projects on ASP.NET MVC - Kazi Manzur Rashid's Blog</title>
      <description>Last night the forehead four head has released the 1st chapter of their upcoming Wrox book along with a sample project NerdDinner and I think this is the best application to check if anyone is trying to lean the new ASP.NET MVC framework. 
And this is the list of currently available Open Source Projects developed in ASP.NET MVC. I am ordering it based ... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f03%2f12%2fthe-open-source-projects-on-asp-net-mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f03%2f12%2fthe-open-source-projects-on-asp-net-mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/The_Open_Source_Projects_on_ASP_NET_MVC_Kazi_Manzur_Rashid_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/The_Open_Source_Projects_on_ASP_NET_MVC_Kazi_Manzur_Rashid_s_Blog</guid>
      <pubDate>Fri, 13 Mar 2009 18:16:02 GMT</pubDate>
    </item>
    <item>
      <title>WPF Kid Stuff: Extracting a Control Template</title>
      <description>How to extract a controls template  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f01%2fwpf-kid-stuff-extracting-a-control-template.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2009%2f01%2fwpf-kid-stuff-extracting-a-control-template.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/WPF_Kid_Stuff_Extracting_a_Control_Template</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/WPF_Kid_Stuff_Extracting_a_Control_Template</guid>
      <pubDate>Sat, 03 Jan 2009 11:47:59 GMT</pubDate>
    </item>
    <item>
      <title>Which Open Source License to select -"With Comparison Chart!"</title>
      <description>A simple comparison of different open source licenses. Lets you have an idea on thier features and have preview for selection of a license for your open source project. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f10%2fcomparison-of-d.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f10%2fcomparison-of-d.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Which_Open_Source_License_to_select_With_Comparison_Chart</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Which_Open_Source_License_to_select_With_Comparison_Chart</guid>
      <pubDate>Tue, 07 Oct 2008 10:06:55 GMT</pubDate>
    </item>
    <item>
      <title>A very simple C# interview question that most developer fails</title>
      <description>This is a very simple C# question that most developer fails in the interview. Do you know the answer? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f10%2fa-very-simple-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f10%2fa-very-simple-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/A_very_simple_C_interview_question_that_most_developer_fails</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/A_very_simple_C_interview_question_that_most_developer_fails</guid>
      <pubDate>Thu, 02 Oct 2008 00:29:39 GMT</pubDate>
    </item>
    <item>
      <title>Get started JQuery by example in 15 mins : Reduce Your Javascript Size</title>
      <description>A 15 minute startup tutorial that will enable you do things that you could not imagine doing in a day in regular Javascript  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f08%2fmybutton-font-f.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f08%2fmybutton-font-f.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Get_started_JQuery_by_example_in_15_mins_Reduce_Your_Javascript_Size</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Get_started_JQuery_by_example_in_15_mins_Reduce_Your_Javascript_Size</guid>
      <pubDate>Wed, 01 Oct 2008 06:43:53 GMT</pubDate>
    </item>
    <item>
      <title>Late Binding in C# using Dynamic Compilation</title>
      <description>Steve goes through his approach to using reflection, making the code easier to read, making it easier to maintain, discusses the &amp;quot;middle-class multiple inheritance&amp;quot;, and provides a zipped project of the AdapterCompiler. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2fstevehawley%2farchive%2f2008%2f09%2f29%2flate-binding-in-c-using-dynamic-compilation.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2fstevehawley%2farchive%2f2008%2f09%2f29%2flate-binding-in-c-using-dynamic-compilation.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Late_Binding_in_C_using_Dynamic_Compilation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Late_Binding_in_C_using_Dynamic_Compilation</guid>
      <pubDate>Wed, 01 Oct 2008 03:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Extend WPF: Add your own keywords and functionality to XAML with Custo</title>
      <description>Shows how you can add custom keywords into Xaml by writing a markup extension. A sample such extension is written and demonstrated. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f09%2fextend-wpf-add.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f09%2fextend-wpf-add.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Extend_WPF_Add_your_own_keywords_and_functionality_to_XAML_with_Custo</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Extend_WPF_Add_your_own_keywords_and_functionality_to_XAML_with_Custo</guid>
      <pubDate>Sat, 20 Sep 2008 06:51:58 GMT</pubDate>
    </item>
    <item>
      <title>Google Chrome: I liked it at first but . its memory usage is ABSURD!.</title>
      <description>I was going to replace Flock with Google Chrome, but I had refrained from doing because huge memory usage of the Chrome browser &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f09%2fgoogle-chrome-i.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f09%2fgoogle-chrome-i.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ie/Google_Chrome_I_liked_it_at_first_but_its_memory_usage_is_ABSURD</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ie/Google_Chrome_I_liked_it_at_first_but_its_memory_usage_is_ABSURD</guid>
      <pubDate>Sun, 07 Sep 2008 04:08:17 GMT</pubDate>
    </item>
    <item>
      <title>A developers quest to select a good Antivirus for the year 2008</title>
      <description>As a developer I am busy and I am also sure that the whole community is busy as well and like me everyone is keen on security. I wanted to share my experience to find a good antivirus for the current year as the top 3 antivirus position changes dramatically each year. This is not a coding related post, but I want to help out my fellow developers to spend less time in their search as well. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f06%2fmy-quest-to-sel.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f06%2fmy-quest-to-sel.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/A_developers_quest_to_select_a_good_Antivirus_for_the_year_2008</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/A_developers_quest_to_select_a_good_Antivirus_for_the_year_2008</guid>
      <pubDate>Tue, 03 Jun 2008 01:53:09 GMT</pubDate>
    </item>
    <item>
      <title>Memory control : Use GCHandle to pin down the objects</title>
      <description>Shows how can you pin down an object in memory and described how pinning down works with GC &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f05%2fmemory-control.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f05%2fmemory-control.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Memory_control_Use_GCHandle_to_pin_down_the_objects</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Memory_control_Use_GCHandle_to_pin_down_the_objects</guid>
      <pubDate>Wed, 21 May 2008 22:19:45 GMT</pubDate>
    </item>
    <item>
      <title>Selected posts on CLR, threading, Internationalization and WPF</title>
      <description>Links to some previous posts on CLR, threading, Internationalization and WPF &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fselected-previo.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fselected-previo.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Selected_posts_on_CLR_threading_Internationalization_and_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Selected_posts_on_CLR_threading_Internationalization_and_WPF</guid>
      <pubDate>Mon, 28 Apr 2008 19:56:10 GMT</pubDate>
    </item>
    <item>
      <title>Developer And His or Her Chair</title>
      <description>Being a software developer you write a lot of code. That is obvious, but one of the overlooked essential is the medium which lets the code flow. Yes it is your brain which is connected to your fingers which are connected to your body of which rear-end is an essential part. And this post is about the rear-end. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.deepakkapoor.net%2fblog%2f2008%2f04%2f20%2fdeveloper-and-his-or-her-chair%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.deepakkapoor.net%2fblog%2f2008%2f04%2f20%2fdeveloper-and-his-or-her-chair%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Developer_And_His_or_Her_Chair</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Developer_And_His_or_Her_Chair</guid>
      <pubDate>Mon, 21 Apr 2008 07:04:55 GMT</pubDate>
    </item>
    <item>
      <title>Mocking static methods with Typemock</title>
      <description>There are mocking tools like Rhino Mock, Moq, NMock, Typemock and many more. Recently, I was kinda evaluating mocking tools to mock out REST calls in Linq.Flickr. Almost all of the mock tools requires some sort of interface reference to work on. When, to mock out methods like XElement.Load or File.Open is impossible with most of the tools, Typemock is one step ahead of others as it supports mocking of static methods... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fmehfuzh%2farchive%2f2008%2f04%2f21%2fmocking-static-methods-with-typemock.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fmehfuzh%2farchive%2f2008%2f04%2f21%2fmocking-static-methods-with-typemock.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Mocking_static_methods_with_Typemock</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Mocking_static_methods_with_Typemock</guid>
      <pubDate>Mon, 21 Apr 2008 05:39:02 GMT</pubDate>
    </item>
    <item>
      <title>Basic WPF: Stylize standard tabs into Aqua Gel</title>
      <description>A graphical guide to chaning the basic look ot tab control using WPF styles. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fbasic-wpf-chang.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fbasic-wpf-chang.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Basic_WPF_Stylize_standard_tabs_into_Aqua_Gel</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Basic_WPF_Stylize_standard_tabs_into_Aqua_Gel</guid>
      <pubDate>Sat, 19 Apr 2008 22:01:02 GMT</pubDate>
    </item>
    <item>
      <title>39 Free Microsoft eLearning Courses</title>
      <description>39 Free Microsoft eLearning Courses &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flearning.microsoft.com%2fManager%2fCatalog.aspx%3fview%3dfree"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flearning.microsoft.com%2fManager%2fCatalog.aspx%3fview%3dfree" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/39_Free_Microsoft_eLearning_Courses</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/39_Free_Microsoft_eLearning_Courses</guid>
      <pubDate>Sat, 19 Apr 2008 04:46:02 GMT</pubDate>
    </item>
    <item>
      <title>A C# fluent repeater</title>
      <description>A fully-featured fluent class used for repeating method calls, handle exceptions, callbacks and more...

Just plug-and-play and start repeating stuff! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sharpregion.com%2fpost%2fA-fluent-repeater.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sharpregion.com%2fpost%2fA-fluent-repeater.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/A_C_fluent_repeater</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/A_C_fluent_repeater</guid>
      <pubDate>Fri, 18 Apr 2008 13:01:03 GMT</pubDate>
    </item>
    <item>
      <title>Dynamic Language Runtime: What is it?</title>
      <description>On many blog entries around the world, specially from the bloggers from Microsoft, one would find a numerous mention about the Dynamic Language Runtime (also known as the DLR). So I was questioning myself a few days ago about the DLR and how is it different from the CLR? Here are my findings.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fdynamic-languag.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.shafqatahmed.com%2f2008%2f04%2fdynamic-languag.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Dynamic_Language_Runtime_What_is_it</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Dynamic_Language_Runtime_What_is_it</guid>
      <pubDate>Wed, 09 Apr 2008 05:03:45 GMT</pubDate>
    </item>
    <item>
      <title>Slides and Demos from Essence of LINQ Talk</title>
      <description>The sample programs and the slides from my Essence of LINQ talk are available on the Code Gallery LINQ Farm resource page. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fcharlie%2farchive%2f2008%2f04%2f07%2fcharlie-s-deck-and-demos-from-his-essence-of-linq-talk.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fcharlie%2farchive%2f2008%2f04%2f07%2fcharlie-s-deck-and-demos-from-his-essence-of-linq-talk.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Slides_and_Demos_from_Essence_of_LINQ_Talk</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Slides_and_Demos_from_Essence_of_LINQ_Talk</guid>
      <pubDate>Tue, 08 Apr 2008 07:51:47 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC Action Filter - Caching and Compression</title>
      <description>Playing with Action Filters &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2008%2f03%2f28%2fasp-net-mvc-action-filter-caching-and-compression.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2008%2f03%2f28%2fasp-net-mvc-action-filter-caching-and-compression.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Action_Filter_Caching_and_Compression</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Action_Filter_Caching_and_Compression</guid>
      <pubDate>Fri, 28 Mar 2008 04:01:02 GMT</pubDate>
    </item>
  </channel>
</rss>