<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by antny</title>
    <description>Stories kicked by antny</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>CSS Message Boxes for different message types </title>
      <description>Can you believe this: Few days ago I went to my bank to check my credit score with the Credit Bureau. The bank official typed in my personal data and sent a request. Web application responded by displaying a yellow message box with an exclamation icon saying that data processing is still in progress. He checked several more times, but he didn't notice that at one moment the message changed to &amp;quot;Account available&amp;quot;. But the message box hasn't changed. He continued to check a few more times and eventually he realized that the request was successful.

I don't know what was in the minds of developers and designers who created this application, but it certainly wasn't the user. This poor bank official was really frustrated. I can't imagine what the rest of the application looks like. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f05%2f22%2fCSS-Message-Boxes-for-different-message-types.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f05%2f22%2fCSS-Message-Boxes-for-different-message-types.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/CSS_Message_Boxes_for_different_message_types</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/CSS_Message_Boxes_for_different_message_types</guid>
      <pubDate>Thu, 22 May 2008 17:01:04 GMT</pubDate>
    </item>
    <item>
      <title>Why Should You Wrap Your ASP.NET Session Object </title>
      <description>ASP.NET provides mechanisms for storing information for a single user session or across multiple sessions. This is done using the HttpSessionState and HttpApplicationState classes. The Page class has Application and Session attributes to provide access to current objects. The simple way to access them is as following: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dev102.com%2f2008%2f05%2f07%2fwhy-should-you-wrap-your-aspnet-session-object%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dev102.com%2f2008%2f05%2f07%2fwhy-should-you-wrap-your-aspnet-session-object%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Why_Should_You_Wrap_Your_ASP_NET_Session_Object</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Why_Should_You_Wrap_Your_ASP_NET_Session_Object</guid>
      <pubDate>Wed, 07 May 2008 13:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Creating user friendly strings for enum values</title>
      <description>I'll show you how to create a custom attribute for enum values to assign extra information to an enum. In this case, we'll be associating a user friendly display name. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ytechie.com%2f2008%2f05%2fcreating-user-friendly-strings-for-enum-values.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ytechie.com%2f2008%2f05%2fcreating-user-friendly-strings-for-enum-values.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Creating_user_friendly_strings_for_enum_values</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Creating_user_friendly_strings_for_enum_values</guid>
      <pubDate>Thu, 01 May 2008 17:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Things you MUST dispose</title>
      <description>When the .NET Framework instantiates an object, it allocates memory for that object on the managed heap. The object remains on the heap until it's no longer referenced by any active code, at which point the memory it's using is reclamed by the Garbage Collector (GC). Before the GC deallocates the memory, the framework calls the object's Finalize() method, but developers are responsible for calling the Dispose() method. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fthings-you-must-dispose.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fthings-you-must-dispose.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Things_you_MUST_dispose</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Things_you_MUST_dispose</guid>
      <pubDate>Wed, 02 Apr 2008 08:46:02 GMT</pubDate>
    </item>
    <item>
      <title>13 Tips to Comment Your Code</title>
      <description>Following are 13 tips on how to comment your source code so that it is easier to understand and maintain over time. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.devtopics.com%2f13-tips-to-comment-your-code%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.devtopics.com%2f13-tips-to-comment-your-code%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/13_Tips_to_Comment_Your_Code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/13_Tips_to_Comment_Your_Code</guid>
      <pubDate>Tue, 18 Mar 2008 01:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Deep Zoom version of Silverlight 2 Developer Reference Poster</title>
      <description>&amp;quot;I took a reasonable resolution version of the Silverlight 2 Developer Reference Poster and crossed that with the Deep Zoom Composer, added a JS mouse wheel library and in about 5 minutes had a Deep Zoom version of the poster running in Silverlight.&amp;quot;

