<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by yesthatmcgurk</title>
    <description>Stories kicked by yesthatmcgurk</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>Replacing .NET Reflector</title>
      <description>Good news for .NET developers who are unhappy with what Red Gate is doing with this must-have tool &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackbeltcoder.com%2fNewsArticle.aspx%3fid%3d11"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackbeltcoder.com%2fNewsArticle.aspx%3fid%3d11" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Replacing_NET_Reflector</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Replacing_NET_Reflector</guid>
      <pubDate>Thu, 28 Apr 2011 20:24:02 GMT</pubDate>
    </item>
    <item>
      <title>Introducing JustTrace and JustDecompile </title>
      <description>Have you heard the news? New productivity tools have JustT arrived, and it turns-out good things come in twos! JustTrace and JustDecompile have just been revealed and the betas are immediately available for download. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.telerik.com%2fblogs%2fposts%2f11-04-27%2fintroducing_justtrace_and_justdecompile.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.telerik.com%2fblogs%2fposts%2f11-04-27%2fintroducing_justtrace_and_justdecompile.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Introducing_JustTrace_and_JustDecompile</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Introducing_JustTrace_and_JustDecompile</guid>
      <pubDate>Wed, 27 Apr 2011 19:32:03 GMT</pubDate>
    </item>
    <item>
      <title>Building a better MessageBox for WP7 with the help of XNA.</title>
      <description>I've recently had the requirement to allow my user to choose between two items in my Windows Phone 7 application. The first way that I thought of tackling this was using the standard MessageBox.Show that is included with the System.Windows class and seeing if the enum provided a way to allow custom text. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmichaelcrump.net%2fmbcrump%2farchive%2f2011%2f04%2f19%2fbuilding-a-better-messagebox-for-wp7-with-the-help-of.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmichaelcrump.net%2fmbcrump%2farchive%2f2011%2f04%2f19%2fbuilding-a-better-messagebox-for-wp7-with-the-help-of.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Building_a_better_MessageBox_for_WP7_with_the_help_of_XNA</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Building_a_better_MessageBox_for_WP7_with_the_help_of_XNA</guid>
      <pubDate>Tue, 19 Apr 2011 16:27:34 GMT</pubDate>
    </item>
    <item>
      <title>How to use ExpandoObject Class in .NET 4.0</title>
      <description>In this article, i will explain how to use the How to use ExpandoObject Class in .NET 4.0.The ExpandoObject class is introduced on .NET Framework 4.0 and inherited using many interfaces. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codegain.com%2farticles%2fcsharp%2fcsharp4%2fhow-to-use-expandoobject-class-in-dotnet-4-0.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codegain.com%2farticles%2fcsharp%2fcsharp4%2fhow-to-use-expandoobject-class-in-dotnet-4-0.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_use_ExpandoObject_Class_in_NET_4_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_use_ExpandoObject_Class_in_NET_4_0</guid>
      <pubDate>Tue, 19 Apr 2011 15:01:17 GMT</pubDate>
    </item>
    <item>
      <title>Afterthought: a post-compilation code injection framework</title>
      <description>Afterthought allows developers to post-process .NET assemblies to add code that either cannot be added to the original source or is not convenient/efficient to do so. Examples include:

Tweaking a compiled assembly for which you do not have the source code be must support/modify

Adding instrumentation logic to an assembly for test purposes, which will not always be part of the release version

So, what does Afterthought do? Quite simply, it allows you to:

