<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by donnfelker</title>
    <description>Stories kicked by donnfelker</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>Using Prism (Composite WPF) EventAggregator</title>
      <description>Imagine that your &amp;quot;Services&amp;quot; layer needs needs to send off an event that some data has changed. One way to do this would be to bubble the event to the parent layer and then let that layer bubble the event up again. For example, lets say that the Service layer changed the Customer and it wants to let any interested parties know (as it should) through an event. So it sends a &amp;quot;CustomerChanged&amp;quot; event notification. Since the only object who is watching the Service layer is the Model layer, the model layer will grab the event and then re-publish it again (bubbling it up) the object graph). As you can tell, its a royal pain to do this. Imagine the amount of code you have to write. You've to write a ton of plumbing just to bubble the event from the service to the model to the view model to the view, and vice versa. This is where an event aggregator  comes in.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fUsing-Prisms-(CompositeWPF)-EventAggregator.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fUsing-Prisms-(CompositeWPF)-EventAggregator.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Using_Prism_Composite_WPF_EventAggregator</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Using_Prism_Composite_WPF_EventAggregator</guid>
      <pubDate>Tue, 06 Jan 2009 19:39:12 GMT</pubDate>
    </item>
    <item>
      <title>BlogEngine.NET extension: Detailed Download Counter</title>
      <description>A detailed download counter extension for BlogEngine.NET 1.4.* that registers all downloads on your blog and shows you detailed information about the downloads itself. &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%2f2009%2f01%2f01%2fBlogEngineNET-extension-Detailed-Download-Counter.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.catenalogic.com%2fpost%2f2009%2f01%2f01%2fBlogEngineNET-extension-Detailed-Download-Counter.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/BlogEngine_NET_extension_Detailed_Download_Counter</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/BlogEngine_NET_extension_Detailed_Download_Counter</guid>
      <pubDate>Tue, 06 Jan 2009 18:34:00 GMT</pubDate>
    </item>
    <item>
      <title>How To: REST Services in WCF 3.5 Part 2 - The POST</title>
      <description>Learn how to utilize the WebInvoke Attribute in WCF 3.5 to implement a RESTful Web service that accepts POST requests.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fHow-To-REST-Services-in-WCF-35-Part-2-The-POST.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fHow-To-REST-Services-in-WCF-35-Part-2-The-POST.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/How_To_REST_Services_in_WCF_3_5_Part_2_The_POST</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/How_To_REST_Services_in_WCF_3_5_Part_2_The_POST</guid>
      <pubDate>Thu, 04 Dec 2008 14:31:42 GMT</pubDate>
    </item>
    <item>
      <title>Implementing a REST service with WCF (part 1) </title>
      <description>A short how to on implementing a REST service with WCF. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f67"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f67" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/Implementing_a_REST_service_with_WCF_part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/Implementing_a_REST_service_with_WCF_part_1</guid>
      <pubDate>Tue, 02 Dec 2008 18:46:14 GMT</pubDate>
    </item>
    <item>
      <title>How To: Implement a simple REST Services in WCF 3.5 Part 1</title>
      <description>A real life introduction to how to program REST based services with WCF. With full working source download! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fHow-To-Implement-a-simple-REST-Services-in-WCF-35-Part-1.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fHow-To-Implement-a-simple-REST-Services-in-WCF-35-Part-1.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/How_To_Implement_a_simple_REST_Services_in_WCF_3_5_Part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/How_To_Implement_a_simple_REST_Services_in_WCF_3_5_Part_1</guid>
      <pubDate>Mon, 03 Nov 2008 22:20:44 GMT</pubDate>
    </item>
    <item>
      <title>Integration Testing - End to End</title>
      <description>A detailed blog post that outlines exactly what integration testing is. Its not unit testing, its integration testing. Full examples provided.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fIntegration-Testing.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fIntegration-Testing.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Integration_Testing_End_to_End</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Integration_Testing_End_to_End</guid>
      <pubDate>Fri, 24 Oct 2008 13:13:12 GMT</pubDate>
    </item>
    <item>
      <title>My Visual Studio Settings - My Altered Vibrant Ink Settings Setup</title>
      <description>Custom DARK .NET Settings file with a preview. You will need Consolas for these settings.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fMy-Visual-Studio-Settings-My-Altered-Vibrant-Ink-Settings-Setup.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fMy-Visual-Studio-Settings-My-Altered-Vibrant-Ink-Settings-Setup.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/My_Visual_Studio_Settings_My_Altered_Vibrant_Ink_Settings_Setup</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/My_Visual_Studio_Settings_My_Altered_Vibrant_Ink_Settings_Setup</guid>
      <pubDate>Tue, 07 Oct 2008 13:27:31 GMT</pubDate>
    </item>
    <item>
      <title>4 Common Follies Made In Unit/Integration Testing</title>
      <description>Review 4 common unit testing and integration testing follies. From testing with databases to not testing components because &amp;quot;You think they work&amp;quot;.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2f4-Common-Follies-Made-In-UnitIntegration-Testing.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2f4-Common-Follies-Made-In-UnitIntegration-Testing.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/4_Common_Follies_Made_In_Unit_Integration_Testing</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/4_Common_Follies_Made_In_Unit_Integration_Testing</guid>
      <pubDate>Fri, 03 Oct 2008 19:29:20 GMT</pubDate>
    </item>
    <item>
      <title>Resizing a VHD and a Volume</title>
      <description>Learn how to resize a Virtual PC VHD File so that the C drive has more space. VERY VERY Helpful when you run out of room on that VPC!  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fResizing-a-VHD-and-a-Volume.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2fpost%2fResizing-a-VHD-and-a-Volume.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Resizing_a_VHD_and_a_Volume</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Resizing_a_VHD_and_a_Volume</guid>
      <pubDate>Fri, 26 Sep 2008 20:50:57 GMT</pubDate>
    </item>
    <item>
      <title>Intro To Microsoft Unity - Configuring the Container through XML </title>
      <description>Learn how to configure Microsoft Unity through manual registration and XML registration. A full sample application is included for download. 
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f26%2fIntroToMicrosoftUnityDependencyInjectionContainer.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f26%2fIntroToMicrosoftUnityDependencyInjectionContainer.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Intro_To_Microsoft_Unity_Configuring_the_Container_through_XML</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Intro_To_Microsoft_Unity_Configuring_the_Container_through_XML</guid>
      <pubDate>Mon, 26 May 2008 03:43:55 GMT</pubDate>
    </item>
    <item>
      <title>Using iTextSharp To Watermark/Write Text to Existing PDF's</title>
      <description>This tutorial shows you how to write text to an existing PDF by using iTextSharp. Learn how to write text on top of the document, below the document and at various locations through the code and full solution provided.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f11%2fUsingITextSharpToWatermarkWriteTextToExistingPDFs.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f11%2fUsingITextSharpToWatermarkWriteTextToExistingPDFs.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_iTextSharp_To_Watermark_Write_Text_to_Existing_PDF_s</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_iTextSharp_To_Watermark_Write_Text_to_Existing_PDF_s</guid>
      <pubDate>Mon, 12 May 2008 18:31:02 GMT</pubDate>
    </item>
    <item>
      <title>The Importance of Unit Testing WCF Attributes</title>
      <description>What happens when you don't test certain WCF Attribute values in your unit tests? Sometimes nothing  - and sometimes all hell breaks loose. I'm scared of the latter. :) 