Source available, too! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fjstegman%2farchive%2f2008%2f03%2f11%2fdeep-zoom-version-of-silverlight-2-developer-reference-poster.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fjstegman%2farchive%2f2008%2f03%2f11%2fdeep-zoom-version-of-silverlight-2-developer-reference-poster.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Deep_Zoom_version_of_Silverlight_2_Developer_Reference_Poster</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Deep_Zoom_version_of_Silverlight_2_Developer_Reference_Poster</guid>
      <pubDate>Mon, 17 Mar 2008 18:01:02 GMT</pubDate>
    </item>
    <item>
      <title>stylizedweb.com - Most used CSS tricks</title>
      <description>Earlier before I have written an article about current best CSS hacks which you can see here And now here's the list of today's most used CSS tricks - tips. I have added image examples for most of them because of critics on CSS hacks article. If you think I have missed any please let me know. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstylizedweb.com%2f2008%2f03%2f12%2fmost-used-css-tricks%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstylizedweb.com%2f2008%2f03%2f12%2fmost-used-css-tricks%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/stylizedweb_com_Most_used_CSS_tricks</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/stylizedweb_com_Most_used_CSS_tricks</guid>
      <pubDate>Thu, 13 Mar 2008 00:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Top 10 Best Practices for Production ASP.NET Applications</title>
      <description>A list of some things to pay attention to when dealing with production ASP.NET applications. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdaptivate.com%2farchive%2f2008%2f02%2f12%2ftop-10-best-practices-for-production-asp-net-applications.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdaptivate.com%2farchive%2f2008%2f02%2f12%2ftop-10-best-practices-for-production-asp-net-applications.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Top_10_Best_Practices_for_Production_ASP_NET_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Top_10_Best_Practices_for_Production_ASP_NET_Applications</guid>
      <pubDate>Wed, 13 Feb 2008 21:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Confessions of a Software Developer</title>
      <description>Has anybody else ever felt overwhelmed with the sheer mass of &amp;quot;stuff&amp;quot; involved with software development? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aaronlerch.com%2fblog%2f2008%2f01%2f30%2fconfessions-of-a-software-developer%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aaronlerch.com%2fblog%2f2008%2f01%2f30%2fconfessions-of-a-software-developer%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Confessions_of_a_Software_Developer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Confessions_of_a_Software_Developer</guid>
      <pubDate>Thu, 31 Jan 2008 06:01:02 GMT</pubDate>
    </item>
    <item>
      <title>An easier Table Design View in Sql Server Management Studio</title>
      <description>One of the things that bugs me no end in Sql Server Management Studio is that the table designer's UI is a pain to use. Entering column properties  is an excercise in mousercise. It turns out there's an easier way to do this with custom views in the DataBase Diagram Designer. &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%2f237339.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.west-wind.com%2fweblog%2fposts%2f237339.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/An_easier_Table_Design_View_in_Sql_Server_Management_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/An_easier_Table_Design_View_in_Sql_Server_Management_Studio</guid>
      <pubDate>Fri, 25 Jan 2008 21:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Add or remove the www sub domain</title>
      <description>An HttpModule that let's you easily add or remove the www sub domain from any ASP.NET web application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fAdd-or-remove-the-www-sub-domain.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fAdd-or-remove-the-www-sub-domain.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Add_or_remove_the_www_sub_domain</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Add_or_remove_the_www_sub_domain</guid>
      <pubDate>Fri, 11 Jan 2008 04:31:02 GMT</pubDate>
    </item>
    <item>
      <title>The Myth of Stored Procedures Preference</title>
      <description>When looking to the Stored Proscedures debate, there is always those three factors you should measure by. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbloggingabout.net%2fblogs%2fadelkhalil%2farchive%2f2008%2f01%2f06%2fthe-myth-of-stored-procedures-preference.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbloggingabout.net%2fblogs%2fadelkhalil%2farchive%2f2008%2f01%2f06%2fthe-myth-of-stored-procedures-preference.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/The_Myth_of_Stored_Procedures_Preference</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/The_Myth_of_Stored_Procedures_Preference</guid>
      <pubDate>Sun, 06 Jan 2008 12:46:03 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server Indexes: The Basics</title>
      <description>Indexes directly affect the performance of database applications. This article uses analogies to describe how indexes work. The estimated execution plan feature of the Query Window is utilized to compare the performance of two queries in a batch. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sqlteam.com%2farticle%2fsql-server-indexes-the-basics"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sqlteam.com%2farticle%2fsql-server-indexes-the-basics" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_Server_Indexes_The_Basics</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_Server_Indexes_The_Basics</guid>
      <pubDate>Tue, 18 Dec 2007 01:31:06 GMT</pubDate>
    </item>
    <item>
      <title>Solution Folders in Vs.Net</title>
      <description>Big Visual Studio.NET solutions can be organized by grouping related projects into folders &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fvisual-studio-solution-folders.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fvisual-studio-solution-folders.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Solution_Folders_in_Vs_Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Solution_Folders_in_Vs_Net</guid>
      <pubDate>Fri, 07 Dec 2007 18:55:39 GMT</pubDate>
    </item>
    <item>
      <title>10 Podcasts Every Developer Should Listen To</title>
      <description>A list of 10 developer related podcasts, some popular and some rather obscure, ranging in topics from Agile tenets to Architecture best practices. A list I hope everyone will discover at least a few new gems to listen to. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frandypatterson.com%2f2007%2f12%2f05%2f10PodcastsEveryDeveloperShouldListenTo.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frandypatterson.com%2f2007%2f12%2f05%2f10PodcastsEveryDeveloperShouldListenTo.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/10_Podcasts_Every_Developer_Should_Listen_To</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/10_Podcasts_Every_Developer_Should_Listen_To</guid>
      <pubDate>Wed, 05 Dec 2007 11:16:05 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server 2008 will have IntelliSense</title>
      <description>Hurray! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2f3poundmass.wordpress.com%2f2007%2f11%2f30%2fsql-server-2008-will-have-intellisense%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2f3poundmass.wordpress.com%2f2007%2f11%2f30%2fsql-server-2008-will-have-intellisense%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_Server_2008_will_have_IntelliSense</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_Server_2008_will_have_IntelliSense</guid>
      <pubDate>Tue, 04 Dec 2007 04:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Re-throwing an exception in .NET; the right way.</title>
      <description>This is one of those &amp;quot;Yeah I've always seen people use it differently but I don't know why!&amp;quot; questions. Re-throwing exceptions can be misused, although it may not cause any harm to your application - there are multiple ways of re-throwing an exception, most likely for the purpose of bubbling it up to a higher level. Note to Java developers: It is different in your world. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.dotnetclr.com%2farchive%2f2007%2f11%2f05%2fRe-throwing-an-exception.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.dotnetclr.com%2farchive%2f2007%2f11%2f05%2fRe-throwing-an-exception.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Re_throwing_an_exception_in_NET_the_right_way</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Re_throwing_an_exception_in_NET_the_right_way</guid>
      <pubDate>Fri, 30 Nov 2007 00:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio 2008 RTM available for download</title>
      <description>MSDN subscribers can now download final RTM version of Visual Studio 2008.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvitalygorn.com%2fblog%2fpost%2f2007%2f11%2fVisual-Studio-2008-RTM-available-for-download.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvitalygorn.com%2fblog%2fpost%2f2007%2f11%2fVisual-Studio-2008-RTM-available-for-download.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_2008_RTM_available_for_download</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_2008_RTM_available_for_download</guid>
      <pubDate>Mon, 19 Nov 2007 12:46:03 GMT</pubDate>
    </item>
    <item>
      <title>.NET Framework 3.5 Is Shared Source</title>
      <description>Microsoft's .NET Framework 3.5 is going to be released open source. &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%2f2007%2f10%2f03%2freleasing-the-source-code-for-the-net-framework-libraries.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2007%2f10%2f03%2freleasing-the-source-code-for-the-net-framework-libraries.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/NET_Framework_3_5_Is_Open_Source</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/NET_Framework_3_5_Is_Open_Source</guid>
      <pubDate>Wed, 03 Oct 2007 16:46:25 GMT</pubDate>
    </item>
    <item>
      <title>.Net: Passing user data with Exception back to the caller method</title>
      <description>A simple way of passing any user data in the Exception back to the caller method. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f09%2f24%2f.Net-Passing-user-data-with-Exception-back-to-the-caller.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f09%2f24%2f.Net-Passing-user-data-with-Exception-back-to-the-caller.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Net_Passing_user_data_with_Exception_back_to_the_caller_method</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Net_Passing_user_data_with_Exception_back_to_the_caller_method</guid>
      <pubDate>Tue, 25 Sep 2007 06:31:01 GMT</pubDate>
    </item>
    <item>
      <title>The Power of the Predicate&amp;lt;T&amp;gt;</title>
      <description>The very flexible generic collection List&amp;lt;T&amp;gt; contains several methods that take a predicate as it's parameter.  Coupled with Anonymous Methods this provides powerfully concise code for filtering, searching and sorting your collections. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frandypatterson.com%2f2007%2f09%2f19%2fThePowerOfThePredicateltTgt.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frandypatterson.com%2f2007%2f09%2f19%2fThePowerOfThePredicateltTgt.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/The_Power_of_the_Predicate_T</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/The_Power_of_the_Predicate_T</guid>
      <pubDate>Thu, 20 Sep 2007 07:16:02 GMT</pubDate>
    </item>
    <item>
      <title>StringBuilder is not always faster</title>
      <description>Here is something you may not know about string concatenation: StringBuilder is not always faster. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.chinhdo.com%2fchinh%2fblog%2f20070224%2fstringbuilder-is-not-always-faster%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.chinhdo.com%2fchinh%2fblog%2f20070224%2fstringbuilder-is-not-always-faster%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/StringBuilder_is_not_always_faster</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/StringBuilder_is_not_always_faster</guid>
      <pubDate>Tue, 18 Sep 2007 05:01:02 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server: The proper and fastest way to check if rows exist</title>
      <description>Simple yet very underused way to check 