Create type amendments by subclassing Amendment&amp;lt;,&amp;gt; to describe what changes you want to make
Add attributes to your types indicating which types to amend and what amendments to apply
Amend properties by either adding new properties or modifying the logic of existing properties
Amend methods by either adding new methods or modifying the logic of existing methods
Amend constructors by either adding new constructors or modifying the logic of existing constructors
Implement interfaces directly on a type leveraging existing properties/methods, adding new properties/methods, and allowing Afterthought to automatically implement everything else
Configure your project to call Afterthought as a post-build step to apply the changes &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.app.vc3.com%2f%3fp%3d472"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.app.vc3.com%2f%3fp%3d472" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Afterthought_a_post_compilation_code_injection_framework</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Afterthought_a_post_compilation_code_injection_framework</guid>
      <pubDate>Tue, 12 Apr 2011 12:01:16 GMT</pubDate>
    </item>
    <item>
      <title>WPF Single Instance Application - Update - Arik Poznanski's Blog</title>
      <description>Back in this post I've presented some code that make sure you only have one instance of your application.
 &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%2farik%2farchive%2f2011%2f04%2f04%2fwpf-single-instance-application-update.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2farik%2farchive%2f2011%2f04%2f04%2fwpf-single-instance-application-update.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/WPF_Single_Instance_Application_Update_Arik_Poznanski_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/WPF_Single_Instance_Application_Update_Arik_Poznanski_s_Blog</guid>
      <pubDate>Tue, 05 Apr 2011 21:08:32 GMT</pubDate>
    </item>
    <item>
      <title>5 of the best online code editors for fans of the cloud</title>
      <description>This collection of cloud based code editors has been created with developers in mind, and perfectly showcases just how far software has come. Checkout CodeRun for .NET developers who need to run code in the browser. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.webdistortion.com%2f2011%2f04%2f05%2fonline-code-editors%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.webdistortion.com%2f2011%2f04%2f05%2fonline-code-editors%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/5_of_the_best_online_code_editors_for_fans_of_the_cloud</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/5_of_the_best_online_code_editors_for_fans_of_the_cloud</guid>
      <pubDate>Tue, 05 Apr 2011 21:08:32 GMT</pubDate>
    </item>
    <item>
      <title>Using GIT on top of TFS</title>
      <description>How to use the git-tfs bridge to work with GIT on top of TFS.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetsurfers.com%2fblog%2f2011%2f04%2f03%2fusing-git-on-top-of-tfs%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetsurfers.com%2fblog%2f2011%2f04%2f03%2fusing-git-on-top-of-tfs%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Using_GIT_on_top_of_TFS</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Using_GIT_on_top_of_TFS</guid>
      <pubDate>Mon, 04 Apr 2011 10:53:44 GMT</pubDate>
    </item>
    <item>
      <title>Common Table Expressions (CTE) - Underappreciated Features of Microsof</title>
      <description>This is part of the series of posts that I am running under the title &amp;quot; Under Appreciated Features of SQL Server &amp;quot;. The series has been inspired by Andy Warren's editorial on SQLServerCentral.com. Did you ever wonder if you could create a temporary result set and use that within a single... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbeyondrelational.com%2fblogs%2fnakul%2farchive%2f2011%2f03%2f17%2fcommon-table-expressions-cte-underappreciated-features-of-microsoft-sql-server.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbeyondrelational.com%2fblogs%2fnakul%2farchive%2f2011%2f03%2f17%2fcommon-table-expressions-cte-underappreciated-features-of-microsoft-sql-server.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Common_Table_Expressions_CTE_Underappreciated_Features_of_Microsof</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Common_Table_Expressions_CTE_Underappreciated_Features_of_Microsof</guid>
      <pubDate>Mon, 04 Apr 2011 12:38:34 GMT</pubDate>
    </item>
    <item>
      <title>Dot Net Techniques</title>
      <description>Increase your dot net software development skills