This is a quick and easy intro into how to unit test your operation contract attribute values.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f07%2fTheImportanceOfUnitTestingWCFAttributes.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f05%2f07%2fTheImportanceOfUnitTestingWCFAttributes.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/The_Importance_of_Unit_Testing_WCF_Attributes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/The_Importance_of_Unit_Testing_WCF_Attributes</guid>
      <pubDate>Wed, 07 May 2008 18:26:35 GMT</pubDate>
    </item>
    <item>
      <title>Enterprise Service Bus Messaging Using nServiceBus</title>
      <description>I have been working lately with a big group of fellow developers here in SilverKey on the architecture and design of a relatively big project that required much services and messaging work. We thought that we should implement our public services the REST way using WCF for .NET 3.5, with so many customizations, and that we'll use a library called nServiceBus for internal messaging. nServiceBus is a framework for handling publisher/subscriber (pub/sub) model of messaging. It provides reliable messaging via the Enterprise Service Bus (ESB) pattern, and uses MSMQ as the physical bus. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fmeligy%2farchive%2f2008%2f04%2f20%2fenterprise-service-bus-messaging-using-nservicebus.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fmeligy%2farchive%2f2008%2f04%2f20%2fenterprise-service-bus-messaging-using-nservicebus.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Enterprise_Service_Bus_Messaging_Using_nServiceBus</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Enterprise_Service_Bus_Messaging_Using_nServiceBus</guid>
      <pubDate>Tue, 22 Apr 2008 19:25:29 GMT</pubDate>
    </item>
    <item>
      <title>NUnit 2.4.7 Released w/ RowTest Attribute (example included)</title>
      <description>NUnit now includes the RowTest extension, written by Andreas Schlapsi, in it's extension assemblies. This extension allows you to write test methods that take arguments and to provide multiple sets of argument values using the RowAttribute. To use RowTest, your test must reference the nunit.framework.extensions assembly. 
