<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by manovich</title>
    <description>Stories kicked by manovich</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>Correct event invocation</title>
      <description>Be aware that if there are no subscribers a .NET event will be null. Therefore when raising the event from C# test it for null first. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fcorrect-event-invocation.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fcorrect-event-invocation.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Correct_event_invocation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Correct_event_invocation</guid>
      <pubDate>Sat, 01 Mar 2008 17:05:18 GMT</pubDate>
    </item>
    <item>
      <title>How to check email works with no SMTP</title>
      <description>Testing code that sends email has always been a pain. You had to set up a SMTP service just to test that your .NET application sends the e-mail correctly... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fsmtp-delivery-method-SpecifiedPickupDirectory.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fsmtp-delivery-method-SpecifiedPickupDirectory.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_to_check_email_works_with_no_SMTP</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_to_check_email_works_with_no_SMTP</guid>
      <pubDate>Wed, 09 Jan 2008 00:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Use DebuggerBrowsable attribute to clean up class view in a debugger</title>
      <description>How to exclude extraneous class members from view in the debugger. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fDebuggerBrowsableAttribute.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fDebuggerBrowsableAttribute.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Use_DebuggerBrowsable_attribute_to_clean_up_class_view_in_a_debugger</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Use_DebuggerBrowsable_attribute_to_clean_up_class_view_in_a_debugger</guid>
      <pubDate>Tue, 04 Dec 2007 00:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Speed up inserting records into database with SqlBulkCopy class</title>
      <description>When you need to insert a great deal of rows into database... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fsqlbulkcopy.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fsqlbulkcopy.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/adonet/Speed_up_inserting_records_into_database_with_SqlBulkCopy_class</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/adonet/Speed_up_inserting_records_into_database_with_SqlBulkCopy_class</guid>
      <pubDate>Wed, 14 Nov 2007 22:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Tips for Blogging about .NET</title>
      <description>More developers should be blogging as long as they write well and maintain great blogs. Here are tips to do that. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbrennan.offwhite.net%2fblog%2f2007%2f11%2f09%2freasons-to-blog-and-tips-to-do-it-well%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbrennan.offwhite.net%2fblog%2f2007%2f11%2f09%2freasons-to-blog-and-tips-to-do-it-well%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Tips_for_Blogging_about_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Tips_for_Blogging_about_NET</guid>
      <pubDate>Wed, 14 Nov 2007 13:31:07 GMT</pubDate>
    </item>
    <item>
      <title>Create elegant code with Action delegate and List.ForEach method</title>
      <description>Small example of how to use Action delegate to perform some action on all elements of a collection. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2faction_delegate_with_foreach.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2faction_delegate_with_foreach.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Create_elegant_code_with_Action_delegate_and_List_ForEach_method</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Create_elegant_code_with_Action_delegate_and_List_ForEach_method</guid>
      <pubDate>Mon, 12 Nov 2007 12:46:02 GMT</pubDate>
    </item>
    <item>
      <title>3 hot uses for HttpContext.Current.Items "They" won't tell you about.</title>
      <description>HttpContext.Current.Items, arcane enough to give you guru-cred to the mid-range noobs, simple enough that it can be leveraged for good and / or evil. Awesome.

