<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by darwyn</title>
    <description>Stories kicked by darwyn</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>C# Tip: Don't Concatenate, Use String.Format</title>
      <description>Using String.Format is much better for code readability over using concatenation. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ffrugalcoder.us%2fpost%2f2008%2f10%2fC-Tip-Don't-Concatenate%2c-Use-StringFormat.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffrugalcoder.us%2fpost%2f2008%2f10%2fC-Tip-Don't-Concatenate%2c-Use-StringFormat.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vbnet/C_Tip_Don_t_Concatenate_Use_String_Format</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vbnet/C_Tip_Don_t_Concatenate_Use_String_Format</guid>
      <pubDate>Fri, 24 Oct 2008 21:51:37 GMT</pubDate>
    </item>
    <item>
      <title>Client Side Table Sorting, Paging and Filtering with jQuery Demo</title>
      <description>I have been incorporating client side table sorting, paging and filtering using jQuery and some great plugins that I first wrote about earlier in the week. In the first post I only mentioned the the tablesorter paging plugin and did not demonstrate it. I finally had the chance to start working with the paging plugin and it couldn't be much easier. One thing I ran into though is that by default if you are paged into the data and then click sort, the pager does not reset to the first page. Some searching didn't turn up any similar concerns so since I work from home for a one developer company I thought I would ask you if this makes sense or if I should try and reset the pager when the table is sorted. Please be sure to vote in the poll when you view the live demo. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbeckelman.net%2fpost%2f2008%2f10%2f23%2fClient-Side-Table-Sorting-Paging-and-Filtering-with-jQuery-Demo.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbeckelman.net%2fpost%2f2008%2f10%2f23%2fClient-Side-Table-Sorting-Paging-and-Filtering-with-jQuery-Demo.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Client_Side_Table_Sorting_Paging_and_Filtering_with_jQuery_Demo</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Client_Side_Table_Sorting_Paging_and_Filtering_with_jQuery_Demo</guid>
      <pubDate>Thu, 23 Oct 2008 13:34:57 GMT</pubDate>
    </item>
    <item>
      <title>Functional .NET - Fighting Friction in the BCL with Directory.GetFiles</title>
      <description>The Issues
There are several issues that lead me to come up with an alternative for this situation of getting all files in a directory.  

Arrays shouldn't be returned from method calls 
Processor intensive for iterating over large directory trees instead of calculating only what I need, when I need it 
Filtering is weak, and only uses file format patterns 
Access denied internal messages occur for no apparent reason which halts the method  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fmatthew.podwysocki%2farchive%2f2008%2f10%2f16%2ffunctional-net-fighting-friction-in-the-bcl-with-directory-getfiles.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fmatthew.podwysocki%2farchive%2f2008%2f10%2f16%2ffunctional-net-fighting-friction-in-the-bcl-with-directory-getfiles.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Functional_NET_Fighting_Friction_in_the_BCL_with_Directory_GetFiles</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Functional_NET_Fighting_Friction_in_the_BCL_with_Directory_GetFiles</guid>
      <pubDate>Sat, 18 Oct 2008 00:43:48 GMT</pubDate>
    </item>
    <item>
      <title>Dynamic Paging For DataList Control with PagedDataSource</title>
      <description>This article explains the concept of displaying multiple pages of records in a DataList control with a dynamic paging technique using PagedDataSource.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetcodes.com%2fDataList_Dynamic_Paging_PagedDataSource.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetcodes.com%2fDataList_Dynamic_Paging_PagedDataSource.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/adonet/Dynamic_Paging_For_DataList_Control_with_PagedDataSource</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/adonet/Dynamic_Paging_For_DataList_Control_with_PagedDataSource</guid>
      <pubDate>Fri, 17 Oct 2008 13:42:29 GMT</pubDate>
    </item>
    <item>
      <title>Client Side ASP.NET ListView Sorting via jQuery TableSorter Plugin Dem</title>
      <description>I was recently asked to provide sorting on a ListView that I knew needed it, but had left off originally because I was having trouble with the way I normally handle sorting ListViews with this particular page. This led me to searching for another way. I think what I came up with may replace the way I have been handling user requested sorting (all server side) up until now. What I found was the jQuery TableSorter plugin plus a few extras. The plugin, like just about all jQuery plugins is really easy to use. You just point it at your table and it does the rest (make sure your table has thead and tbody tags though). Of course there are many options that you can set for your particular situation. Check out the demo. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbeckelman.net%2fpost%2f2008%2f10%2f16%2fClient-Side-ASPNET-ListView-Sorting-via-jQuery-TableSorter-Plugin-Demo.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbeckelman.net%2fpost%2f2008%2f10%2f16%2fClient-Side-ASPNET-ListView-Sorting-via-jQuery-TableSorter-Plugin-Demo.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Client_Side_ASP_NET_ListView_Sorting_via_jQuery_TableSorter_Plugin_Dem</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Client_Side_ASP_NET_ListView_Sorting_via_jQuery_TableSorter_Plugin_Dem</guid>
      <pubDate>Tue, 21 Oct 2008 17:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Two ASP.NET/VS 2008 Performance Tricks That Even Microsoft Didn't Know</title>
      <description>Two interesting ASP.NET with Visual Studio 2008 performance tips that were not documented and discovered by chance &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.adamtibi.net%2fpost%2f2008%2f09%2f14%2fTwo-ASPNET-VS-2008-Performance-Tricks-That-Even-Microsoft-Didnt-Know-About.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.adamtibi.net%2fpost%2f2008%2f09%2f14%2fTwo-ASPNET-VS-2008-Performance-Tricks-That-Even-Microsoft-Didnt-Know-About.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Two_ASP_NET_VS_2008_Performance_Tricks_That_Even_Microsoft_Didn_t_Know</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Two_ASP_NET_VS_2008_Performance_Tricks_That_Even_Microsoft_Didn_t_Know</guid>
      <pubDate>Tue, 16 Sep 2008 14:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Uploading a File with FTP</title>
      <description>Easily upload a file through FTP using pure C#. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvckicks.110mb.com%2fcsharp_ftp_upload.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvckicks.110mb.com%2fcsharp_ftp_upload.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Uploading_a_File_with_FTP</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Uploading_a_File_with_FTP</guid>
      <pubDate>Sat, 13 Sep 2008 06:33:24 GMT</pubDate>
    </item>
    <item>
      <title>BacktoBasics-Life After If,For and Switch - a Data Structures Reminder</title>
      <description>Alternative code writing methods, sometimes using if, switch and for gets to much, this article shows some alternative solutions, e.g. using a dictionary as a map instead of using large if or switch statements. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fBackToBasicsLifeAfterIfForAndSwitchLikeADataStructuresReminder.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fBackToBasicsLifeAfterIfForAndSwitchLikeADataStructuresReminder.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/BacktoBasics_Life_After_If_For_and_Switch_a_Data_Structures_Reminder</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/BacktoBasics_Life_After_If_For_and_Switch_a_Data_Structures_Reminder</guid>
      <pubDate>Sat, 13 Sep 2008 06:07:52 GMT</pubDate>
    </item>
    <item>
      <title>Evolving a .NET Framework 2.0 Application to .NET Framework 3.5</title>
      <description>Ythos shares a whitepaper they wrote on their experiences with migrating existing applications from .NET 1.1/2.0 to .NET 3.5. It includes tips on moving from WinForms to WPF, WS-* to WCF, etc. Great for those of us who aren't doing greenfield development!