Active Directory Membership Provider,Software Skills, The MVP Pattern , Custom Paging GridView (Inheriting from the Base GridView Control) , LINQ to Services (LINQ to Amazon, google, bing, JSON, LDAP (Active Directory), Streams, DryadLINQ .) , Dot Net 4.0 Parallel Computing , Visual Inh......eritance In Windows Applications , Design Patterns Applicability, WCF, JSON
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsaloweblife.blogspot.com"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsaloweblife.blogspot.com" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Dot_Net_Techniques</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Dot_Net_Techniques</guid>
      <pubDate>Fri, 25 Mar 2011 12:36:50 GMT</pubDate>
    </item>
    <item>
      <title>A sscanf() Replacement for .NET</title>
      <description>C programmers have used the sscanf() function for many years to easily parse well-structured text. Here's source code for a .NET replacement for sscanf(). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackbeltcoder.com%2fArticles%2fstrings%2fa-sscanf-replacement-for-net"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackbeltcoder.com%2fArticles%2fstrings%2fa-sscanf-replacement-for-net" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/A_sscanf_Replacement_for_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/A_sscanf_Replacement_for_NET</guid>
      <pubDate>Tue, 22 Mar 2011 18:56:39 GMT</pubDate>
    </item>
    <item>
      <title>How To Debug WPF and Silverlight Binding Errors In Visual Studio</title>
      <description>Learn about the Visual Studio settings that will reduce the amount of time spent debugging WPF and Silverlight binding errors. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.falconerdevelopment.com%2f2011%2f03%2f17%2fdebugging-wpf-silverlight-binding-errors-visual-studio%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.falconerdevelopment.com%2f2011%2f03%2f17%2fdebugging-wpf-silverlight-binding-errors-visual-studio%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/How_To_Debug_WPF_and_Silverlight_Binding_Errors_In_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/How_To_Debug_WPF_and_Silverlight_Binding_Errors_In_Visual_Studio</guid>
      <pubDate>Mon, 21 Mar 2011 16:24:16 GMT</pubDate>
    </item>
    <item>
      <title>WPF Themes now available on NuGet</title>
      <description>WPF Themes are now available on NuGet &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.rudigrobler.net%2fblog%2fwpf-themes-now-available-on-nuget"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.rudigrobler.net%2fblog%2fwpf-themes-now-available-on-nuget" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/WPF_Themes_now_available_on_NuGet</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/WPF_Themes_now_available_on_NuGet</guid>
      <pubDate>Mon, 14 Mar 2011 13:08:17 GMT</pubDate>
    </item>
    <item>
      <title>Select IN com LINQ -  Entity Framework</title>
      <description>how make a &amp;quot;select in&amp;quot; with LINQ and microsoft entity framework? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frodolphosa.blogspot.com%2f2011%2f03%2fselect-in-com-linq-entity-framework.html%3fsms_ss%3ddotnetkicks"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frodolphosa.blogspot.com%2f2011%2f03%2fselect-in-com-linq-entity-framework.html%3fsms_ss%3ddotnetkicks" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Select_IN_com_LINQ_Entity_Framework</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Select_IN_com_LINQ_Entity_Framework</guid>
      <pubDate>Sun, 13 Mar 2011 14:06:54 GMT</pubDate>
    </item>
    <item>
      <title>Flatten your architecture: Simplicity as a core value</title>
      <description>Ayende discusses how a seemingly well structured yet complex application architecture which follows SOLID principles isn't always the best thing when it comes to reading data (and tuning for performance) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fayende.com%2fBlog%2farchive%2f2011%2f02%2f23%2fflatten-your-architecture-simplicity-as-a-core-value.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fayende.com%2fBlog%2farchive%2f2011%2f02%2f23%2fflatten-your-architecture-simplicity-as-a-core-value.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Flatten_your_architecture_Simplicity_as_a_core_value</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Flatten_your_architecture_Simplicity_as_a_core_value</guid>
      <pubDate>Mon, 28 Feb 2011 18:19:17 GMT</pubDate>
    </item>
    <item>
      <title>Visualize changes in your repository</title>
      <description>As you perhaps know, there exists a very interesting project on Google code, with which you can visualize the activities on your repository: Gource. In this blog post I show how to use it and to create a movie. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.eweibel.net%2f%3fp%3d954"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.eweibel.net%2f%3fp%3d954" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Visualize_changes_in_your_repository</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Visualize_changes_in_your_repository</guid>
      <pubDate>Thu, 17 Feb 2011 16:03:46 GMT</pubDate>
    </item>
    <item>
      <title>New Coding4Fun.Phone.Toolkit v1.1 officially released</title>
      <description>The New Coding4Fun.Phone.Toolkit v1.1 officially released &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwindowsphonegeek.com%2ftips%2fnew-coding4fun-phone-toolkit-v1-1-officially-released"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwindowsphonegeek.com%2ftips%2fnew-coding4fun-phone-toolkit-v1-1-officially-released" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/New_Coding4Fun_Phone_Toolkit_v1_1_officially_released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/New_Coding4Fun_Phone_Toolkit_v1_1_officially_released</guid>
      <pubDate>Mon, 14 Feb 2011 14:33:58 GMT</pubDate>
    </item>
    <item>
      <title>IRC.NET 0.4.0 released -- IRC library for .NET 4.0 &amp;amp; Silverlight</title>
      <description>IRC.NET is a complete IRC (Internet Relay Chat) client library for the .NET Framework 4.0 and Silverlight 4. It aims to provide a complete and efficient implementation of the protocol as described in RFC 2812 (Internet Relay Chat: Client Protocol) as well as supporting de-facto modern features of the protocol, such as ISUPPORT commands and CTCP (Client To Client Protocol). The .NET Framework library is also intended to compile and run under Mono 2.6 and later. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flaunchpad.net%2fircdotnet%2f0.4%2f0.4.0"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flaunchpad.net%2fircdotnet%2f0.4%2f0.4.0" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/IRC_NET_0_4_0_released_IRC_library_for_NET_4_0_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/IRC_NET_0_4_0_released_IRC_library_for_NET_4_0_Silverlight</guid>
      <pubDate>Mon, 14 Feb 2011 14:36:23 GMT</pubDate>
    </item>
    <item>
      <title>Catel - a free open-source MVVM Framework for WPF and Silverlight</title>
      <description>Information and background information about Catel! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.catenalogic.com%2fpost%2f2011%2f02%2f06%2fCatel-a-free-open-source-MVVM-Framework-for-WPF-and-Silverlight.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.catenalogic.com%2fpost%2f2011%2f02%2f06%2fCatel-a-free-open-source-MVVM-Framework-for-WPF-and-Silverlight.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Catel_a_free_open_source_MVVM_Framework_for_WPF_and_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Catel_a_free_open_source_MVVM_Framework_for_WPF_and_Silverlight</guid>
      <pubDate>Mon, 07 Feb 2011 14:41:21 GMT</pubDate>
    </item>
    <item>
      <title>An open letter to the .NET community</title>
      <description>RedGate will start charging for their previously free version of Reflector. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.red-gate.com%2fproducts%2fdotnet-development%2freflector%2fannouncement"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.red-gate.com%2fproducts%2fdotnet-development%2freflector%2fannouncement" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/An_open_letter_to_the_NET_community</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/An_open_letter_to_the_NET_community</guid>
      <pubDate>Wed, 02 Feb 2011 18:23:30 GMT</pubDate>
    </item>
    <item>
      <title>Efficient buffering with BufferManager</title>
      <description>Shows in a simple example how you can improve performance when using byte arrays in your application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.smithfamily.dk%2fpost%2f2011%2f01%2f22%2fEfficient-buffering-with-BufferManager.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.smithfamily.dk%2fpost%2f2011%2f01%2f22%2fEfficient-buffering-with-BufferManager.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Efficient_buffering_with_BufferManager</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Efficient_buffering_with_BufferManager</guid>
      <pubDate>Mon, 31 Jan 2011 20:01:17 GMT</pubDate>
    </item>
    <item>
      <title>Using System.IO.Packaging to ZIP your files</title>
      <description>System.IO.Packaging provides storage support for multiple data objects in a single container. System.IO.Packaging uses the ZIP file format as its primary physical format for a Package. Other Package implementations might use an XML document, a database, or Web service.