3 Tips for using it that aren't entirely obvious. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mikeduncan.com%2f3-hot-uses-for-httpcontextcurrentitems-they-wont-tell-you-about%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mikeduncan.com%2f3-hot-uses-for-httpcontextcurrentitems-they-wont-tell-you-about%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/3_hot_uses_for_HttpContext_Current_Items_They_won_t_tell_you_about</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/3_hot_uses_for_HttpContext_Current_Items_They_won_t_tell_you_about</guid>
      <pubDate>Fri, 02 Nov 2007 17:16:02 GMT</pubDate>
    </item>
    <item>
      <title>How to call a surrogate for Dispose() on StringBuilder objects</title>
      <description>How to release memory used by StringBuilder without calling System.GC.Collect(). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fdispose_stringbuilder.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fdispose_stringbuilder.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/How_to_call_a_surrogate_for_Dispose_on_StringBuilder_objects</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/How_to_call_a_surrogate_for_Dispose_on_StringBuilder_objects</guid>
      <pubDate>Thu, 25 Oct 2007 21:57:50 GMT</pubDate>
    </item>
    <item>
      <title>How to determine whether a property or a method is more appropriate</title>
      <description>Guidelines for choosing between implementing a class member as a property or a method. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fproperty_vs_method.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fproperty_vs_method.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/How_to_determine_whether_a_property_or_a_method_is_more_appropriate</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/How_to_determine_whether_a_property_or_a_method_is_more_appropriate</guid>
      <pubDate>Fri, 19 Oct 2007 09:31:03 GMT</pubDate>
    </item>
    <item>
      <title>What Subversion 1.5 has in store for you?</title>
      <description>It's been long time and we keep hearing a lot about Subversion 1.5. I am a bit curious and tempted to see what actually it has to offer us.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.viratics.com%2fe107_plugins%2fcontent%2fcontent.php%3fcontent.40"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.viratics.com%2fe107_plugins%2fcontent%2fcontent.php%3fcontent.40" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/What_Subversion_1_5_has_in_store_for_you</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/What_Subversion_1_5_has_in_store_for_you</guid>
      <pubDate>Sun, 14 Oct 2007 17:01:02 GMT</pubDate>
    </item>
    <item>
      <title>How to resolve relative url's without ResolveUrl</title>
      <description>string absoluteUrl = VirtualPathUtility.ToAbsolute(relativeUrl); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fVirtualPathUtility-ToAbsolute.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fVirtualPathUtility-ToAbsolute.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_resolve_relative_url_s_without_ResolveUrl</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_resolve_relative_url_s_without_ResolveUrl</guid>
      <pubDate>Sun, 14 Oct 2007 06:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Speed up Visual Studio 2005</title>
      <description>Nice tricks to speed up Visual Studio 2005 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fspeedup_visual_studio.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fspeedup_visual_studio.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Speed_up_Visual_Studio_2005</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Speed_up_Visual_Studio_2005</guid>
      <pubDate>Thu, 11 Oct 2007 20:46:12 GMT</pubDate>
    </item>
    <item>
      <title>Tag mapping in ASP.NET</title>
      <description>Basically, it's a way to turn all instances of a type into another type at compile time. In human language it means that it can turn all e.g. System.Web.UI.WebControls.Textbox instances in the entire website into another control. &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%2fTag-mapping-in-ASPNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fTag-mapping-in-ASPNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Tag_mapping_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Tag_mapping_in_ASP_NET</guid>
      <pubDate>Thu, 11 Oct 2007 14:46:03 GMT</pubDate>
    </item>
    <item>
      <title>43 Exceptionally Useful AJAX Applications</title>
      <description>Usability on websites is exploding right now. AJAX has enabled web developers everywhere to add functionality to their sites like never before. They've gathered 43 extremely useful AJAX applications for use on any website.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.designvitality.com%2fblog%2f2007%2f10%2f43-exceptionally-useful-ajax-applications%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.designvitality.com%2fblog%2f2007%2f10%2f43-exceptionally-useful-ajax-applications%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/43_Exceptionally_Useful_AJAX_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/43_Exceptionally_Useful_AJAX_Applications</guid>
      <pubDate>Mon, 08 Oct 2007 17:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf</title>
      <description>Some more information from ALT.NET on the new ASP.NET MVC framework. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fjeffrey.palermo%2farchive%2f2007%2f10%2f05%2faltnetconf-scott-guthrie-announces-asp-net-mvc-framework-at-alt-net-conf.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fjeffrey.palermo%2farchive%2f2007%2f10%2f05%2faltnetconf-scott-guthrie-announces-asp-net-mvc-framework-at-alt-net-conf.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Scott_Guthrie_announces_ASP_NET_MVC_framework_at_Alt_Net_Conf</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Scott_Guthrie_announces_ASP_NET_MVC_framework_at_Alt_Net_Conf</guid>
      <pubDate>Sat, 06 Oct 2007 14:01:02 GMT</pubDate>
    </item>
    <item>
      <title>10 awesome Windows Live Writer plugins for developer</title>
      <description>I've made this list of 10 plugins for Windows Live Writer. Some of these plugins will help beatify your published code, while others will help you create code archives or retrieve a link from MSDN. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2007%2f10%2f05%2f10-plugins-for-windows-live-writer.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2007%2f10%2f05%2f10-plugins-for-windows-live-writer.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/10_awesome_Windows_Live_Writer_plugins_for_developer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/10_awesome_Windows_Live_Writer_plugins_for_developer</guid>
      <pubDate>Sat, 06 Oct 2007 00:31:02 GMT</pubDate>
    </item>
    <item>
      <title>How To Debug Web Applications With Firefox</title>
      <description>Not strictly .NET related, but here are some tips and tools for web applications client-side debugging and tuning. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbetterexplained.com%2farticles%2fhow-to-debug-web-applications-with-firefox"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbetterexplained.com%2farticles%2fhow-to-debug-web-applications-with-firefox" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_To_Debug_Web_Applications_With_Firefox</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_To_Debug_Web_Applications_With_Firefox</guid>
      <pubDate>Fri, 05 Oct 2007 15:31:04 GMT</pubDate>
    </item>
    <item>
      <title>More than 100 Web 2.0 Online Generators</title>
      <description>Here the list of online generators specifically for web 2.0 design: enjoy it! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMore-than-100-Web-20-Online-Generators.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMore-than-100-Web-20-Online-Generators.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/More_than_100_Web_2_0_Online_Generators</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/More_than_100_Web_2_0_Online_Generators</guid>
      <pubDate>Sun, 07 Oct 2007 09:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Argotic Syndication Framework 2007.1</title>
      <description>The Argotic Syndication Framework is a Microsoft .NET class library framework that enables developers to easily consume and generate web content syndication services from within their own applications. The latest release supports asynchronous retrieval of feeds, implements 17 of the most common syndication extensions, and provides a format agnostic means of retrieving syndication information. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.oppositionallydefiant.com%2fpost.aspx%3fid%3dab763e67-63bc-4339-ae82-35926bb42ce4"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.oppositionallydefiant.com%2fpost.aspx%3fid%3dab763e67-63bc-4339-ae82-35926bb42ce4" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Argotic_Syndication_Framework_2007_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Argotic_Syndication_Framework_2007_1</guid>
      <pubDate>Thu, 04 Oct 2007 20:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Super easy SQL Server 2005 Database Schema change auditing</title>
      <description>Here's a very simple way to make use of xml type in SQL Server 2005: audit all the object/schema changes to the database with a simple database-level trigger. It's like a poor man's source control for schema changes.  But also, it could come in very handy for forensic purposes when diagnosing post-rollout issues or accidental schema changes.  Anyway, it's simple and handy for what it does. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.geekdojo.net%2frichard%2farchive%2f2007%2f06%2f04%2f134600.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.geekdojo.net%2frichard%2farchive%2f2007%2f06%2f04%2f134600.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Super_easy_SQL_Server_2005_Database_Schema_change_auditing</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Super_easy_SQL_Server_2005_Database_Schema_change_auditing</guid>
      <pubDate>Sun, 07 Oct 2007 08:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Multi-targeting VS2005 and VS2008 Web Application Projects - A Gotcha</title>
      <description>Tips on Multi-targeting VS2005 and VS2008 Web Application Projects &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstevenharman.net%2fblog%2farchive%2f2007%2f09%2f28%2fmulti-targeting-vs2005-and-vs2008-web-application-projects-a-gotcha.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstevenharman.net%2fblog%2farchive%2f2007%2f09%2f28%2fmulti-targeting-vs2005-and-vs2008-web-application-projects-a-gotcha.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Multi_targeting_VS2005_and_VS2008_Web_Application_Projects_A_Gotcha</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Multi_targeting_VS2005_and_VS2008_Web_Application_Projects_A_Gotcha</guid>
      <pubDate>Sun, 30 Sep 2007 15:31:03 GMT</pubDate>
    </item>
    <item>
      <title>10 Usability Nightmares You Should Be Aware Of</title>
      <description>Usability mistakes that you will want to avoid. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.smashingmagazine.com%2f2007%2f09%2f27%2f10-usability-nightmares-you-should-be-aware-of%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.smashingmagazine.com%2f2007%2f09%2f27%2f10-usability-nightmares-you-should-be-aware-of%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/10_Usability_Nightmares_You_Should_Be_Aware_Of</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/10_Usability_Nightmares_You_Should_Be_Aware_Of</guid>
      <pubDate>Mon, 01 Oct 2007 12:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Validate integer value before casting it to an Enum type</title>
      <description>There is one thing you should watch out for when using enumerations. You can cast any integer to an Enum type and you will not get an exception message. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fvalidate_before_cast_enum_isdefined.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fvalidate_before_cast_enum_isdefined.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Validate_integer_value_before_casting_it_to_an_Enum_type</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Validate_integer_value_before_casting_it_to_an_Enum_type</guid>
      <pubDate>Thu, 27 Sep 2007 20:40:34 GMT</pubDate>
    </item>
    <item>
      <title>15+ Free Visual Studio Add-Ins</title>
      <description>After some extensive researching (Googling), I've compiled this list of 15+ FREE Add-ins for Visual Studio 2005. Some of these add-ins will help improve the quality of your code, while others will help you code faster, however, none are guaranteed to help you get with the ladies. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.carlj.ca%2f2007%2f09%2f25%2f15-free-visual-studio-add-ins%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.carlj.ca%2f2007%2f09%2f25%2f15-free-visual-studio-add-ins%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/15_Free_Visual_Studio_Add_Ins</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/15_Free_Visual_Studio_Add_Ins</guid>
      <pubDate>Tue, 25 Sep 2007 16:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Do not include the &amp;quot;@&amp;quot; when supplying stored procedure parameter names</title>
      <description>Avoid using database-specific tokens with stored procedure parameter names. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fdatabase_specific_tokens.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnettipoftheday.org%2ftips%2fdatabase_specific_tokens.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/adonet/Do_not_include_the_when_supplying_stored_procedure_parameter_names</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/adonet/Do_not_include_the_when_supplying_stored_procedure_parameter_names</guid>
      <pubDate>Sat, 22 Sep 2007 07:18:19 GMT</pubDate>
    </item>
  </channel>
</rss>