<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by bradygaster</title>
    <description>Stories kicked by bradygaster</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>20 Most Interesting Silverlight Tutorials</title>
      <description>In this article we presents a collection of best Silverlight tutorials. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ajaxline.com%2f20-most-interesting-silverlight-tutorials"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2f20-most-interesting-silverlight-tutorials" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/20_Most_Interesting_Silverlight_Tutorials</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/20_Most_Interesting_Silverlight_Tutorials</guid>
      <pubDate>Wed, 01 Jul 2009 01:45:00 GMT</pubDate>
    </item>
    <item>
      <title>Composite Application Guidance (Prism-v2) sample application using Sil</title>
      <description>Sample app showing SL 3 Child Window with Prism-v2 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.southworks.net%2fdschenkelman%2f2009%2f06%2f30%2fcomposite-application-guidance-prism-v2-sample-application-using-silverlight-3-child-window%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.southworks.net%2fdschenkelman%2f2009%2f06%2f30%2fcomposite-application-guidance-prism-v2-sample-application-using-silverlight-3-child-window%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Composite_Application_Guidance_Prism_v2_sample_application_using_Sil</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Composite_Application_Guidance_Prism_v2_sample_application_using_Sil</guid>
      <pubDate>Wed, 01 Jul 2009 19:00:02 GMT</pubDate>
    </item>
    <item>
      <title>Profiling the Memory Usage of a .NET Application </title>
      <description>Automatic memory management in .NET makes development a lot easier; however, it's still easy to introduce memory leaks into your application. For example, in a complex application, it's easy to forget to unregister event handlers, and these are notorious for holding on to objects which you don't need to keep in memory any more. This typically leads to an increase in memory usage which, if it remains unchecked and unresolved, can lead to your application exhibiting poor performance, or even running out of memory and crashing. This is where a memory profiler becomes necessary.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.simple-talk.com%2fdotnet%2f.net-tools%2fprofiling-the-memory-usage-of-a-.net-application-with-ants-memory-profiler-5%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.simple-talk.com%2fdotnet%2f.net-tools%2fprofiling-the-memory-usage-of-a-.net-application-with-ants-memory-profiler-5%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Profiling_the_Memory_Usage_of_a_NET_Application</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Profiling_the_Memory_Usage_of_a_NET_Application</guid>
      <pubDate>Mon, 29 Jun 2009 16:45:02 GMT</pubDate>
    </item>
    <item>
      <title>Application-wide action filters in ASP.NET MVC</title>
      <description>Ever had a team of developers using your ASP.NET MVC framework? Chances are you have implemented some action filters (i.e. for logging) which should be applied on all controllers in the application. Two ways to do this: kindly ask your developers to add a [Logging] attribute to the controllers they write, or kindly ask to inherit from SomeCustomControllerWithActionsInPlace.

