<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by cbenien</title>
    <description>Stories kicked by cbenien</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>FFlib.NET released!</title>
      <description>Are you web developer? Are you looking for video conversion library for long time? So, be happy! We are pleased to introduce you the first release of our .NET &amp;amp; FFMPEG based video conversion library - FFlib.NET. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.intuitive.sk%2ffflib%2fpost%2ffflib-net-released.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.intuitive.sk%2ffflib%2fpost%2ffflib-net-released.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/FFlib_NET_released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/FFlib_NET_released</guid>
      <pubDate>Fri, 05 Sep 2008 08:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Top 10 Things That Annoy Programmers</title>
      <description>Programmers all have their personal pet peeves.  Whether it's scope creep, Hungarian notation, or smelly coworkers, there are certain nuisances that we must put up with in our line of work.  The following is a list of the top 10 things that annoy programmers, compiled from the results of my recent question on StackOverflow along with some of my own experiences as a programmer: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.kevinwilliampang.com%2fpost%2fTop-10-Things-That-Annoy-Programmers.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.kevinwilliampang.com%2fpost%2fTop-10-Things-That-Annoy-Programmers.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Top_10_Things_That_Annoy_Programmers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Top_10_Things_That_Annoy_Programmers</guid>
      <pubDate>Thu, 28 Aug 2008 20:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Launch Firefox Instead Of Internet Explorer When Debugging</title>
      <description>This article tells you how to launch Firefox instead of Intenet Explorer when running an ASP.NET web application in debug mode. This is something I needed to troubleshoot a project that presented a problem only in Firefox. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fpeter.van.ooijen%2farchive%2f2004%2f10%2f25%2f29621.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fpeter.van.ooijen%2farchive%2f2004%2f10%2f25%2f29621.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Launch_Firefox_Instead_Of_Internet_Explorer_When_Debugging</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Launch_Firefox_Instead_Of_Internet_Explorer_When_Debugging</guid>
      <pubDate>Sat, 19 Jul 2008 05:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Running Applications in IronRuby</title>
      <description>Simple as that. Shows you how to get a Ruby app running in IronRuby. Who doesn't want to write Ruby on .net!? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f07%2fRunning-Applications-in-IronRuby.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f07%2fRunning-Applications-in-IronRuby.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Running_Applications_in_IronRuby</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Running_Applications_in_IronRuby</guid>
      <pubDate>Fri, 18 Jul 2008 14:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Compress WebResource.axd in ASP.NET</title>
      <description>A lot have been written about the compression of WebResource.axd over the years, but as far as I know, nobody has come up with a simple solution to it. Miron Abramson does have a very good library for compressing a lot of different file types, but I've never been much in favour of third-party libraries.

There are several reasons why you want to compress the WebResource.axd. First of all you want to reduce the size of your website. On this blog ASP.NET inserts two WebResource.axd script with a combined file size of 43.3KB. If I use compression and minify the scripts, the total file size will be 8.1KB. That is a significant gain.

