<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by crpietschmann</title>
    <description>Stories kicked by crpietschmann</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>volatile and MemoryBarrier()...</title>
      <description>That part I knew. what we news to me is there is a better way to do volatile, and that is with an explicitly memory barrier before accessing the data member..   We have a an API for that: System.Threading.Thread.MemoryBarrier().   This is more efficient than using volatile because a volatile field requires all accesses to be barriers and this effects some performance optimizations.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fbrada%2farchive%2f2004%2f05%2f12%2fvolatile-and-memorybarrier.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fbrada%2farchive%2f2004%2f05%2f12%2fvolatile-and-memorybarrier.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/volatile_and_MemoryBarrier</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/volatile_and_MemoryBarrier</guid>
      <pubDate>Thu, 17 Jul 2008 16:16:40 GMT</pubDate>
    </item>
    <item>
      <title>BREAKING NEWS! Castle Project Lead Hamilton Verissimo Joins Microsoft </title>
      <description>In a strategic move on Microsoft's part that has the open source community buzzing, the well-known and respected founder of the Castle Project Hamilton Verissimo has accepted a position with Microsoft's MEF group. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.domaindotnet.com%2f2008%2f07%2f16%2fbreaking-news-castle-project-lead-hamilton-verissimo-joins-microsoft%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.domaindotnet.com%2f2008%2f07%2f16%2fbreaking-news-castle-project-lead-hamilton-verissimo-joins-microsoft%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/BREAKING_NEWS_Castle_Project_Lead_Hamilton_Verissimo_Joins_Microsoft</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/BREAKING_NEWS_Castle_Project_Lead_Hamilton_Verissimo_Joins_Microsoft</guid>
      <pubDate>Wed, 16 Jul 2008 15:31:03 GMT</pubDate>
    </item>
    <item>
      <title>SharePoint Tips and Tricks: Heather Solomon: Branding SharePoint</title>
      <description>Heather Solomon has created a great series on her blog titled  quot;Branding SharePoint quot;. This is definitely a required reading for developers and GAs serious about giving their corporate SharePoint instances an identity. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdrewmace.blogspot.com%2f2008%2f07%2fheather-solomon-branding-sharepoint.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdrewmace.blogspot.com%2f2008%2f07%2fheather-solomon-branding-sharepoint.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/SharePoint_Tips_and_Tricks_Heather_Solomon_Branding_SharePoint</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/SharePoint_Tips_and_Tricks_Heather_Solomon_Branding_SharePoint</guid>
      <pubDate>Wed, 16 Jul 2008 12:45:01 GMT</pubDate>
    </item>
    <item>
      <title>Convert your Windows Server 2008 to a Workstation</title>
      <description>This manual will help you to install Microsoft Windows Server 2008 and to configure your pc so you can use it as a workstation. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.win2008workstation.com%2fwordpress%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.win2008workstation.com%2fwordpress%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vista/Convert_your_Windows_Server_2008_to_a_Workstation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vista/Convert_your_Windows_Server_2008_to_a_Workstation</guid>
      <pubDate>Wed, 16 Jul 2008 07:58:27 GMT</pubDate>
    </item>
    <item>
      <title>C#: Enhance Enums using Extension Methods</title>
      <description>Extension Methods are one of the coolest features that have been added in .NET 3.5. I've heard arguments that there is no reason to use them, and the only reason Microsoft added them is to enable the ability to buid LINQ. Well, I do not entirely agree with that statement; in fact, I have found a cool way to use Extension Methods to enhance the System.Enum object since it cannot be inherited. Even though Enum can not be inherited, it can be extended using Extension Methods. Here's the code to an Extension Method that extends the LocalizationMarket Enum with the ToDescriptionString() method that returns the DescriptionAttributes value for the given enum value. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2008%2f07%2fC-Enhance-Enums-using-Extension-Methods.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpietschsoft.com%2fpost%2f2008%2f07%2fC-Enhance-Enums-using-Extension-Methods.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/C_Enhance_Enums_using_Extension_Methods</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/C_Enhance_Enums_using_Extension_Methods</guid>
      <pubDate>Thu, 17 Jul 2008 11:01:02 GMT</pubDate>
    </item>
    <item>
      <title>How to Localize Windows Forms and Change the Language at Runtim</title>
      <description>Localization is the process of customizing your application to a particular language, culture or locale. Visual Studio provides support for localizing Windows Forms with much ease. In this article, we will see how to localize windows forms and give the user the ability to change to his preferred language at runtime. &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%3d174"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d174" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/How_to_Localize_Windows_Forms_and_Change_the_Language_at_Runtim</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/How_to_Localize_Windows_Forms_and_Change_the_Language_at_Runtim</guid>
      <pubDate>Tue, 15 Jul 2008 08:21:16 GMT</pubDate>
    </item>
    <item>
      <title>The Future of ASP.NET AJAX</title>
      <description>My analysis of the ASP.NET Team's tentative road map for ASP.NET AJAX v.Next and beyond, followed by a few additional recommendations. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fencosia.com%2f2008%2f07%2f15%2fthe-future-of-aspnet-ajax%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fencosia.com%2f2008%2f07%2f15%2fthe-future-of-aspnet-ajax%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/The_Future_of_ASP_NET_AJAX</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/The_Future_of_ASP_NET_AJAX</guid>
      <pubDate>Tue, 15 Jul 2008 14:46:16 GMT</pubDate>
    </item>
    <item>
      <title>Create and apply custom themes with WPF</title>
      <description>Concise blog post demonstrating how to apply themes and styles using WPF.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.rioterdecker.net%2fblogs%2fchaz%2farchive%2f2006%2f03%2f06%2f100.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.rioterdecker.net%2fblogs%2fchaz%2farchive%2f2006%2f03%2f06%2f100.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Create_and_apply_custom_themes_with_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Create_and_apply_custom_themes_with_WPF</guid>
      <pubDate>Mon, 14 Jul 2008 14:46:04 GMT</pubDate>
    </item>
    <item>
      <title>LINQ Farm: More on Set Operators</title>
      <description>This is a second post on the LINQ Set operators, the first being published while LINQ was still in beta. As mentioned in the previous post, there are four LINQ set operators: Union, Intersect, Distinct and Except. Like the other 50 LINQ operators, these methods are designed to allow you to query data which supports the IEnumerable&amp;lt;T&amp;gt; interface. Since all LINQ query expressions, and most LINQ queries, return IEnumerable&amp;lt;T&amp;gt;, these operators are designed to allow you to perform set operations on the results of a LINQ query. In this post I give four highly simplified examples of how to use each of the operators, and then end with a more complex example that shows how the operators might be used in a real world setting. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fcharlie%2farchive%2f2008%2f07%2f12%2fthe-linq-set-operators.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fcharlie%2farchive%2f2008%2f07%2f12%2fthe-linq-set-operators.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/LINQ_Farm_More_on_Set_Operators</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/LINQ_Farm_More_on_Set_Operators</guid>
      <pubDate>Mon, 14 Jul 2008 15:31:02 GMT</pubDate>
    </item>
    <item>
      <title>30 Days of .Net Windows Mobile application</title>
      <description>The author created 30 applications (GPS compass, Rotate, ...) for windows mobile during June. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.cjcraft.com%2fblog%2f2008%2f06%2f23%2f30DaysOfNETWindowsMobileApplicationsNdashCalendarOfApplications.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.cjcraft.com%2fblog%2f2008%2f06%2f23%2f30DaysOfNETWindowsMobileApplicationsNdashCalendarOfApplications.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/30_Days_of_Net_Windows_Mobile_application</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/30_Days_of_Net_Windows_Mobile_application</guid>
      <pubDate>Sat, 12 Jul 2008 16:57:02 GMT</pubDate>
    </item>
    <item>
      <title>What you don't know about Copy &amp;amp; Paste in Visual Studio</title>
      <description>This post explains how to use clipboard ring and some other tricks with Ctrl-C/Ctrl-X. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvkreynin.wordpress.com%2f2007%2f03%2f21%2fcopy-and-paste-in-visual-studio-and-ms-sql-server-managment-studio%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvkreynin.wordpress.com%2f2007%2f03%2f21%2fcopy-and-paste-in-visual-studio-and-ms-sql-server-managment-studio%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/What_you_don_t_know_about_Copy_Paste_in_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/What_you_don_t_know_about_Copy_Paste_in_Visual_Studio</guid>
      <pubDate>Sat, 12 Jul 2008 14:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Javascript cloning objects</title>
      <description>When cloning a object in Javascript many of the examples I found used for(i in..) to traverse the properties and copy each of them. There is a nicer way to do this using the uneval function like this:- &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.thespanner.co.uk%2f2008%2f04%2f10%2fjavascript-cloning-objects%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.thespanner.co.uk%2f2008%2f04%2f10%2fjavascript-cloning-objects%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Javascript_cloning_objects</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Javascript_cloning_objects</guid>
      <pubDate>Fri, 11 Jul 2008 22:33:01 GMT</pubDate>
    </item>
    <item>
      <title>Xaml Without WPF</title>
      <description>Without using WPF (or Workflow Foundation for that matter), how useful is Xaml on it's own? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgenesisconduit.wordpress.com%2f2008%2f07%2f10%2fxaml-without-wpf%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgenesisconduit.wordpress.com%2f2008%2f07%2f10%2fxaml-without-wpf%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Xaml_Without_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Xaml_Without_WPF</guid>
      <pubDate>Fri, 11 Jul 2008 04:45:42 GMT</pubDate>
    </item>
    <item>
      <title>Optimize WebResource.axd and ScriptResource.axd</title>
      <description>Some weeks ago I wrote how to minify and compress the WebResource.axd handler. In the comments of that post someone asked how to do the same with ScriptResource.axd. I thought about it and realized it could be done much smarter.If you take a look at the HTML source at the CodePlex Issue Tracker page, you'll see it references 13 WebResource.axd and ScriptResource.axd. That's 13 different web requests on each page load. The ScriptResource.axd is using HTTP compression but WebResource.axd does not. None of them minifies the scripts.Therefore it would be cool to create a plug 'n play HttpModule that combines all resource.axd scripts into one single web request and then minify and compress them. It would result in smaller HTML, fewer web requests and optimized JavaScript code. If you're a YSlow nazi like me, this is a must-have. &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%2fOptimize-WebResourceaxd-and-ScriptResourceaxd.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fOptimize-WebResourceaxd-and-ScriptResourceaxd.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Optimize_WebResource_axd_and_ScriptResource_axd</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Optimize_WebResource_axd_and_ScriptResource_axd</guid>
      <pubDate>Thu, 10 Jul 2008 20:01:06 GMT</pubDate>
    </item>
    <item>
      <title>My version of the MessageBox control</title>
      <description>Last month Janko posted an excellent article about creating standard website message boxes. Here is my take on it.  I kept the idea the same but implemented it as a custom web control instead of a user control. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjohn.rummell.info%2fblog%2fpost%2f2008%2f07%2fMy-version-of-the-MessageBox-control.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjohn.rummell.info%2fblog%2fpost%2f2008%2f07%2fMy-version-of-the-MessageBox-control.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/My_version_of_the_MessageBox_control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/My_version_of_the_MessageBox_control</guid>
      <pubDate>Thu, 10 Jul 2008 08:01:09 GMT</pubDate>
    </item>
    <item>
      <title>MSDN Ramp Up and Certification Exam Discount</title>
      <description>MSDN has a developer learning program called Ramp Up.  The award for finishing the program is a 50% discount on certification exam 70-536 and other discounts. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mpaladino.com%2fBlog%2ftabid%2f226%2fEntryID%2f101%2fDefault.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mpaladino.com%2fBlog%2ftabid%2f226%2fEntryID%2f101%2fDefault.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/MSDN_Ramp_Up_and_Certification_Exam_Discount</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/MSDN_Ramp_Up_and_Certification_Exam_Discount</guid>
      <pubDate>Wed, 09 Jul 2008 10:30:57 GMT</pubDate>
    </item>
    <item>
      <title>Foundation of Programming FREE EBook - CodeBetter.Com</title>
      <description>The Foundation Of Programming Series Free ebook By Karl Seguin &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2ffiles%2ffolders%2fcodebetter_downloads%2fentry179694.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2ffiles%2ffolders%2fcodebetter_downloads%2fentry179694.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Foundation_of_Programming_FREE_EBook_CodeBetter_Com</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Foundation_of_Programming_FREE_EBook_CodeBetter_Com</guid>
      <pubDate>Wed, 09 Jul 2008 14:46:05 GMT</pubDate>
    </item>
    <item>
      <title>Great User Experience Example in a Business Application in Silverlight</title>
      <description>DNR-TV has a great talk\demo with Billy Hollis on a next generation business applications in WPF and Silverlight.  Billy is working with a customer to provide a temp worker to job matching services.  So far the application is in WPF, but they are planning to create a Silverlight version as well. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fbrada%2farchive%2f2008%2f07%2f07%2fgreat-user-experience-example-in-a-business-application.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fbrada%2farchive%2f2008%2f07%2f07%2fgreat-user-experience-example-in-a-business-application.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Great_User_Experience_Example_in_a_Business_Application_in_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Great_User_Experience_Example_in_a_Business_Application_in_Silverlight</guid>
      <pubDate>Wed, 09 Jul 2008 10:16:13 GMT</pubDate>
    </item>
    <item>
      <title>Themes for Silverlight Applications</title>
      <description>A theming system for Silverlight 2 apps... this post steps you through creating a set of theme assets, adding customizability of themes (colors and fonts in the sample), and using them in an application, including selecting a theme dynamically... complete with source code. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nikhilk.net%2fEntry.aspx%3fid%3d201"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nikhilk.net%2fEntry.aspx%3fid%3d201" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Themes_for_Silverlight_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Themes_for_Silverlight_Applications</guid>
      <pubDate>Mon, 07 Jul 2008 22:57:32 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Hacks </title>
      <description>At LessThanDot, we've decided to release a series of articles, tips and tricks which will be known as the &amp;quot;Hacks&amp;quot; series. The first instalment was the popular SQL Server Programming Hacks and this week sees the release of the ASP.NET Hacks. These hacks have been split up into the following categories:

    1 Applications
    2 Caching
    3 Controls
    4 Database
    5 Dates
    6 Debugging
    7 Email
    8 Encryption
    9 Files
    10 Images
    11 Javascript
    12 Objects and Classes
    13 Pages
    14 Sessions
    15 Strings
    16 Validation
    17 Visual Studio
    18 Web