If you have been in this situation, monday mornings, afternoons, tuesdays and other weekdays are in fact days where some developers will forget to do one of the above. This means no logging! Or any other action filters that are executed due to a developer that has not been fed with enough coffee. Wouldn't it be nice to have a central repository where you can register application-wide action filters? That's exactly what we are going to do in this blog post. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f24%2fApplication-wide-action-filters-in-ASPNET-MVC.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f24%2fApplication-wide-action-filters-in-ASPNET-MVC.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Application_wide_action_filters_in_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Application_wide_action_filters_in_ASP_NET_MVC</guid>
      <pubDate>Wed, 24 Jun 2009 14:30:02 GMT</pubDate>
    </item>
    <item>
      <title>Learning the Decorator Pattern </title>
      <description>Taking at how we can use the Decorator Pattern in our application.  The decorator pattern is a structural pattern which allows you to attach new or additional actions to an object dynamically. Using the decorator pattern provides a very clean and flexible alternative to subclassing (via inheritance) your object and thus creating an unwanted inheritance tree &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f120"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f120" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Learning_the_Decorator_Pattern</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Learning_the_Decorator_Pattern</guid>
      <pubDate>Tue, 23 Jun 2009 15:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Abandon ASP.NET WebForms!</title>
      <description>Interesting experiance with classic web forms.... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fitmeze.com%2f2009%2f05%2fabandon-aspnet%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fitmeze.com%2f2009%2f05%2fabandon-aspnet%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Abandon_ASP_NET_WebForms</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Abandon_ASP_NET_WebForms</guid>
      <pubDate>Tue, 23 Jun 2009 07:45:01 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio 2010: Web.config transforms</title>
      <description>Recently I wrote about Visual Studio 2010 and multiple web.config files support. Let's see how to play with web.config transformation so we can use one configuration on development environment and the other for production environment. &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%2f16%2fvisual-studio-2010-web-config-transforms.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f06%2f16%2fvisual-studio-2010-web-config-transforms.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Web_config_transforms</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Web_config_transforms</guid>
      <pubDate>Mon, 22 Jun 2009 15:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Automagic Time Localization</title>
      <description>A trick to localize timestamps without requiring users to pick their time zone manually. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fkohari.org%2f2009%2f06%2f15%2fautomagic-time-localization%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fkohari.org%2f2009%2f06%2f15%2fautomagic-time-localization%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Automagic_Time_Localization</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Automagic_Time_Localization</guid>
      <pubDate>Mon, 15 Jun 2009 20:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Customizing Silverlight 3 DataGrid Headers</title>
      <description>Dan Wahlin demonstrates the use of styles to improve the appearance of Silverlight DataGrid headers. Nice tutorial if you're looking for a comprehensive example on how to use styles in Silverlight.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fdwahlin%2farchive%2f2009%2f06%2f11%2fcustomizing-silverlight-3-datagrid-headers.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fdwahlin%2farchive%2f2009%2f06%2f11%2fcustomizing-silverlight-3-datagrid-headers.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Customizing_Silverlight_3_DataGrid_Headers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Customizing_Silverlight_3_DataGrid_Headers</guid>
      <pubDate>Fri, 12 Jun 2009 01:32:02 GMT</pubDate>
    </item>
    <item>
      <title>Creating a PowerShell Provider pt 1: Creating the Drive</title>
      <description>Jim Christopher demonstrates the creation of a custom PowerShell provider. The data storage mechanism he chooses to provide via PowerShell? The ASP.NET P&amp;amp;M database! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.beefycode.com%2fpost%2fCreating-a-PowerShell-Provider-pt-1-Creating-the-Drive.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.beefycode.com%2fpost%2fCreating-a-PowerShell-Provider-pt-1-Creating-the-Drive.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Creating_a_PowerShell_Provider_pt_1_Creating_the_Drive</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Creating_a_PowerShell_Provider_pt_1_Creating_the_Drive</guid>
      <pubDate>Fri, 12 Jun 2009 01:29:56 GMT</pubDate>
    </item>
    <item>
      <title>The Most Powerful Development Tool Ever Made</title>
      <description>Justin Etheredge wrote a great blog post about not inventing the wheel everytime a classic programming problem shows up. &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%2f06%2f10%2fThe-Most-Powerful-Development-Tool-Ever-Made.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f06%2f10%2fThe-Most-Powerful-Development-Tool-Ever-Made.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/The_Most_Powerful_Development_Tool_Ever_Made</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/The_Most_Powerful_Development_Tool_Ever_Made</guid>
      <pubDate>Thu, 11 Jun 2009 16:00:03 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight 3 Behaviors : Double Click Trigger</title>
      <description>How to create a Double Click Trigger in Silverlight 3 to compose rich interactive experiences. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcompiledexperience.com%2fBlog%2fpost%2fSilverlight-3-Behaviors-Double-Click-Trigger.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcompiledexperience.com%2fBlog%2fpost%2fSilverlight-3-Behaviors-Double-Click-Trigger.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_3_Behaviors_Double_Click_Trigger</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_3_Behaviors_Double_Click_Trigger</guid>
      <pubDate>Thu, 11 Jun 2009 13:45:00 GMT</pubDate>
    </item>
    <item>
      <title>Binding in ASP.NET MVC</title>
      <description>Answers to some frequently asked questions about binding data to forms in ASP.NET MVC.  Covers Bind(), ModelBinders, and ViewData.Model. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstevesmithblog.com%2fblog%2fbinding-in-asp-net-mvc%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstevesmithblog.com%2fblog%2fbinding-in-asp-net-mvc%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Binding_in_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Binding_in_ASP_NET_MVC</guid>
      <pubDate>Thu, 11 Jun 2009 04:45:00 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC TDD using Visual Studio 2010</title>
      <description>Phil Haack announced yesterday that the tooling support for ASP.NET MVC is available for Visual Studio 2010. Troy Goode already blogged about the designer snippets (which are really really cool, just like other parts of the roadmap for ASP.NET MVC 2.0). I'll give the new TDD workflow introduced in VS2010 a take. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f10%2fASPNET-MVC-TDD-using-Visual-Studio-2010.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f10%2fASPNET-MVC-TDD-using-Visual-Studio-2010.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_MVC_TDD_using_Visual_Studio_2010</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_MVC_TDD_using_Visual_Studio_2010</guid>
      <pubDate>Wed, 10 Jun 2009 12:15:07 GMT</pubDate>
    </item>
    <item>
      <title>Zen and the Art of Project Management</title>
      <description>Nate Kohari, the developer of Ninject, announces Zen, a project management system based around lean/kanban. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fkohari.org%2f2009%2f06%2f09%2fzen-and-the-art-of-project-management%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fkohari.org%2f2009%2f06%2f09%2fzen-and-the-art-of-project-management%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Zen_and_the_Art_of_Project_Management</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Zen_and_the_Art_of_Project_Management</guid>
      <pubDate>Wed, 10 Jun 2009 03:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Creating a Tag Cloud using ASP.NET MVC and the Entity Framework</title>
      <description>A Tag Cloud is a visual depiction of Tags or categories on a web site. CSS is used to set the variable font size of each Tag to illustrate its relative frequency or popularity within the site. As part of the migration of my site to ASP.NET MVC, I am introducing one to replace the Categories navigation that appears on the left hand side of each page, which contains a count of items within each category. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d107"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d107" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Creating_a_Tag_Cloud_using_ASP_NET_MVC_and_the_Entity_Framework</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Creating_a_Tag_Cloud_using_ASP_NET_MVC_and_the_Entity_Framework</guid>
      <pubDate>Tue, 09 Jun 2009 19:45:01 GMT</pubDate>
    </item>
    <item>
      <title>A view from the cloud (or: locate your ASP.NET MVC views on Azure)</title>
      <description>Hosting and deploying ASP.NET MVC applications on Windows Azure works like a charm. However, if you have been reading my blog for a while, you might have seen that I don't like the fact that my ASP.NET MVC views are stored in the deployed package as well. Why? If I want to change some text or I made a typo, I would have to re-deploy my entire application for this. Takes a while, application is down during deployment, . And all of that for a typo.

