<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by Jachman</title>
    <description>Stories kicked by Jachman</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>How to authorize a WCF service in the anonymous internet</title>
      <description>I had to program an authorization mechanism between a client application and a webservice that is hosted by a internet provider. In such a case, we have two different domains in place, no windows integrated authentication, no certificate or something else. The old fashioned way in that case is to use a SoapHeader in order to send informations about the user to the web service . That's the point where the trail starts . &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f24%2fhow-to-authorize-a-wcf-service-in-the-anonymous-internet%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f24%2fhow-to-authorize-a-wcf-service-in-the-anonymous-internet%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/How_to_authorize_a_WCF_service_in_the_anonymous_internet</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/How_to_authorize_a_WCF_service_in_the_anonymous_internet</guid>
      <pubDate>Wed, 24 Jun 2009 19:22:19 GMT</pubDate>
    </item>
    <item>
      <title>You can only add project references to other Silverlight projects</title>
      <description>If you start with silverlight, I bet with you that you'll get that anoying message in any case. But it has a reason why Microsoft doesn't allow that. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f18%2fyou-can-only-add-project-references-to-other-silverlight-projects-in-the-solution%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f18%2fyou-can-only-add-project-references-to-other-silverlight-projects-in-the-solution%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/You_can_only_add_project_references_to_other_Silverlight_projects</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/You_can_only_add_project_references_to_other_Silverlight_projects</guid>
      <pubDate>Thu, 18 Jun 2009 11:35:19 GMT</pubDate>
    </item>
    <item>
      <title>How to manage Control States in Silverlight Applications</title>
      <description>In 2006 I developed a small piece of code in order to use a declarative control state handling in WinForm Applications. Three years later (2009) I thought declarative control state handling should be standard in Silverlight - but I failed. So I decided to migrate that piece of code to the new Silverlight plattform.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f13%2fhow-to-manage-control-states-in-silverlight-applications%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f13%2fhow-to-manage-control-states-in-silverlight-applications%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/How_to_manage_Control_States_in_Silverlight_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/How_to_manage_Control_States_in_Silverlight_Applications</guid>
      <pubDate>Sat, 13 Jun 2009 09:28:51 GMT</pubDate>
    </item>
    <item>
      <title>How to localize Silverlight Applications the smart way</title>
      <description>A very common task when developing business applications is to localize them for english, german and other languages. The most common approach is to use ResX files in order to create resource classes which can be used to bind the silverlight controls to.  Due to a bug in the resource generator from Microsoft, you always have to change the created resource class from internal to public, which is very annoying . That's why I was searching for a better solution to localize silverlight applications - and I think I found a really smart way to do that task. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f10%2fhow-to-localize-silverlight-applications-the-smart-way%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f10%2fhow-to-localize-silverlight-applications-the-smart-way%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/How_to_localize_Silverlight_Applications_the_smart_way</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/How_to_localize_Silverlight_Applications_the_smart_way</guid>
      <pubDate>Wed, 10 Jun 2009 20:05:41 GMT</pubDate>
    </item>
    <item>
      <title>Concurrent collections for C# using Parallel Extensions</title>
      <description>One of the most difficult tasks related to concurrent programming in C# and .Net 3.5 is sharing collections, arrays or lists between many tasks running at the same time. Besides, the complexity increases when these concurrent tasks need to add and/or remove items from them. Doing this safely involves a great control of coordination data structures and the efficient use of precise locks.