We've decided to release these in the wiki so that anyone can contribute to them, so feel free to add anything else that you find useful.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwiki.lessthandot.com%2findex.php%2fASP.NET_Hacks"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwiki.lessthandot.com%2findex.php%2fASP.NET_Hacks" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_Hacks</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_Hacks</guid>
      <pubDate>Mon, 07 Jul 2008 14:46:08 GMT</pubDate>
    </item>
    <item>
      <title>What's wrong with Request.[&amp;quot;Accept-Encoding&amp;quot;].Contains(&amp;quot;gzip&amp;quot;)?</title>
      <description>Dave explain a better way to detect the response encoding accepted by the browser, parsing the accept-encoding string and taking into account all the ranking and preferred values. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.singular.co.nz%2fblog%2farchive%2f2008%2f07%2f06%2ffinding-preferred-accept-encoding-header-in-csharp.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.singular.co.nz%2fblog%2farchive%2f2008%2f07%2f06%2ffinding-preferred-accept-encoding-header-in-csharp.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/What_s_wrong_with_Request_Accept_Encoding_Contains_gzip</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/What_s_wrong_with_Request_Accept_Encoding_Contains_gzip</guid>
      <pubDate>Wed, 09 Jul 2008 15:31:11 GMT</pubDate>
    </item>
    <item>
      <title>Things to know for hosting your ASP.NET MVC app</title>
      <description>When you are planning to host your asp.net MVC application under IIS7 integrated mode environment. There are few easy tweaks that can make your application or starter kit work right out of the box but also can save a lot of your time finding things out.