Luckily, Windows Azure also provides blob storage, on which you can host any blob of data (or any file, if you don't like saying "blob"). These blobs can easily be managed with a tool like Azure Blob Storage Explorer. Now let's see if we can abuse blob storage for storing the views of an ASP.NET MVC web application, making it easier to modify the text and stuff. We'll do this by creating a new VirtualPathProvider. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f08%2fA-view-from-the-cloud-(or-locate-your-ASPNET-MVC-views-on-Windows-Azure-Blob-Storage).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f06%2f08%2fA-view-from-the-cloud-(or-locate-your-ASPNET-MVC-views-on-Windows-Azure-Blob-Storage).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/A_view_from_the_cloud_or_locate_your_ASP_NET_MVC_views_on_Azure</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/A_view_from_the_cloud_or_locate_your_ASP_NET_MVC_views_on_Azure</guid>
      <pubDate>Tue, 09 Jun 2009 14:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Handling Legacy URLs with ASP.NET MVC</title>
      <description>According to Google's Webmaster tools, there are about 15,000 incoming links to my site. 13,000 of those reference a .ASPX file on disk. When I convert to MVC, with new Search Engine Friendly urls, all those links will break unless I do something about it. Presenting users with a 404 - file not found is not an option. I need to show them the content they were expecting, and update Search Engines with the news that things have changed. Here's how I will be managing those Legacy URLs. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d108"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d108" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Handling_Legacy_URLs_with_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Handling_Legacy_URLs_with_ASP_NET_MVC</guid>
      <pubDate>Mon, 08 Jun 2009 22:00:00 GMT</pubDate>
    </item>
    <item>
      <title>LINQ in Action samples available in LINQPad</title>
      <description>In addition to being a great LINQ tool and C# and VB snippet IDE, LINQPad now integrates code samples from LINQ books.
The first LINQPad-enabled book is LINQ in Action. This allows you to quickly and painlessly discover LINQ. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2ffmarguerie%2farchive%2f2009%2f06%2f06%2flinq-in-action-samples-in-linqpad.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2ffmarguerie%2farchive%2f2009%2f06%2f06%2flinq-in-action-samples-in-linqpad.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/LINQ_in_Action_samples_available_in_LINQPad</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/LINQ_in_Action_samples_available_in_LINQPad</guid>
      <pubDate>Sun, 07 Jun 2009 12:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Refactoring: parameterize constructor</title>
      <description>In legacy code you may find classes with constructor where some objects are created and initialized. These classes are not easily testable because they depend on other classes and therefore when you unit test these classes they may also throw exceptions of classes they depend on. In these cases we can use parameterize constructor refactoring. &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%2f03%2f04%2frefactoring-parameterize-constructor.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f03%2f04%2frefactoring-parameterize-constructor.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Refactoring_parameterize_constructor</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Refactoring_parameterize_constructor</guid>
      <pubDate>Mon, 08 Jun 2009 16:45:03 GMT</pubDate>
    </item>
    <item>
      <title>List of Microsoft training kits</title>
      <description>Microsoft training kits are pretty good things to explore when you start learning some new technology. Here are links to some training kits I found to be interesting and useful. Some of these live also in my laptop and when I have free moments I explore them to learn more about these technologies. So, the list of training kits is here. &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%2f04%2flist-of-microsoft-training-kits.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f06%2f04%2flist-of-microsoft-training-kits.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/List_of_Microsoft_training_kits</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/List_of_Microsoft_training_kits</guid>
      <pubDate>Thu, 04 Jun 2009 23:39:45 GMT</pubDate>
    </item>
    <item>
      <title>IIS Search Engine Optimization Toolkit (ScottGu)</title>
      <description>&amp;quot;Today we are shipping the first beta of a new free tool - the IIS Search Engine Optimization Toolkit - that makes it easy to perform SEO analysis on your site and identify and fix issues within it.&amp;quot; &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%2f2009%2f06%2f03%2fiis-search-engine-optimization-toolkit.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2009%2f06%2f03%2fiis-search-engine-optimization-toolkit.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/IIS_Search_Engine_Optimization_Toolkit_ScottGu</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/IIS_Search_Engine_Optimization_Toolkit_ScottGu</guid>
      <pubDate>Thu, 04 Jun 2009 10:45:05 GMT</pubDate>
    </item>
    <item>
      <title>How to Create a Custom Performance Counter</title>
      <description>Taking a look at how to create custom performance counters for usage in your application

Part of the core .net framework allows you to create code which can hook into the underlying performance counters which the windows OS has. We will show how you can easily create hooks to take advantage of these counters. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f114"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f114" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/How_to_Create_a_Custom_Performance_Counter</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/How_to_Create_a_Custom_Performance_Counter</guid>
      <pubDate>Tue, 02 Jun 2009 16:00:03 GMT</pubDate>
    </item>
    <item>
      <title>Free ASP.NET 4.0 beta hosting available</title>
      <description>Guys from ORCS Web are offering free ASP.NET 4.0 beta hosting until the end of October. Hosting plan is called "VS2010 and Web Deployment Tool Beta Program". If you are interested in it then please feel free to sign up. &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%2f01%2ffree-asp-net-4-0-beta-hosting-available.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fgunnarpeipman%2farchive%2f2009%2f06%2f01%2ffree-asp-net-4-0-beta-hosting-available.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Free_ASP_NET_4_0_beta_hosting_available</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Free_ASP_NET_4_0_beta_hosting_available</guid>
      <pubDate>Mon, 01 Jun 2009 15:03:35 GMT</pubDate>
    </item>
    <item>
      <title>Vishal Joshi's Tangent: Web 1-Click Publish with VS 2010</title>
      <description>Today my goal is to go through an end to end walkthrough of the Web 1-Click  Publish feature of VS 2010.  This walkthrough will cover following : Prepping up an ASP.NET 4.0 web application which is using a SQL Server Database for deployment, Gathering the remote web and database server information, Setting up Web.config Transformation to change your connectionString, Including SQL Server Databases in Web Deployment, Creating a 1-Click Publish Profile to Publish your web content, databases and transformed web.config files, 1-Click Publish your Web Application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvishaljoshi.blogspot.com%2f2009%2f05%2fweb-1-click-publish-with-vs-2010.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvishaljoshi.blogspot.com%2f2009%2f05%2fweb-1-click-publish-with-vs-2010.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Vishal_Joshi_s_Tangent_Web_1_Click_Publish_with_VS_2010</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Vishal_Joshi_s_Tangent_Web_1_Click_Publish_with_VS_2010</guid>
      <pubDate>Mon, 01 Jun 2009 12:35:08 GMT</pubDate>
    </item>
  </channel>
</rss>