Luckily, the June 2008 CTP (Community Technology Preview) of Parallel Extensions to the .Net Framework added very interesting high-level coordination data structures and thread-safe collections. The result is amazing: the producer-consumer scheme complexity reduced to a minimum... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsoftware.intel.com%2fen-us%2fblogs%2f2009%2f04%2f08%2fconcurrent-collections-for-c-using-parallel-extensions%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsoftware.intel.com%2fen-us%2fblogs%2f2009%2f04%2f08%2fconcurrent-collections-for-c-using-parallel-extensions%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Concurrent_collections_for_C_using_Parallel_Extensions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Concurrent_collections_for_C_using_Parallel_Extensions</guid>
      <pubDate>Thu, 09 Apr 2009 12:11:26 GMT</pubDate>
    </item>
    <item>
      <title>How to serialize interface types and lists using the XmlSerializer</title>
      <description>The XmlSerializer works fine as long as you work with concrete classes. But soon as you specify an interface within an object the serialization will fail with the message "Cannot serialize member ." But there's a solution to hack this. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f04%2f08%2fhow-to-serialize-interface-types-and-lists-using-the-xmlserializer%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f04%2f08%2fhow-to-serialize-interface-types-and-lists-using-the-xmlserializer%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_serialize_interface_types_and_lists_using_the_XmlSerializer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_serialize_interface_types_and_lists_using_the_XmlSerializer</guid>
      <pubDate>Wed, 08 Apr 2009 16:43:31 GMT</pubDate>
    </item>
    <item>
      <title>Using Async Delegates instead of the Thread class</title>
      <description>If you want to write some asnychronous code, the good old fashioned way is to create a new Thread. But this has several pitfalls, e.g. when you need to use parameters or you need to retrieve a return value. Then this way is getting tricky.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f04%2f03%2fusing-async-delegates-instead-of-the-thread-class%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f04%2f03%2fusing-async-delegates-instead-of-the-thread-class%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_Async_Delegates_instead_of_the_Thread_class</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_Async_Delegates_instead_of_the_Thread_class</guid>
      <pubDate>Fri, 03 Apr 2009 17:17:47 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC Best Practices (Part 2) - Kazi Manzur Rashid's Blog</title>
      <description>This is the second part of the series and may be the last, till I find some thing new. My plan was to start with routing, controller, controller to model, controller to view and last of all the view, but some how I missed one important thing in routing, so I will begin with that in this post. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f04%2f03%2fasp-net-mvc-best-practices-part-2.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f04%2f03%2fasp-net-mvc-best-practices-part-2.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Best_Practices_Part_2_Kazi_Manzur_Rashid_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Best_Practices_Part_2_Kazi_Manzur_Rashid_s_Blog</guid>
      <pubDate>Fri, 03 Apr 2009 22:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio 2010 Architecture Edition</title>
      <description>Some screenshots and descriptions from the Visual Studio 2010 CTP, Architecture Edition, including Architecture Explorer, UML Support, and the Layer Diagram. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f29%2fvisual-studio-2010-architecture-edition%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f29%2fvisual-studio-2010-architecture-edition%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Architecture_Edition</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_Architecture_Edition</guid>
      <pubDate>Mon, 30 Mar 2009 16:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Being parallel?</title>
      <description>Doesn't today's multithreaded software profit from more cores automatically?
