<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by natm</title>
    <description>Stories kicked by natm</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>Installation and Configuration of Microsoft Velocity</title>
      <description>David walks us through how to install and configure Microsoft Velocity. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2faspnetpodcast.com%2fCS11%2fblogs%2fasp.net_podcast%2farchive%2f2009%2f03%2f18%2fasp-net-podcast-show-137-install-and-configuration-of-microsoft-velocity.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2faspnetpodcast.com%2fCS11%2fblogs%2fasp.net_podcast%2farchive%2f2009%2f03%2f18%2fasp-net-podcast-show-137-install-and-configuration-of-microsoft-velocity.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Installation_and_Configuration_of_Microsoft_Velocity</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Installation_and_Configuration_of_Microsoft_Velocity</guid>
      <pubDate>Thu, 19 Mar 2009 16:01:18 GMT</pubDate>
    </item>
    <item>
      <title>The State of ALT.NET</title>
      <description>Over the past 6 months I have been trying to really quantify what it means to be using ALT.NET practices. And I can honestly say that I still honestly don't know what it means to be an ALT.NETer. But I have come to a number of conclusions about the state of the ALT.NET community, that I wanted to share.
(1) The ALT.NET Community is fractured among itself.
(2) Take the religious zealotry out of ALT.NET
(3) Craftsmanship with out Engineering is no way to program software. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.coderjournal.com%2f2009%2f03%2fthe-state-of-altnet%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.coderjournal.com%2f2009%2f03%2fthe-state-of-altnet%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/altnet/The_State_of_ALT_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/altnet/The_State_of_ALT_NET</guid>
      <pubDate>Thu, 19 Mar 2009 03:16:02 GMT</pubDate>
    </item>
    <item>
      <title>10 C# Shorthands that improve productivity</title>
      <description>One of the best things about C# is that as the language and libraries expand thought is put into keeping things readable. Below I have listed 10 shorthands that you can use to make your code tighter and less wordy. No doubt you know one or more already - but do you currently use all ten of them ? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dijksterhuis.org%2f10-c-coding-shorthands-that-improve-productivity%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dijksterhuis.org%2f10-c-coding-shorthands-that-improve-productivity%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/10_C_Shorthands_that_improve_productivity</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/10_C_Shorthands_that_improve_productivity</guid>
      <pubDate>Tue, 17 Mar 2009 22:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Hosting your OSS project on github</title>
      <description>Aaron walks through hosting an oss project on github and how to use git as the SCC system. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2faaron.jensen%2farchive%2f2009%2f03%2f12%2fhosting-your-oss-project-on-github.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2faaron.jensen%2farchive%2f2009%2f03%2f12%2fhosting-your-oss-project-on-github.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Hosting_your_OSS_project_on_github</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Hosting_your_OSS_project_on_github</guid>
      <pubDate>Fri, 13 Mar 2009 17:31:09 GMT</pubDate>
    </item>
    <item>
      <title>Unit Testable HttpModule and HttpHandler - Kazi Manzur Rashid's Blog</title>
      <description>

With the new System.Web.Abstraction namespace we can now easily write unit testable HttpModule and HttpHandler. In this post, I will show you how to write unit testable HttpModule and HttpHandler.