Link found via Brad Abrams at http://blogs.msdn.com/brada/archive/2008/09/10/evolving-a-net-framework-2-0-application-to-net-framework-3-5.aspx. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ythos.net%2fcasestudy.aspx%3fCaseStudyId%3d12"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ythos.net%2fcasestudy.aspx%3fCaseStudyId%3d12" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Evolving_a_NET_Framework_2_0_Application_to_NET_Framework_3_5</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Evolving_a_NET_Framework_2_0_Application_to_NET_Framework_3_5</guid>
      <pubDate>Fri, 12 Sep 2008 18:51:33 GMT</pubDate>
    </item>
    <item>
      <title>Best way to end user session asp.net</title>
      <description>What's the best way to end session after user logs out. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnoesispedia.com%2fpost%2f2008%2f09%2f11%2fBest-way-to-end-user-session-in-aspnet.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnoesispedia.com%2fpost%2f2008%2f09%2f11%2fBest-way-to-end-user-session-in-aspnet.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Best_way_to_end_user_session_asp_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Best_way_to_end_user_session_asp_net</guid>
      <pubDate>Sun, 14 Sep 2008 23:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Render ASP.NET Control as String</title>
      <description>Some simple tips and a handy extension method for rendering any ASP.NET control as a string, which can then be passed via a web service to an AJAX call. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstevesmithblog.com%2fblog%2frender-control-as-string%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstevesmithblog.com%2fblog%2frender-control-as-string%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Render_ASP_NET_Control_as_String</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Render_ASP_NET_Control_as_String</guid>
      <pubDate>Mon, 01 Sep 2008 13:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Software Development and Programming Podcasts</title>
      <description>I couldn't find a good list of software development and programming podcasts so I created my own.  Feel free to chime in with any you recommend! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.redgreenrefactor.com%2fpost%2fProgramming-Podcasts.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.redgreenrefactor.com%2fpost%2fProgramming-Podcasts.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/Software_Development_and_Programming_Podcasts</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/Software_Development_and_Programming_Podcasts</guid>
      <pubDate>Sun, 22 Jun 2008 05:46:03 GMT</pubDate>
    </item>
    <item>
      <title>4 ways to send a PDF file to the IE Client in ASP.NET 2.0</title>
      <description>4 ways to send a PDF file to the IE Client in ASP.NET 2.0. Read more... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetscraps.com%2fdotnetscraps%2fpost%2f4-ways-to-send-a-PDF-file-to-the-IE-Client-in-ASPNET-20.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetscraps.com%2fdotnetscraps%2fpost%2f4-ways-to-send-a-PDF-file-to-the-IE-Client-in-ASPNET-20.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/4_ways_to_send_a_PDF_file_to_the_IE_Client_in_ASP_NET_2_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/4_ways_to_send_a_PDF_file_to_the_IE_Client_in_ASP_NET_2_0</guid>
      <pubDate>Thu, 19 Jun 2008 10:33:50 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>The easiest way to export to MS Excel</title>
      <description>The easiest way to export some tabular data to a MS Excel file. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpsantos-blog.zi-yu.com%2f%3fp%3d74"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpsantos-blog.zi-yu.com%2f%3fp%3d74" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/The_easiest_way_to_export_to_MS_Excel</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/The_easiest_way_to_export_to_MS_Excel</guid>
      <pubDate>Tue, 18 Mar 2008 13:46:34 GMT</pubDate>
    </item>
    <item>
      <title>Regionerate Public Beta</title>
      <description>Regionerate is an open-source automatic layout enforcement tool for C#. I have just released its Public Beta. Enter the site for a quick screencast that explains all about it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.rauchy.net%2fregionerate"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.rauchy.net%2fregionerate" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Regionerate_Public_Beta</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Regionerate_Public_Beta</guid>
      <pubDate>Thu, 21 Jun 2007 23:46:01 GMT</pubDate>
    </item>
    <item>
      <title>.Net Adventures : WPF on steroids - Outlook clone</title>
      <description>Two engineer from the Switzerland branch of Microsoft, and Ronnie Saurenmann and  Ruihua Jin developed an Outlook clone using WPF, XAML, Expression Blend etc.