The WebResource.axd is cached in the browser until midnight the same day, so the file size might not be that big a deal. Well, if we can make it expire on a much later date it would be much better since it never changes. So, if the WebResource.axd is minified, compressed and set to live longer in the browsers it really adds up.  &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%2fCompress-WebResourceaxd-in-ASPNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fCompress-WebResourceaxd-in-ASPNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Compress_WebResource_axd_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Compress_WebResource_axd_in_ASP_NET</guid>
      <pubDate>Fri, 13 Jun 2008 06:52:23 GMT</pubDate>
    </item>
    <item>
      <title>15 Tools to Help You Develop Faster Web Pages</title>
      <description>Response times, availability, and stability are vital factors to bear in mind when creating and maintaining a web application. If you're concerned about your web pages' speed or want to make sure you're in tip-top shape before starting or launching a project, here's a few useful, free tools to help you create and sustain high-performance web applications. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsixrevisions.com%2ftools%2ffaster_web_page%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsixrevisions.com%2ftools%2ffaster_web_page%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/15_Tools_to_Help_You_Develop_Faster_Web_Pages</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/15_Tools_to_Help_You_Develop_Faster_Web_Pages</guid>
      <pubDate>Fri, 13 Jun 2008 16:16:14 GMT</pubDate>
    </item>
    <item>
      <title>Presenting Expression Blend 2.5 June Preview</title>
      <description>Expression Blend 2.5 June Preview is now available which can be downloaded here. Now it's possible to edit the ControlTemplates from Blend using Visual State Manager to change the look and feel of the controls.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.windowsclient.net%2filves%2farchive%2f2008%2f06%2f08%2fpresenting-expression-blend-2-5-june-preview.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.windowsclient.net%2filves%2farchive%2f2008%2f06%2f08%2fpresenting-expression-blend-2-5-june-preview.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Presenting_Expression_Blend_2_5_June_Preview</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Presenting_Expression_Blend_2_5_June_Preview</guid>
      <pubDate>Sun, 08 Jun 2008 16:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Scrum Explained in 5 Minutes</title>
      <description>PDF entitled &amp;quot;Scrum in Five Minutes&amp;quot; from http://www.softhouse.se/ &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.softhouse.se%2fUploades%2fScrum_eng_webb.pdf"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.softhouse.se%2fUploades%2fScrum_eng_webb.pdf" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Scrum_Explained_in_5_Minutes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Scrum_Explained_in_5_Minutes</guid>
      <pubDate>Fri, 06 Jun 2008 02:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight 2 Beta 2 To be released this week!</title>
      <description>Finally!!! This should include a go-live license, increased support for WCF bindings (other than basic), control gallery updates, performance/bug fixes.  Beta 2 is probably going to be a &amp;quot;feature complete&amp;quot; or close to the 2.0 release this summer.   So, this is an exciting time to be a RIA developer :) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fsilverlight_sdk%2farchive%2f2008%2f06%2f03%2fsilverlight-2-beta-2-releasing-soon.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fsilverlight_sdk%2farchive%2f2008%2f06%2f03%2fsilverlight-2-beta-2-releasing-soon.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_2_Beta_2_To_be_released_this_week</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_2_Beta_2_To_be_released_this_week</guid>
      <pubDate>Wed, 04 Jun 2008 11:46:10 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET &amp;quot;VaryByCustom&amp;quot; page output caching</title>
      <description>With the VaryByCustom feature of the ASP.NET output cache, you can vary the response by server variables, e.g. the Session ID or the user name, without forcing you to put that into the query string. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fdarrell.norton%2farchive%2f2004%2f05%2f04%2f12724.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fdarrell.norton%2farchive%2f2004%2f05%2f04%2f12724.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_VaryByCustom_page_output_caching</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_VaryByCustom_page_output_caching</guid>
      <pubDate>Sat, 24 May 2008 13:09:32 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Source Analysis for C# Released</title>
      <description>From post: &amp;quot;Source Analysis is similar in many ways to Microsoft Code Analysis (specifically FxCop), but there are some important distinctions. FxCop performs its analysis on compiled binaries, while Source Analysis analyzes the source code directly. For this reason, Code Analysis focuses more on the design of the code, while Source Analysis focuses on layout, readability and documentation.&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fsourceanalysis%2farchive%2f2008%2f05%2f23%2fannouncing-the-release-of-microsoft-source-analysis.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fsourceanalysis%2farchive%2f2008%2f05%2f23%2fannouncing-the-release-of-microsoft-source-analysis.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Microsoft_Source_Analysis_for_C_Released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Microsoft_Source_Analysis_for_C_Released</guid>
      <pubDate>Fri, 23 May 2008 18:31:14 GMT</pubDate>
    </item>
    <item>
      <title>Capture Image Files to the Cloud using Amazon S3</title>
      <description>Amazon has a very inexpensive storage platform called S3 that lets anyone who signs up store data in their cloud for incredibly cheap. Pennies per Gigabyte per Month. After creating your own AWS S3 account, you can use this application to retrieve documents from your own S3 bucket, and capture documents using a scanner directly into the same bucket. Application + Source Code included. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2f31appsin31days%2farchive%2f2008%2f05%2f19%2fcapture-to-the-cloud-using-amazon-s3.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2f31appsin31days%2farchive%2f2008%2f05%2f19%2fcapture-to-the-cloud-using-amazon-s3.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Capture_Image_Files_to_the_Cloud_using_Amazon_S3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Capture_Image_Files_to_the_Cloud_using_Amazon_S3</guid>
      <pubDate>Tue, 20 May 2008 22:16:10 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET: officially unmaintainable</title>
      <description>+1 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fjimmy_bogard%2farchive%2f2008%2f05%2f18%2fasp-net-officially-unmaintainable.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fjimmy_bogard%2farchive%2f2008%2f05%2f18%2fasp-net-officially-unmaintainable.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_officially_unmaintainable</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_officially_unmaintainable</guid>
      <pubDate>Wed, 21 May 2008 13:16:05 GMT</pubDate>
    </item>
    <item>
      <title>Fast ASP.NET web page loading by batching javascripts downloads</title>
      <description>Hack for the .Net script manager to pull all needed javascript files at once and push them to the bottom of the html to speed up rendering. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fKB%2faspnet%2ffastload.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fKB%2faspnet%2ffastload.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Fast_ASP_NET_web_page_loading_by_batching_javascripts_downloads</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Fast_ASP_NET_web_page_loading_by_batching_javascripts_downloads</guid>
      <pubDate>Fri, 16 May 2008 17:01:12 GMT</pubDate>
    </item>
    <item>
      <title>How to create a virtual machine from a physical one</title>
      <description>P2V options - converting a physical machine to a virtual machine &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2ftom%2farchive%2f2008%2f05%2f12%2fhow-to-create-a-virtual-machine-from-a-physical-one.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2ftom%2farchive%2f2008%2f05%2f12%2fhow-to-create-a-virtual-machine-from-a-physical-one.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_to_create_a_virtual_machine_from_a_physical_one</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_to_create_a_virtual_machine_from_a_physical_one</guid>
      <pubDate>Mon, 12 May 2008 21:31:02 GMT</pubDate>
    </item>
    <item>
      <title>A C# Operator I would like to see.</title>
      <description>You could argue there are too many operators in C# as it is; however, I feel having an acute knowledge of the available operators is like knowing CTRL + B will bold the selected text in most word processing software. To put it simply, it hurts no-one, whilst providing shortcuts to advanced users... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.objectreference.net%2fpost%2fA-CSharp-Operator-I-would-like-to-see.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.objectreference.net%2fpost%2fA-CSharp-Operator-I-would-like-to-see.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/A_C_Operator_I_would_like_to_see</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/A_C_Operator_I_would_like_to_see</guid>
      <pubDate>Wed, 30 Apr 2008 14:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Browser Beta Battle IE8 vs Firefox 3.0b5</title>
      <description>A quick comparison of page load times on IE8 vs Firefox 3.0b5 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ffrickinsweet.com%2fryanlanciaux.com%2fpost%2fBrowser-Beta-Battle--IE8-vs-Firefox-30b5.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffrickinsweet.com%2fryanlanciaux.com%2fpost%2fBrowser-Beta-Battle--IE8-vs-Firefox-30b5.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ie/Browser_Beta_Battle_IE8_vs_Firefox_3_0b5</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ie/Browser_Beta_Battle_IE8_vs_Firefox_3_0b5</guid>
      <pubDate>Thu, 03 Apr 2008 17:46:02 GMT</pubDate>
    </item>
    <item>
      <title>OOXML: Why all the haters?</title>
      <description>Apparently Microsoft's OOXML formats recently received ISO certification. . . .  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.frickinsweet.com%2fjoelroxor%2fpost%2fOOXML-ISO-Certification-Who-gives-a-crap.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.frickinsweet.com%2fjoelroxor%2fpost%2fOOXML-ISO-Certification-Who-gives-a-crap.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/OOXML_Why_all_the_haters</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/OOXML_Why_all_the_haters</guid>
      <pubDate>Thu, 03 Apr 2008 04:16:04 GMT</pubDate>
    </item>
    <item>
      <title>Improving .Net Performance With Ngen: The Native Image Generator</title>
      <description>An overview Microsoft's complimentary .NET tool called NGen (Native Image Generator) and how it's used in 1.1 and 2.0 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2frickm%2farchive%2f2008%2f03%2f26%2fimproving-dotnet-performance-with-ngen-the-native-image-generator.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2frickm%2farchive%2f2008%2f03%2f26%2fimproving-dotnet-performance-with-ngen-the-native-image-generator.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Improving_Net_Performance_With_Ngen_The_Native_Image_Generator</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Improving_Net_Performance_With_Ngen_The_Native_Image_Generator</guid>
      <pubDate>Sun, 30 Mar 2008 11:01:02 GMT</pubDate>
    </item>
    <item>
      <title>ScottGu tells about the new IIS7 Admin Pack</title>
      <description>&amp;quot;Last week the IIS team shipped the first technical preview of some really cool administration modules that I think web developers will find super useful.&amp;quot;