You might see a Http 404 page if default document is not configured properly. The one way of getting this around by using the following

.. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fmehfuzh%2farchive%2f2008%2f07%2f06%2fthings-to-know-for-hosting-your-asp-net-mvc-app.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fmehfuzh%2farchive%2f2008%2f07%2f06%2fthings-to-know-for-hosting-your-asp-net-mvc-app.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Things_to_know_for_hosting_your_ASP_NET_MVC_app</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Things_to_know_for_hosting_your_ASP_NET_MVC_app</guid>
      <pubDate>Sun, 06 Jul 2008 09:45:45 GMT</pubDate>
    </item>
    <item>
      <title>Do namespace using directives affect Assembly Loading?</title>
      <description>A rule in the the recent MS Stylecop release poses an interesting question - do namespace using directives affect assembly loading. Scott investigates... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fBackToBasicsDoNamespaceUsingDirectivesAffectAssemblyLoading.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fBackToBasicsDoNamespaceUsingDirectivesAffectAssemblyLoading.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Do_namespace_using_directives_affect_Assembly_Loading</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Do_namespace_using_directives_affect_Assembly_Loading</guid>
      <pubDate>Sun, 06 Jul 2008 08:07:30 GMT</pubDate>
    </item>
    <item>
      <title>Extension Methods +  Attributes = A Whole New World!</title>
      <description>A post about combining attributes and extension methods in order to extend current code. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fshayf%2farchive%2f2008%2f07%2f05%2fextension-methods-attributes-a-whole-new-world.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fshayf%2farchive%2f2008%2f07%2f05%2fextension-methods-attributes-a-whole-new-world.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Extension_Methods_Attributes_A_Whole_New_World</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Extension_Methods_Attributes_A_Whole_New_World</guid>
      <pubDate>Mon, 07 Jul 2008 06:31:02 GMT</pubDate>
    </item>
    <item>
      <title>55 Free High Quality Icon Sets</title>
      <description>A lot of freebie icons. Another great article from Smashing Magazine &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.smashingmagazine.com%2f2008%2f07%2f02%2f55-free-high-quality-icon-sets%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.smashingmagazine.com%2f2008%2f07%2f02%2f55-free-high-quality-icon-sets%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/55_Free_High_Quality_Icon_Sets</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/55_Free_High_Quality_Icon_Sets</guid>
      <pubDate>Mon, 07 Jul 2008 08:01:02 GMT</pubDate>
    </item>
  </channel>
</rss>