This post covers how to utilize this attribute.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f04%2f01%2fNUnit247AndTheRowTestAttributeWithExample.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2008%2f04%2f01%2fNUnit247AndTheRowTestAttributeWithExample.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/NUnit_2_4_7_Released_w_RowTest_Attribute_example_included</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/NUnit_2_4_7_Released_w_RowTest_Attribute_example_included</guid>
      <pubDate>Tue, 01 Apr 2008 15:29:40 GMT</pubDate>
    </item>
    <item>
      <title>Streaming Large Objects with ADO.NET, Properly</title>
      <description>A quick reference for dealing with BLOBs in SQL without creating huge arrays in memory. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeassassin.com%2fblog%2fPermaLink%2cguid%2c41e69e3d-2531-411a-b32d-e6e19b8a1dd9.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeassassin.com%2fblog%2fPermaLink%2cguid%2c41e69e3d-2531-411a-b32d-e6e19b8a1dd9.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Streaming_Large_Objects_with_ADO_NET_Properly</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Streaming_Large_Objects_with_ADO_NET_Properly</guid>
      <pubDate>Thu, 27 Sep 2007 14:43:13 GMT</pubDate>
    </item>
    <item>
      <title>Automated Form Posting with .NET / ASP.NET's CURL</title>
      <description>Learn how to use the HttpRequest object and Fiddler to create web requests and post values to forms in a runtime environment.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f09%2f13%2fAutomatedFormPostingWithNETASPNETsCURL.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f09%2f13%2fAutomatedFormPostingWithNETASPNETsCURL.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Automated_Form_Posting_with_NET_ASP_NET_s_CURL</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Automated_Form_Posting_with_NET_ASP_NET_s_CURL</guid>
      <pubDate>Thu, 13 Sep 2007 06:18:30 GMT</pubDate>
    </item>
    <item>
      <title>CodeSmith Screen Cast</title>
      <description>Learn how to utilize the DatabaseSchema and ExportToFile methods of a template to create files based upon your database schema.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f09%2f05%2fCodeSmithScreencast.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f09%2f05%2fCodeSmithScreencast.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/CodeSmith_Screen_Cast</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/CodeSmith_Screen_Cast</guid>
      <pubDate>Wed, 12 Sep 2007 03:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Returning XML Column Data As a Set of Data from SQL</title>
      <description>I needed to write something like this ... 

SELECT * FROM CustomerTest WHERE Customer_Id = 1; 

The data returned needed to return the row as well as the data inside of the XML Column in that row, in the same set. (The data in the XML column needed to be returned as sets of records as well.) The XML Contained was simple XML that looked like this...

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f07%2f26%2fReturningXMLDataAsARecordSetsThroughTheCLRInSQLServer2005.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f07%2f26%2fReturningXMLDataAsARecordSetsThroughTheCLRInSQLServer2005.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Returning_XML_Column_Data_As_a_Set_of_Data_from_SQL</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Returning_XML_Column_Data_As_a_Set_of_Data_from_SQL</guid>
      <pubDate>Tue, 31 Jul 2007 13:20:05 GMT</pubDate>
    </item>
    <item>
      <title>HTML 5 vs. HTML 4 The Differences (my bits)</title>
      <description>An interesting look into HTML 5 and some of its changes from the previous version (HTML 4). 