The following contains a utility class I wrote to help zip a file or a folder into a ZIP archive. This is an asynchronous as is suitable for invoking from a WPF or a Silverlight Application when we need to display a progress bar. Here is the code: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgalratner.com%2fblogs%2fnet%2farchive%2f2011%2f01%2f24%2fusing-system-io-packaging-to-zip-your-files.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgalratner.com%2fblogs%2fnet%2farchive%2f2011%2f01%2f24%2fusing-system-io-packaging-to-zip-your-files.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_System_IO_Packaging_to_ZIP_your_files</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_System_IO_Packaging_to_ZIP_your_files</guid>
      <pubDate>Mon, 24 Jan 2011 15:41:15 GMT</pubDate>
    </item>
    <item>
      <title>SSL is not about encryption</title>
      <description>It's about assurance. It's about establishing a degree of trust in a site's legitimacy that's sufficient for you to confidently transmit and receive data with the knowledge that it's reaching its intended destination without being intercepted or manipulated in the process.

Last week I wrote a (slightly) tongue-in-cheek post about the Who's who of bad password practices. I was critical of a number of sites not implementing SSL as no indication of it was present in the browser. "But wait!" some commenters shouted, "you can still post to HTTPS and the data will be encrypted" they yelled, "stop propagating fear and misunderstanding", they warned.

I thought carefully about these responses and made a little update at the end of the post but the story of posting data from HTTP to HTTPS is worth more than just a footnote. The real misunderstanding in this story is believing that just because the credentials are encrypted in transit, SSL has been properly implemented. Let's took a good look at what's wrong with that belief and why there's more to SSL than just encryption. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.troyhunt.com%2f2011%2f01%2fssl-is-not-about-encryption.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.troyhunt.com%2f2011%2f01%2fssl-is-not-about-encryption.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/SSL_is_not_about_encryption</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/SSL_is_not_about_encryption</guid>
      <pubDate>Mon, 24 Jan 2011 15:41:15 GMT</pubDate>
    </item>
    <item>
      <title>Chrome based browser control can embed .Net objects in the DOM.</title>
      <description>The CefWebBrowser class is a standard WinForms Control and can be easily embedded in most applications. Being based on Chrome/Chromium it's blisteringly fast.

It has a number of advanced features not seen anywhere else including the ability to embed .Net objects into the page's document object.  This could be used to good effect for automated website testing or page scraping.




 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgithub.com%2fchillitom%2fCefSharp"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgithub.com%2fchillitom%2fCefSharp" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Chrome_based_browser_control_can_embed_Net_objects_in_the_DOM</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Chrome_based_browser_control_can_embed_Net_objects_in_the_DOM</guid>
      <pubDate>Thu, 20 Jan 2011 20:07:33 GMT</pubDate>
    </item>
    <item>
      <title>Existential Types in C#</title>
      <description>What are existential types and how can we put them to use in C#? Here is an encoding of existentials in C# using generics. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.typesandotherdistractions.com%2f2010%2f12%2fexistential-types-in-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.typesandotherdistractions.com%2f2010%2f12%2fexistential-types-in-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Existential_Types_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Existential_Types_in_C</guid>
      <pubDate>Thu, 20 Jan 2011 20:07:33 GMT</pubDate>
    </item>
  </channel>
</rss>