The online demonstration(XPAB) is available at this url. Check out the 90 pages tutorial about how you can do this (be sure to download the project files). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2007%2f06%2f14%2fwpf-on-steroids-outlook-clone.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2007%2f06%2f14%2fwpf-on-steroids-outlook-clone.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Net_Adventures_WPF_on_steroids_Outlook_clone</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Net_Adventures_WPF_on_steroids_Outlook_clone</guid>
      <pubDate>Thu, 14 Jun 2007 12:13:40 GMT</pubDate>
    </item>
    <item>
      <title>Free - Three Hour Video on Designing .NET Class Libraries (Excellent)</title>
      <description>This class presents best practices for designing frameworks that are reusable object-oriented libraries. The guidelines are applicable to frameworks ranging in size and in their scale of reuse from large system frameworks to small components shared among several applications. They started as a small set of naming and design conventions, but have been enhanced, scrutinized, and refined to a point where they are generally considered the canonical way to design frameworks at Microsoft. They carry the experience and cumulative wisdom of thousands of developer hours, over three versions of the .NET Framework. 

 (Via Greg)
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcoolthingoftheday.blogspot.com%2f2007%2f03%2fresearch-channel-three-hour-video-on.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcoolthingoftheday.blogspot.com%2f2007%2f03%2fresearch-channel-three-hour-video-on.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Free_Three_Hour_Video_on_Designing_NET_Class_Libraries_Excellent</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Free_Three_Hour_Video_on_Designing_NET_Class_Libraries_Excellent</guid>
      <pubDate>Fri, 30 Mar 2007 07:16:02 GMT</pubDate>
    </item>
    <item>
      <title>The Predicate object</title>
      <description>Did you know that you can use the predicate object to significantly reduce the amount of code that you write?  You can also use it to make the code that you do have to write incredibly more elegant.  Here's how! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeremyjarrell.com%2farchive%2f2007%2f03%2f05%2f12.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeremyjarrell.com%2farchive%2f2007%2f03%2f05%2f12.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/The_Predicate_object</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/The_Predicate_object</guid>
      <pubDate>Mon, 05 Mar 2007 15:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Interview Questions for DotNet, C#, OOP, ASP.net ... etc</title>
      <description>These are the most important 20 interview questions, which should be like 1+1 for any developer. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fspellcoder.com%2fblogs%2fbashmohandes%2farchive%2f2007%2f02%2f26%2f5991.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fspellcoder.com%2fblogs%2fbashmohandes%2farchive%2f2007%2f02%2f26%2f5991.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Interview_Questions_for_DotNet_C_OOP_ASP_net_etc</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Interview_Questions_for_DotNet_C_OOP_ASP_net_etc</guid>
      <pubDate>Tue, 27 Feb 2007 06:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Fun with Breakpoints</title>
      <description>Some cool things that you can tell Visual Studio to do with breakpoints in order to optimize your debuggging.

You can only hit them exactly when you want to, exactly when the conditions are right, as well as automatically do some really cool stuff when you do hit them! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeremyjarrell.com%2farchive%2f2007%2f02%2f15%2f3.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeremyjarrell.com%2farchive%2f2007%2f02%2f15%2f3.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Fun_with_Breakpoints</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Fun_with_Breakpoints</guid>
      <pubDate>Mon, 19 Feb 2007 08:16:01 GMT</pubDate>
    </item>
  </channel>
</rss>