Database Manager, Log Reports, Configuration Editor, Request Filtering UI, .NET Authorization, FastCGI UI &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%2f2008%2f03%2f26%2fnew-log-reporting-database-management-and-other-cool-admin-modules-for-iis-7.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f03%2f26%2fnew-log-reporting-database-management-and-other-cool-admin-modules-for-iis-7.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/ScottGu_tells_about_the_new_IIS7_Admin_Pack</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/ScottGu_tells_about_the_new_IIS7_Admin_Pack</guid>
      <pubDate>Wed, 26 Mar 2008 17:16:03 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Security : 2- More Basics</title>
      <description>Basic information on how the IIS worker process takes an identity to run within, IIS 5 and 6 process models. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.amrelsehemy.net%2fpost%2f2008%2f03%2fASPNET-Security--2--More-Basics.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.amrelsehemy.net%2fpost%2f2008%2f03%2fASPNET-Security--2--More-Basics.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/ASP_NET_Security_2_More_Basics</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/ASP_NET_Security_2_More_Basics</guid>
      <pubDate>Wed, 26 Mar 2008 12:46:03 GMT</pubDate>
    </item>
    <item>
      <title>inline asp.net tags... sorting them all out (&amp;lt;%$, &amp;lt;%=, &amp;lt;%, &amp;lt;%#, etc.)</title>
      <description>There are all sorts of different inline tags, and I haven't found a place that explains them all in one place, so here is the quick and dirty... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnaspinski.com%2fpost%2finline-aspnet-tags-sorting-them-all-out-(3c25242c-3c253d2c-3c252c-3c252c-etc).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnaspinski.com%2fpost%2finline-aspnet-tags-sorting-them-all-out-(3c25242c-3c253d2c-3c252c-3c252c-etc).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/inline_asp_net_tags_sorting_them_all_out_etc</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/inline_asp_net_tags_sorting_them_all_out_etc</guid>
      <pubDate>Mon, 31 Mar 2008 17:46:02 GMT</pubDate>
    </item>
    <item>
      <title>10 things I didn't know about WPF data binding</title>
      <description>A article showing the last 10 things I learned about WPF data binding... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnet.org.za%2frudi%2farchive%2f2008%2f03%2f25%2f10-things-i-didn-t-know-about-wpf-data-binding.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnet.org.za%2frudi%2farchive%2f2008%2f03%2f25%2f10-things-i-didn-t-know-about-wpf-data-binding.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/10_things_I_didn_t_know_about_WPF_data_binding</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/10_things_I_didn_t_know_about_WPF_data_binding</guid>
      <pubDate>Tue, 25 Mar 2008 21:46:02 GMT</pubDate>
    </item>
    <item>
      <title>VisualSVN Server 1.1 Released</title>
      <description>Adds support for Windows Authentication, repository importing and more &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.visualsvn.com%2fserver%2fchangelog%2f%231.1"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.visualsvn.com%2fserver%2fchangelog%2f%231.1" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/VisualSVN_Server_1_1_Released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/VisualSVN_Server_1_1_Released</guid>
      <pubDate>Tue, 25 Mar 2008 12:46:03 GMT</pubDate>
    </item>
    <item>
      <title>Compile C# to Javascript!</title>
      <description>Script# enables more productive Ajax application development by allowing you to compile your C# source code into JavaScript. It allows you to use standard .NET tools like msbuild projects, Visual Studio and IDE intellisense, reflector, refactoring tools, amongst various others.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fprojects.nikhilk.net%2fScriptSharp%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fprojects.nikhilk.net%2fScriptSharp%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Compile_C_to_Javascript</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Compile_C_to_Javascript</guid>
      <pubDate>Tue, 25 Mar 2008 21:01:03 GMT</pubDate>
    </item>
  </channel>
</rss>