Including new input types such as &amp;quot;datetime&amp;quot;, 'time&amp;quot;, &amp;quot;email&amp;quot;, &amp;quot;url&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f06%2f22%2fHTML5VsHTML4.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f06%2f22%2fHTML5VsHTML4.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HTML_5_vs_HTML_4_The_Differences_my_bits</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HTML_5_vs_HTML_4_The_Differences_my_bits</guid>
      <pubDate>Mon, 25 Jun 2007 14:01:01 GMT</pubDate>
    </item>
    <item>
      <title>Complexity and Staying Up To Speed</title>
      <description>The author covers the complexity of software development and presents tips on how to stay up to speed with emerging technologies.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f25%2fComplexityAndStayingUpToSpeed.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f25%2fComplexityAndStayingUpToSpeed.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Complexity_and_Staying_Up_To_Speed</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Complexity_and_Staying_Up_To_Speed</guid>
      <pubDate>Sun, 27 May 2007 13:44:05 GMT</pubDate>
    </item>
    <item>
      <title>Simplifying Database Modeling in Visio 2002/2003 through SQL Generatio</title>
      <description>If you're like me you're still probably using Visio 2002/2003. If you're also like me, you don't have the Enterprise Architect version of Visio that allows you to forward engineer the database from the ERD Diagram that you've created. This post helps you by providing a way to simulate a forward engineering of the SQL Code.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f10%2fSimplifyingDatabaseModelingInVisio20022003ThroughSQLGeneration.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f10%2fSimplifyingDatabaseModelingInVisio20022003ThroughSQLGeneration.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Simplifying_Database_Modeling_in_Visio_2002_2003_through_SQL_Generatio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Simplifying_Database_Modeling_in_Visio_2002_2003_through_SQL_Generatio</guid>
      <pubDate>Thu, 10 May 2007 11:42:09 GMT</pubDate>
    </item>
    <item>
      <title>Temporary Projects in Visual Studio 2005</title>
      <description>How to enable temporary projects in Visual Studio 2005.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f08%2fTemporaryProjectsInVisualStudio2005.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f08%2fTemporaryProjectsInVisualStudio2005.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Temporary_Projects_in_Visual_Studio_2005</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Temporary_Projects_in_Visual_Studio_2005</guid>
      <pubDate>Thu, 10 May 2007 08:46:01 GMT</pubDate>
    </item>
    <item>
      <title>C# Microsoft MapPoint 4.5 Geocode (Latitude and Longitude) Class</title>
      <description>A class using the Microsoft MapPoint 4.5 Webservices to obtain Geocoding information about an address. Very easy to implement.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f07%2fCMicrosoftMapPoint45GeocodeLatitudeAndLongitudeClass.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f05%2f07%2fCMicrosoftMapPoint45GeocodeLatitudeAndLongitudeClass.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_Microsoft_MapPoint_4_5_Geocode_Latitude_and_Longitude_Class</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_Microsoft_MapPoint_4_5_Geocode_Latitude_and_Longitude_Class</guid>
      <pubDate>Tue, 08 May 2007 05:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Forcing users to provide a message when committing to SVN/TortoiseSVN</title>
      <description>A quick tutorial on how to require your developers to provide a message when committing a change to your Subversion respository.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f04%2f26%2fForcingUsersToProvideAMessageInSVNTortoiseSVNIncludingHOWTO.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f04%2f26%2fForcingUsersToProvideAMessageInSVNTortoiseSVNIncludingHOWTO.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Forcing_users_to_provide_a_message_when_committing_to_SVN_TortoiseSVN</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Forcing_users_to_provide_a_message_when_committing_to_SVN_TortoiseSVN</guid>
      <pubDate>Mon, 30 Apr 2007 09:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Search .NET - The developer Search Engine</title>
      <description>Dan Appleman has created a .NET search engine to help with discoverability of the .NET technology. This is a brief explanation of what and why with links to the site.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f04%2f13%2fTheNETDeveloperSearchEngine.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.donnfelker.com%2f2007%2f04%2f13%2fTheNETDeveloperSearchEngine.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Search_NET_The_developer_Search_Engine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Search_NET_The_developer_Search_Engine</guid>
      <pubDate>Fri, 13 Apr 2007 05:28:44 GMT</pubDate>
    </item>
  </channel>
</rss>