if rows matching a condition exist.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f09%2f13%2fSQL-Server-The-proper-and-fastest-way-to-check-if.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f09%2f13%2fSQL-Server-The-proper-and-fastest-way-to-check-if.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_Server_The_proper_and_fastest_way_to_check_if_rows_exist</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_Server_The_proper_and_fastest_way_to_check_if_rows_exist</guid>
      <pubDate>Thu, 13 Sep 2007 16:16:02 GMT</pubDate>
    </item>
    <item>
      <title>They (spammers) look like ants from here</title>
      <description>Since adding some basic user visualisation to DotNetKicks.com the other day, I have become slightly addicted to viewing the who's online page. This morning I added colour coding to the users based on their status - green for new users, blue for existing users and red for spammers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.incremental.ie%2farchive%2f2007%2f09%2f13%2fthey-spammers-look-like-ants-from-here.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.incremental.ie%2farchive%2f2007%2f09%2f13%2fthey-spammers-look-like-ants-from-here.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/They_spammers_look_like_ants_from_here</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/They_spammers_look_like_ants_from_here</guid>
      <pubDate>Thu, 13 Sep 2007 09:31:03 GMT</pubDate>
    </item>
    <item>
      <title>Quickly Find/Open a File in Visual Studio</title>
      <description>A quick way to find and open files in a large solution in Visual Studio that very few people know about. Other people have created addins to do this without even realizing the functionality was already there. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.alteridem.net%2f2007%2f09%2f11%2fquickly-findopen-a-file-in-visual-studio%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.alteridem.net%2f2007%2f09%2f11%2fquickly-findopen-a-file-in-visual-studio%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Quickly_Find_Open_a_File_in_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Quickly_Find_Open_a_File_in_Visual_Studio</guid>
      <pubDate>Tue, 11 Sep 2007 16:16:01 GMT</pubDate>
    </item>
  </channel>
</rss>