While server software will probably show better throughput, multithreaded client software may profit from more cores, but to a far lower degree than one might think at first.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f27%2fbeing-parallel%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f27%2fbeing-parallel%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Being_parallel</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Being_parallel</guid>
      <pubDate>Fri, 27 Mar 2009 22:08:44 GMT</pubDate>
    </item>
    <item>
      <title>Going parallel.</title>
      <description>The so-called "many core shift" is happening. It's not a thing of the future, it's not "just around the corner", it has already begun. And it will change our developers' life. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f21%2fgoing-parallel%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fajdotnet.wordpress.com%2f2009%2f03%2f21%2fgoing-parallel%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Going_parallel</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Going_parallel</guid>
      <pubDate>Sat, 28 Mar 2009 00:16:05 GMT</pubDate>
    </item>
    <item>
      <title>Code Analysis Tool VisualNDepend at a Glance</title>
      <description>To admit I ever thought that code analysis are interessting at all, but not really necessary for my projects. Since I saw VisualNDepend and I changed my opinion about that. But step by step. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f03%2f18%2fcode-analysis-tool-visualndepend-at-a-glance%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f03%2f18%2fcode-analysis-tool-visualndepend-at-a-glance%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Code_Analysis_Tool_VisualNDepend_at_a_Glance</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Code_Analysis_Tool_VisualNDepend_at_a_Glance</guid>
      <pubDate>Wed, 18 Mar 2009 19:52:37 GMT</pubDate>
    </item>
    <item>
      <title>Reusing .NET Assemblies in Silverlight</title>
      <description>Visual Studio 2008 doesn't allow Silverlight to reference &amp;quot;.NET assemblies&amp;quot;.  This document explains that there's absolutely no technical reason for this since .NET assemblies ARE Silverlight assemblies, then it shows you how to make the reference work. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.netfxharmonics.com%2f2008%2f12%2fReusing-NET-Assemblies-in-Silverlight"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.netfxharmonics.com%2f2008%2f12%2fReusing-NET-Assemblies-in-Silverlight" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Reusing_NET_Assemblies_in_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Reusing_NET_Assemblies_in_Silverlight</guid>
      <pubDate>Sat, 03 Jan 2009 23:50:05 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight &amp;amp; ASP.NET MVC vs Web Forms (Very High Level)</title>
      <description>A high level Pros and Cons look at Silverlight vs ASP.NET Web Forms (based on pros/cons offered by ASP.NET MVC) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.silverlighthack.com%2fpost%2f2008%2f10%2f23%2fSilverlight-ASPNET-MVC-vs-Web-Forms-(Very-High-Level).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.silverlighthack.com%2fpost%2f2008%2f10%2f23%2fSilverlight-ASPNET-MVC-vs-Web-Forms-(Very-High-Level).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_ASP_NET_MVC_vs_Web_Forms_Very_High_Level</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_ASP_NET_MVC_vs_Web_Forms_Very_High_Level</guid>
      <pubDate>Fri, 24 Oct 2008 02:34:05 GMT</pubDate>
    </item>
    <item>
      <title>One-liner for splitting Pascal Casing</title>
      <description>Today I had to write a method for splitting Pascal Cased property names to readable text strings. Because I found a small and stylish solution, I want to show you. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f10%2f16%2fone-liner-for-splitting-pascal-casing%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f10%2f16%2fone-liner-for-splitting-pascal-casing%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/One_liner_for_splitting_Pascal_Casing</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/One_liner_for_splitting_Pascal_Casing</guid>
      <pubDate>Thu, 16 Oct 2008 20:30:29 GMT</pubDate>
    </item>
    <item>
      <title>How to deploy a webservice by hand</title>
      <description>When you search the web for webservice deployment you always hear: "Setup a Web Setup project ." Sure, that's the easiest solution, but not if you see it in a wider scope. So here's the manual way of deploying a .NET WebService (and it's a really simplay way) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f10%2f07%2fhow-to-deploy-a-webservice-by-hand%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f10%2f07%2fhow-to-deploy-a-webservice-by-hand%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/How_to_deploy_a_webservice_by_hand</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/How_to_deploy_a_webservice_by_hand</guid>
      <pubDate>Tue, 07 Oct 2008 17:13:34 GMT</pubDate>
    </item>
    <item>
      <title>Security Permissions of Windows Vista for Visual Studio 2005</title>
      <description>Solutions to solve the problem of &amp;quot;The project is not configured to be debugged&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fprogramming.top54u.com%2fpost%2fSecurity-Permissions-of-Windows-Vista-for-Visual-Studio-2005.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fprogramming.top54u.com%2fpost%2fSecurity-Permissions-of-Windows-Vista-for-Visual-Studio-2005.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Security_Permissions_of_Windows_Vista_for_Visual_Studio_2005</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Security_Permissions_of_Windows_Vista_for_Visual_Studio_2005</guid>
      <pubDate>Wed, 26 Mar 2008 19:18:07 GMT</pubDate>
    </item>
    <item>
      <title>How to extract data from Microsoft Excel XML Files</title>
      <description>Today I want to show how to extract data from Microsoft Excel Files. I needed it myself the time I looked for a solution to create some testdata for my application. Instead of putting the testdata into a database - which would be very hard to handle - I decided to put them into an Excel file.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f03%2f19%2fhow-to-extract-data-from-microsoft-excel-xml-files%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f03%2f19%2fhow-to-extract-data-from-microsoft-excel-xml-files%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_extract_data_from_Microsoft_Excel_XML_Files</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_extract_data_from_Microsoft_Excel_XML_Files</guid>
      <pubDate>Wed, 19 Mar 2008 15:53:48 GMT</pubDate>
    </item>
    <item>
      <title>How to use delegates to remove duplicated code</title>
      <description>Sometimes you have duplicated code, that is not easy to remove with "ordinary" coding approaches. Think about the following example. You have two or more methods that needs to be encapsulated with try-catch blocks. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f02%2f06%2fhow-to-use-delegates-to-remove-duplicated-code%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2008%2f02%2f06%2fhow-to-use-delegates-to-remove-duplicated-code%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_use_delegates_to_remove_duplicated_code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_use_delegates_to_remove_duplicated_code</guid>
      <pubDate>Thu, 07 Feb 2008 08:31:02 GMT</pubDate>
    </item>
    <item>
      <title>How to use Custom Assemblies with Reports</title>
      <description>Last days I tried to write a sql server report. In the beginning everything was fine. Until - I wanted to call a custom method in a custom assembly of my project.   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f12%2f19%2fhow-to-use-custom-assemblies-with-reports%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f12%2f19%2fhow-to-use-custom-assemblies-with-reports%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_use_Custom_Assemblies_with_Reports</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_use_Custom_Assemblies_with_Reports</guid>
      <pubDate>Wed, 19 Dec 2007 16:19:46 GMT</pubDate>
    </item>
    <item>
      <title>A Few Quick Tips to Get More Visitors</title>
      <description>The problem is getting people to actually stay and interact. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.bloodyflux.com%2fpost.aspx%3fid%3ddff2b559-d3fd-4463-b1bf-2e03b82ac036"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.bloodyflux.com%2fpost.aspx%3fid%3ddff2b559-d3fd-4463-b1bf-2e03b82ac036" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/A_Few_Quick_Tips_to_Get_More_Visitors</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/A_Few_Quick_Tips_to_Get_More_Visitors</guid>
      <pubDate>Thu, 29 Nov 2007 11:13:09 GMT</pubDate>
    </item>
    <item>
      <title>Error Handling is Error Management</title>
      <description>Error handling in asynchrounous scenarios (as with WF) has some additional challanges. Making the error apparent is just one... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fajdotnet.wordpress.com%2f2007%2f11%2f11%2ferror-handling-is-error-management%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fajdotnet.wordpress.com%2f2007%2f11%2f11%2ferror-handling-is-error-management%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wwf/Error_Handling_is_Error_Management</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wwf/Error_Handling_is_Error_Management</guid>
      <pubDate>Sun, 11 Nov 2007 17:23:52 GMT</pubDate>
    </item>
    <item>
      <title>?? Operator and it's use case</title>
      <description>Long time I asked myself, for what the heck I could use the ?? operator. Last days I found the perfect scenario for using this operator. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f11%2f08%2foperator-and-its-use-case%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f11%2f08%2foperator-and-its-use-case%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Operator_and_it_s_use_case</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Operator_and_it_s_use_case</guid>
      <pubDate>Sun, 11 Nov 2007 19:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Public Holiday Toolkit v1.0</title>
      <description>Using this toolkit enables you to show public holidays for several countries within your .NET application. This can be interessting for many use cases. Think about calendars, appointments and so on.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f11%2f02%2fpublic-holiday-toolkit-v10%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2007%2f11%2f02%2fpublic-holiday-toolkit-v10%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Public_Holiday_Toolkit_v1_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Public_Holiday_Toolkit_v1_0</guid>
      <pubDate>Mon, 05 Nov 2007 19:54:06 GMT</pubDate>
    </item>
    <item>
      <title>Robust Operations</title>
      <description>Robust processing (i.e. preventing errors) and error handling are actually two sides of the same coin. This post takes a closer look at preventing some common error scenarios in WF applications.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fajdotnet.wordpress.com%2f2007%2f11%2f04%2frobust-operations%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fajdotnet.wordpress.com%2f2007%2f11%2f04%2frobust-operations%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wwf/Robust_Operations</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wwf/Robust_Operations</guid>
      <pubDate>Sun, 04 Nov 2007 21:32:10 GMT</pubDate>
    </item>
  </channel>
</rss>