Prior the release of System.Web.Abstraction the problem with unit testing of these web infrastructural items is HttpContext, it is sealed, no way to mock it with Rhino or Moq. The only option is to create the wrapper objects of these non-mockable objects but it has a very long tail like HttpRequest, HttpResponse, HttpSessionState, HttpServerUtility etc etc. And this is the exact thing that the System.Web.Abstraction provides, all wrappers around the non-mockable objects of HttpContext. But still, both the HttpModule and HttpHandler depends upon the original HttpContext which I hope will change in ASP.NET 4.0. till then we need to create a super layer for making it Unit Testable.
 &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%2funit-testable-httpmodule-and-httphandler.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%2funit-testable-httpmodule-and-httphandler.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Unit_Testable_HttpModule_and_HttpHandler_Kazi_Manzur_Rashid_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Unit_Testable_HttpModule_and_HttpHandler_Kazi_Manzur_Rashid_s_Blog</guid>
      <pubDate>Thu, 12 Mar 2009 23:31:11 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server Five methods converting rows to columns</title>
      <description>Five methods converting rows to columns &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsqlserveradvisor.blogspot.com%2f2009%2f03%2fsql-server-convert-rows-to-columns.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsqlserveradvisor.blogspot.com%2f2009%2f03%2fsql-server-convert-rows-to-columns.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_Server_Five_methods_converting_rows_to_columns</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_Server_Five_methods_converting_rows_to_columns</guid>
      <pubDate>Mon, 16 Mar 2009 12:16:03 GMT</pubDate>
    </item>
    <item>
      <title>What's the difference between CONST and READONLY in .Net?</title>
      <description>Ever sit around talking to your co-workers about random things, when all of a sudden you ask "What's the difference between const and readonly in .Net?". If so, you are not alone. If not, well, you're just weird. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.carlj.ca%2f2009%2f03%2f09%2fwhats-the-difference-between-const-and-readonly-in-net%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.carlj.ca%2f2009%2f03%2f09%2fwhats-the-difference-between-const-and-readonly-in-net%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/What_s_the_difference_between_CONST_and_READONLY_in_Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/What_s_the_difference_between_CONST_and_READONLY_in_Net</guid>
      <pubDate>Tue, 10 Mar 2009 19:01:16 GMT</pubDate>
    </item>
    <item>
      <title>6 Things Developers Should Know By 2010</title>
      <description>A list of 6 things I think asp.net developers should know by 2010 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.saviantllc.com%2farchive%2f2009%2f03%2f09%2f4.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.saviantllc.com%2farchive%2f2009%2f03%2f09%2f4.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/6_Things_Developers_Should_Know_By_2010</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/6_Things_Developers_Should_Know_By_2010</guid>
      <pubDate>Wed, 11 Mar 2009 18:16:02 GMT</pubDate>
    </item>
    <item>
      <title>C# Design Patterns - The Facade Pattern</title>
      <description>In our city dog registration application lets assume there are a few things that need to be done when a new dog is registered. First the new dog and it's owners must be entered into the system. Next the registration fee must be processed. Finally, we want the system to send the owners the welcome email.
This is a very simple example but this action requires 3 separate systems to do something in order to complete this one task of registering a new dog. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f03%2f09%2fc-design-patterns-the-facade-pattern%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f03%2f09%2fc-design-patterns-the-facade-pattern%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/C_Design_Patterns_The_Facade_Pattern</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/C_Design_Patterns_The_Facade_Pattern</guid>
      <pubDate>Tue, 10 Mar 2009 18:16:10 GMT</pubDate>
    </item>
    <item>
      <title>.NET - Health Monitoring in ASP.NET 3.5</title>
      <description>I am a big advocate on less is more, and when it comes to writing code to monitor an ASP.NET application, less code is definitely more. As a developer, once you have finished developing your application and it's deployed into production, you'll need to monitor it and have it notify you when something goes wrong. There are several ways to do this, from utilising the global.asax file to writing custom classes. But a little known feature in ASP.NET is health monitoring. This gives you the ability to monitor the health of an ASP.NET application. This article won't delve into the specifics of creating your own custom health monitoring class, but it will focus on what is available to ASP.NET developers out of the box. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d283"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d283" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/NET_Health_Monitoring_in_ASP_NET_3_5</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/NET_Health_Monitoring_in_ASP_NET_3_5</guid>
      <pubDate>Tue, 10 Mar 2009 14:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Cache-and-Collect Lifecycle Management in Ninject 2.0</title>
      <description>An explanation of a new solution to an old problem with inversion of control. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fkohari.org%2f2009%2f03%2f06%2fcache-and-collect-lifecycle-management-in-ninject-20%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fkohari.org%2f2009%2f03%2f06%2fcache-and-collect-lifecycle-management-in-ninject-20%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Cache_and_Collect_Lifecycle_Management_in_Ninject_2_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Cache_and_Collect_Lifecycle_Management_in_Ninject_2_0</guid>
      <pubDate>Sat, 07 Mar 2009 23:31:11 GMT</pubDate>
    </item>
    <item>
      <title>12+ open source projects for .NET you probably didn't know about.</title>
      <description>Here's a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.webdistortion.com%2f2009%2f03%2f06%2f12-open-source-projects-for-net-you-probably-didn%25E2%2580%2599t-know-about%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.webdistortion.com%2f2009%2f03%2f06%2f12-open-source-projects-for-net-you-probably-didn%25E2%2580%2599t-know-about%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/altnet/12_open_source_projects_for_NET_you_probably_didn_t_know_about</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/altnet/12_open_source_projects_for_NET_you_probably_didn_t_know_about</guid>
      <pubDate>Sat, 07 Mar 2009 01:01:02 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Routing performance compare to HttpHandler</title>
      <description>This article shows few throughput perf test graphs for ASP.NET MVC and ASP.NET http handler &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.gtrifonov.com%2fblog%2f2009%2f03%2f04%2fASP_NET_Routing_performance_compare_to_HttpHandler.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.gtrifonov.com%2fblog%2f2009%2f03%2f04%2fASP_NET_Routing_performance_compare_to_HttpHandler.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_Routing_performance_compare_to_HttpHandler</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_Routing_performance_compare_to_HttpHandler</guid>
      <pubDate>Fri, 06 Mar 2009 21:16:25 GMT</pubDate>
    </item>
    <item>
      <title>Exponentially Improve Performance to Start ASP.net 2.0, 3.0, 3.5 Debug</title>
      <description>Stop the waiting when debugging your ASP.Net Web Applications!  Here's a complete RAM Disk solution to save your sanity. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fit.toolbox.com%2fblogs%2fpaytonbyrd%2fexponentially-improve-performance-to-start-aspnet-20-30-35-debugger-30364"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fit.toolbox.com%2fblogs%2fpaytonbyrd%2fexponentially-improve-performance-to-start-aspnet-20-30-35-debugger-30364" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Exponentially_Improve_Performance_to_Start_ASP_net_2_0_3_0_3_5_Debug</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Exponentially_Improve_Performance_to_Start_ASP_net_2_0_3_0_3_5_Debug</guid>
      <pubDate>Fri, 06 Mar 2009 19:46:05 GMT</pubDate>
    </item>
    <item>
      <title>Using SQL Service Broker in NET applications </title>
      <description>Javi discusses the pitfalls you might encounter while trying to use SQL Service Broker from a .NET application &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjaviercrespoalvez.com%2f2009%2f03%2fusing-sql-service-broker-in-net.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjaviercrespoalvez.com%2f2009%2f03%2fusing-sql-service-broker-in-net.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Using_SQL_Service_Broker_in_NET_applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Using_SQL_Service_Broker_in_NET_applications</guid>
      <pubDate>Thu, 12 Mar 2009 18:16:02 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET - YSlow and ASP.NET: 100 points &amp;quot;A&amp;quot; grade is possible</title>
      <description>Just in case if somebody doesn't know what YSlow is? YSlow is Firefox add-on integrated with Firebug.  It analyzes web pages and tells you why they are slow. You can run it on you project and see your grade. You can do some easy improvements and maybe even get D grade. However to get higher then D grade becomes a real challenge.  Below I will describe how I got A grade (100 points) on my web blog application.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.karpach.com%2fyslow-and-asp-net-100-points-a-grade.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.karpach.com%2fyslow-and-asp-net-100-points-a-grade.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_YSlow_and_ASP_NET_100_points_A_grade_is_possible</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_YSlow_and_ASP_NET_100_points_A_grade_is_possible</guid>
      <pubDate>Mon, 02 Mar 2009 19:46:02 GMT</pubDate>
    </item>
    <item>
      <title>A New Look for Visual Studio 2010!</title>
      <description>At the PDC and TechEd EMEA last year we described our new editor support built on the WPF technology in .NET Framework 4.0.  Today I'm happy to reveal the new UI for Visual Studio, also built on WPF: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fjasonz%2farchive%2f2009%2f02%2f20%2fa-new-look-for-visual-studio-2010.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fjasonz%2farchive%2f2009%2f02%2f20%2fa-new-look-for-visual-studio-2010.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/A_New_Look_for_Visual_Studio_2010</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/A_New_Look_for_Visual_Studio_2010</guid>
      <pubDate>Wed, 25 Feb 2009 04:46:02 GMT</pubDate>
    </item>
    <item>
      <title>An Open Letter to Joel Spolsky and Jeff Atwood </title>
      <description>Uncle Bob writes an open letter to Stack Overflow and offers to be a guest on the show. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.objectmentor.com%2farticles%2f2009%2f02%2f06%2fon-open-letter-to-joel-spolsky-and-jeff-atwood"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.objectmentor.com%2farticles%2f2009%2f02%2f06%2fon-open-letter-to-joel-spolsky-and-jeff-atwood" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/An_Open_Letter_to_Joel_Spolsky_and_Jeff_Atwood</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/An_Open_Letter_to_Joel_Spolsky_and_Jeff_Atwood</guid>
      <pubDate>Sat, 07 Feb 2009 08:59:43 GMT</pubDate>
    </item>
    <item>
      <title>10 reasons why .net sucks (and 10 more): The explanation</title>
      <description>See for yourself. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f02%2f10-reasons-why-net-sucks-and-10-more.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f02%2f10-reasons-why-net-sucks-and-10-more.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/10_reasons_why_net_sucks_and_10_more_The_explanation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/10_reasons_why_net_sucks_and_10_more_The_explanation</guid>
      <pubDate>Sat, 07 Feb 2009 01:57:43 GMT</pubDate>
    </item>
    <item>
      <title>Load balancing SharePoint with HAProxy</title>
      <description>An article on how to load balance SharePoint across multiple web servers using HAProxy. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnatmorris.co.uk%2f2009%2f01%2fhaproxy-sharepoint-ntlm%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnatmorris.co.uk%2f2009%2f01%2fhaproxy-sharepoint-ntlm%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Load_balancing_SharePoint_with_HAProxy</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Load_balancing_SharePoint_with_HAProxy</guid>
      <pubDate>Thu, 29 Jan 2009 21:25:48 GMT</pubDate>
    </item>
    <item>
      <title>Top Visual Studio Add-ins</title>
      <description>I am often asked what my favourite development tools are, so I thought I'd write down a few that I use and why. I have split this list in 2 as some of these are add-ons for visual studio and others are just standalone applications here are the VS Add-ins. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweb2asp.net%2f2009%2f01%2ftop-visual-studio-add-ins.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweb2asp.net%2f2009%2f01%2ftop-visual-studio-add-ins.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Top_Visual_Studio_Add_ins</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Top_Visual_Studio_Add_ins</guid>
      <pubDate>Wed, 28 Jan 2009 02:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio Tips &amp;amp; Tricks from Sara Ford Flix by Scott Cate</title>
      <description>Visual Studio Tips &amp;amp; Tricks from Sara Ford Flix
What a great idea
One of my favorites it to expand VS over two monitors 

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fscottcate.com%2ftricks%2fvstricks-introduction%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fscottcate.com%2ftricks%2fvstricks-introduction%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_Tips_Tricks_from_Sara_Ford_Flix_by_Scott_Cate</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_Tips_Tricks_from_Sara_Ford_Flix_by_Scott_Cate</guid>
      <pubDate>Tue, 27 Jan 2009 19:46:18 GMT</pubDate>
    </item>
    <item>
      <title>jQuery Playground from Google</title>
      <description>Awsome tool to test jquery online &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcode.google.com%2fapis%2fajax%2fplayground%2f%23jquery"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcode.google.com%2fapis%2fajax%2fplayground%2f%23jquery" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/jQuery_Playground_from_Google</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/jQuery_Playground_from_Google</guid>
      <pubDate>Sat, 24 Jan 2009 19:46:02 GMT</pubDate>
    </item>
    <item>
      <title>jQuery 1.3.1 Released</title>
      <description>This is a fix to recently released jQuery 1.3 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.jquery.com%2f2009%2f01%2f21%2fjquery-131-released%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.jquery.com%2f2009%2f01%2f21%2fjquery-131-released%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/jQuery_1_3_1_Released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/jQuery_1_3_1_Released</guid>
      <pubDate>Fri, 23 Jan 2009 02:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Don't use Delete Links because they create Security Holes</title>
      <description>Reasons why you shouldn't use a Delete link in your web application &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstephenwalther.com%2fblog%2farchive%2f2009%2f01%2f21%2fasp.net-mvc-tip-46-ndash-donrsquot-use-delete-links-because.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstephenwalther.com%2fblog%2farchive%2f2009%2f01%2f21%2fasp.net-mvc-tip-46-ndash-donrsquot-use-delete-links-because.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Don_t_use_Delete_Links_because_they_create_Security_Holes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Don_t_use_Delete_Links_because_they_create_Security_Holes</guid>
      <pubDate>Thu, 22 Jan 2009 07:46:02 GMT</pubDate>
    </item>
  </channel>
</rss>