<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by smallfox</title>
    <description>Stories kicked by smallfox</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>Design Patterns - Using the State Pattern in C#</title>
      <description>The State Pattern is a behavioral pattern that can be used to alter the behavior of an object at run time. As the state of an object changes, the functionality of the object can change drastically. This change of behavior is hidden from the Client and the Client interfaces with a wrapper object known as the Context. The State Pattern is a dynamic version of the Strategy Pattern. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-State-Pattern-in-C.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-State-Pattern-in-C.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_State_Pattern_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_State_Pattern_in_C</guid>
      <pubDate>Thu, 08 Oct 2009 18:30:03 GMT</pubDate>
    </item>
    <item>
      <title>Design Patterns - Using the Observer Pattern in C#</title>
      <description>The Observer Pattern belongs to the category of Behavioral patterns. In some applications, the state of an object (the subject) is constantly changing (Ex: the price of a product varies depending on market demand). There could be other objects (observers) that are interested in getting notified when the state of the subject changes. The Observer Pattern can be used to communicate the changes between a subject and one or more observers. The Observer Pattern defines a one to one dependency between the subject and the observers so that when a subject changes state, all the observers are notified. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Observer-Pattern-in-C-(Events-and-Delegates).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Observer-Pattern-in-C-(Events-and-Delegates).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_Observer_Pattern_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_Observer_Pattern_in_C</guid>
      <pubDate>Tue, 22 Sep 2009 12:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Design Patterns - Using the Abstract Factory Pattern in C#</title>
      <description>The Abstract Factory Pattern provides an interface for creating families of related objects without specifying their concrete classes. The Abstract Pattern makes sure that the client does not know anything about the objects being created. The pattern hides the implementation of the product definitions and their class names and the only way the client can create a product is through the factory.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Abstract-Factory-Pattern-in-C.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Abstract-Factory-Pattern-in-C.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_Abstract_Factory_Pattern_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Design_Patterns_Using_the_Abstract_Factory_Pattern_in_C</guid>
      <pubDate>Sun, 06 Sep 2009 18:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Learning how to Read &amp;amp; Write to the Windows Registry</title>
      <description>The registry is a bane to use and work with, but lets face it many, many applications we will work on will utilize it. Because of this fact we are going to review how to read and write data to it in a simple and easy fashion. &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%2f133"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f133" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Learning_how_to_Read_Write_to_the_Windows_Registry</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Learning_how_to_Read_Write_to_the_Windows_Registry</guid>
      <pubDate>Thu, 06 Aug 2009 13:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Design Patterns - Using the Adapter Pattern in C#</title>
      <description>An Adapter pattern also known as the "Wrapper pattern" makes it easier to implement solutions that interface with multiple systems. There are situations in which a system we are working needs to interact with another system, third party API or a legacy component. This interaction becomes challenging if the systems are not compatible with each other. There is no standard way to implement a particular system. How do we make it easy to tie all the incompatible systems together? With the help of the Adapter pattern. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Adapter-Pattern-in-C.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcube.com%2fpost%2fDesign-Patterns-e28093-Using-the-Adapter-Pattern-in-C.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Design_Patterns_Using_the_Adapter_Pattern_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Design_Patterns_Using_the_Adapter_Pattern_in_C</guid>
      <pubDate>Thu, 06 Aug 2009 14:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Daily tech links for .net and related technologies - June 6, 2009</title>
      <description>Daily tech links for .net and related technologies. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fsanjeevagarwal%2farchive%2f2009%2f06%2f06%2fdaily-tech-links-for-net-and-related-technologies-june-6-2009.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fsanjeevagarwal%2farchive%2f2009%2f06%2f06%2fdaily-tech-links-for-net-and-related-technologies-june-6-2009.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Daily_tech_links_for_net_and_related_technologies_June_6_2009</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Daily_tech_links_for_net_and_related_technologies_June_6_2009</guid>
      <pubDate>Sat, 06 Jun 2009 13:15:00 GMT</pubDate>
    </item>
    <item>
      <title>11 Optimization Tips for Visual Studio</title>
      <description>Sometimes ago I compiled this list for myself and our team to help get things done faster and deal with visual studio quirks. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhatim.indexdev.net%2f2009%2f04%2f27%2f11-optimization-tips-for-visual-studio%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhatim.indexdev.net%2f2009%2f04%2f27%2f11-optimization-tips-for-visual-studio%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/11_Optimization_Tips_for_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/11_Optimization_Tips_for_Visual_Studio</guid>
      <pubDate>Tue, 28 Apr 2009 02:46:04 GMT</pubDate>
    </item>
    <item>
      <title>6 Tools To Be An Effective Web Developer</title>
      <description>There has always been and probably always will be feuds over what is the best platform but what I want to show you is that those arguments are mostly irrelevant. Regardless of what platform you choose to develop on there are most of the same tools available in one form or another. The common components, for me anyway, that help me produce high quality code faster and is easier to maintain are a good IDE, easy to use unit testing and mocking frameworks, an ORM, a MVC framework, and a good JavaScript library. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f03%2f26%2f6-tools-to-be-an-effective-web-developer%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f03%2f26%2f6-tools-to-be-an-effective-web-developer%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/6_Tools_To_Be_An_Effective_Web_Developer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/6_Tools_To_Be_An_Effective_Web_Developer</guid>
      <pubDate>Thu, 26 Mar 2009 17:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Memento Pattern</title>
      <description>Design Patterns for Dummies. The Memento Pattern &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.simplyvinay.com%2fPost%2f40%2fDesign-Patterns-for-Dummies.-The-Memento-Pattern.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.simplyvinay.com%2fPost%2f40%2fDesign-Patterns-for-Dummies.-The-Memento-Pattern.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/cplusplus/Memento_Pattern_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/cplusplus/Memento_Pattern_1</guid>
      <pubDate>Wed, 11 Mar 2009 19:45:27 GMT</pubDate>
    </item>
    <item>
      <title>Free ASP.NET MVC eBook Tutorial - ScottGu</title>
      <description>There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now - announcement coming soon).  As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it.

Over the last few months I've been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox.  The book is now in production, and will be available to buy in stores soon &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2009%2f03%2f10%2ffree-asp-net-mvc-ebook-tutorial.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2009%2f03%2f10%2ffree-asp-net-mvc-ebook-tutorial.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Free_ASP_NET_MVC_eBook_Tutorial_ScottGu</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Free_ASP_NET_MVC_eBook_Tutorial_ScottGu</guid>
      <pubDate>Wed, 11 Mar 2009 07:16:02 GMT</pubDate>
    </item>
    <item>
      <title>12+ open source projects for .NET you probably didn't know about.</title>
      <description>Here's a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.webdistortion.com%2f2009%2f03%2f06%2f12-open-source-projects-for-net-you-probably-didn%25E2%2580%2599t-know-about%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.webdistortion.com%2f2009%2f03%2f06%2f12-open-source-projects-for-net-you-probably-didn%25E2%2580%2599t-know-about%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/altnet/12_open_source_projects_for_NET_you_probably_didn_t_know_about</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/altnet/12_open_source_projects_for_NET_you_probably_didn_t_know_about</guid>
      <pubDate>Sat, 07 Mar 2009 00:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Collection Of Puzzles For Programmers</title>
      <description>A nice collection of puzzles. Some are harder than others so there is something for everyone. You can choose any language you want, you will see that there are solutions in C#, Ruby, Python, Visual Basic, SQL, JavaScript, C++ and other languages. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.lessthandot.com%2findex.php%2fITProfessionals%2fEthicsIT%2fcollection-of-puzzles-for-programmers"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.lessthandot.com%2findex.php%2fITProfessionals%2fEthicsIT%2fcollection-of-puzzles-for-programmers" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Collection_Of_Puzzles_For_Programmers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Collection_Of_Puzzles_For_Programmers</guid>
      <pubDate>Thu, 05 Mar 2009 23:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Comparing ORMs - LINQ-to-X, LightSpeed, EntitySpaces and OpenAccess</title>
      <description>How do LINQ-to-SQL, LINQ-to-Entities, LightSpeed, EntitySpaces and OpenAccess stand up when compared to each other? This post discusses what to consider when selecting your O/R Mapper and links to a feature matrix comparing the features provided by each of these products. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mindscape.co.nz%2fblog%2findex.php%2f2009%2f02%2f10%2fcomparing-net-or-mappers%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mindscape.co.nz%2fblog%2findex.php%2f2009%2f02%2f10%2fcomparing-net-or-mappers%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Comparing_ORMs_LINQ_to_X_LightSpeed_EntitySpaces_and_OpenAccess</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Comparing_ORMs_LINQ_to_X_LightSpeed_EntitySpaces_and_OpenAccess</guid>
      <pubDate>Wed, 11 Feb 2009 14:16:02 GMT</pubDate>
    </item>
    <item>
      <title>SQL SERVER - Quickest Way to - Kill All Threads - Kill All User Sessio</title>
      <description>More than a year ago, I wrote how to kill all the processes running in SQL Server. Just a day ago, I found the quickest way to kill the processes of SQL Server. While searching online I found very similar methods to my previous method everywhere. Today in this article, I will write the quickest way to achieve the same goal.

Make sure to bookmark it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sqlauthority.com%2f2009%2f02%2f06%2fsql-server-quickest-way-to-kill-all-threads-kill-all-user-session-kill-all-processes%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sqlauthority.com%2f2009%2f02%2f06%2fsql-server-quickest-way-to-kill-all-threads-kill-all-user-session-kill-all-processes%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_SERVER_Quickest_Way_to_Kill_All_Threads_Kill_All_User_Sessio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_SERVER_Quickest_Way_to_Kill_All_Threads_Kill_All_User_Sessio</guid>
      <pubDate>Tue, 10 Feb 2009 00:46:02 GMT</pubDate>
    </item>
    <item>
      <title>32 Tips To Speed Up Your MySQL Queries</title>
      <description>If you are interested in how to create fast MySQL queries, this article is for you &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ajaxline.com%2f32-tips-to-speed-up-your-mysql-queries"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ajaxline.com%2f32-tips-to-speed-up-your-mysql-queries" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/32_Tips_To_Speed_Up_Your_MySQL_Queries</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/32_Tips_To_Speed_Up_Your_MySQL_Queries</guid>
      <pubDate>Wed, 04 Feb 2009 02:16:17 GMT</pubDate>
    </item>
    <item>
      <title>Kigg - A great example of ASP.NET MVC</title>
      <description>Kigg which is a clone of Digg has been one the best starter kits for ASP.NET. Now Kigg guys udated it using ASP.NET MVC and of course it can be a good example for ASP.NET MVC learners.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fchadmoran%2farchive%2f2009%2f01%2f12%2fkigg-a-great-example-of-asp-net-mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fchadmoran%2farchive%2f2009%2f01%2f12%2fkigg-a-great-example-of-asp-net-mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Kigg_A_great_example_of_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Kigg_A_great_example_of_ASP_NET_MVC</guid>
      <pubDate>Wed, 14 Jan 2009 13:31:02 GMT</pubDate>
    </item>
    <item>
      <title>C# Design Patterns - Abstract Factory Pattern</title>
      <description>We'll be continuing on with our fictional city council that has commissioned us to develop an application that lets them manage their yearly dog registrations. Since the application is all about managing dogs and their owners it makes sense to have a DogFactory class that will create the different breeds of dogs that will be stored in the application. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f01%2f06%2fc-design-patterns-abstract-factory-pattern%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.geekdaily.net%2f2009%2f01%2f06%2fc-design-patterns-abstract-factory-pattern%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/C_Design_Patterns_Abstract_Factory_Pattern</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/C_Design_Patterns_Abstract_Factory_Pattern</guid>
      <pubDate>Wed, 07 Jan 2009 15:46:04 GMT</pubDate>
    </item>
    <item>
      <title>Top 100 Blogs for Developers</title>
      <description>Jurgen Appelo outlines 100 blogs developers should be paying attention to. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.noop.nl%2f2008%2f12%2ftop-100-blogs-for-developers-q4-2008.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.noop.nl%2f2008%2f12%2ftop-100-blogs-for-developers-q4-2008.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Top_100_Blogs_for_Developers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Top_100_Blogs_for_Developers</guid>
      <pubDate>Sun, 21 Dec 2008 00:46:02 GMT</pubDate>
    </item>
    <item>
      <title>Best of the web - my pick for October 2008</title>
      <description>There were a lot of high quality articles dawned in my Google Reader last month. Chris Spooner (Blog.SpoonGraphics) posted two awesome tutorials on how to create a modern blog design. Angie and Robert Bowen (Arbenitng) launched Social Media Directory for Designers. Dave Ward (Encosia) shared &amp;amp; of his favorite jQuery plugins for use with ASAP.NET. I published Handycons, free hand-drawn social media icon set, and I'm working on Handycons II. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f11%2f01%2fBest-of-the-web-my-pick-for-October-2008.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f11%2f01%2fBest-of-the-web-my-pick-for-October-2008.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Best_of_the_web_my_pick_for_October_2008</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Best_of_the_web_my_pick_for_October_2008</guid>
      <pubDate>Mon, 03 Nov 2008 21:01:02 GMT</pubDate>
    </item>
    <item>
      <title>89 Ways for You to Become the Coolest Developer in the World</title>
      <description>You can learn how to improve your programming skills, work better and enjoy it from this collection of advice from experienced developers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2feffectize.com%2fbecome-coolest-programmer"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2feffectize.com%2fbecome-coolest-programmer" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/89_Ways_for_You_to_Become_the_Coolest_Developer_in_the_World</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/89_Ways_for_You_to_Become_the_Coolest_Developer_in_the_World</guid>
      <pubDate>Tue, 28 Oct 2008 18:31:08 GMT</pubDate>
    </item>
    <item>
      <title>Looking for a Lot of .NET Code Samples - They Are Right Under Your Nos</title>
      <description>You have a wealth of code samples on your computer, here is how to find them!!!! An Easter Egg from Microsoft. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2008%2f10%2f28%2fLooking-for-a-Lot-of-.NET-Code-Samples-_1320_-They-Are-Right-Under-Your-Nose_2100_.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2008%2f10%2f28%2fLooking-for-a-Lot-of-.NET-Code-Samples-_1320_-They-Are-Right-Under-Your-Nose_2100_.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Looking_for_a_Lot_of_NET_Code_Samples_They_Are_Right_Under_Your_Nos</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Looking_for_a_Lot_of_NET_Code_Samples_They_Are_Right_Under_Your_Nos</guid>
      <pubDate>Fri, 07 Nov 2008 08:16:11 GMT</pubDate>
    </item>
    <item>
      <title>Essential Visual Studio Tips &amp;amp; Tricks that Every Developer Should Know</title>
      <description>In this blog entry, Stephen Walther lists the essential tips and tricks that every developer who uses Visual Studio 2008 should know. The list is kept brief. The list focuses on only those tips and tricks that can be used on a daily basis. Almost all of these tips and tricks are just as useful regardless of whether you are building an ASP.NET Web Forms or ASP.NET MVC application.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fstephenwalther%2farchive%2f2008%2f10%2f21%2fessential-visual-studio-tips-amp-tricks-that-every-developer-should-know.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fstephenwalther%2farchive%2f2008%2f10%2f21%2fessential-visual-studio-tips-amp-tricks-that-every-developer-should-know.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Essential_Visual_Studio_Tips_Tricks_that_Every_Developer_Should_Know</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Essential_Visual_Studio_Tips_Tricks_that_Every_Developer_Should_Know</guid>
      <pubDate>Wed, 22 Oct 2008 05:01:02 GMT</pubDate>
    </item>
    <item>
      <title>250+ .NET Interview FAQ's for Developers</title>
      <description>A comprehensive list of 'good' ASP.NET AJAX, ASP.NET and .NET Framework questions for beginners and experienced people. Also a good read for people who want to refresh their memory with .NET concepts or take interviews on a regular basis.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fBrowseArticles.aspx%3fCatID%3d58"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fBrowseArticles.aspx%3fCatID%3d58" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/250_NET_Interview_FAQ_s_for_Developers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/250_NET_Interview_FAQ_s_for_Developers</guid>
      <pubDate>Fri, 29 Aug 2008 22:16:11 GMT</pubDate>
    </item>
    <item>
      <title>Free SQL Server Videos</title>
      <description>Free Training and Videos for Microsoft SQL Server. 
Hours of content covering tips and tricks, along with a whole slew of videos on backups.
The site is still growing and there's an RSS feed you can use to be updated of newly added videos. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sqlservervideos.com"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sqlservervideos.com" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Free_SQL_Server_Videos</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Free_SQL_Server_Videos</guid>
      <pubDate>Sat, 30 Aug 2008 06:31:10 GMT</pubDate>
    </item>
    <item>
      <title>Using .NET for Mobile Applications</title>
      <description>30 .NET mobile applications done in 30 days. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2ftom%2farchive%2f2008%2f07%2f09%2fusing-net-for-mobile-applications.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2ftom%2farchive%2f2008%2f07%2f09%2fusing-net-for-mobile-applications.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/compactframework/Using_NET_for_Mobile_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/compactframework/Using_NET_for_Mobile_Applications</guid>
      <pubDate>Thu, 10 Jul 2008 19:16:11 GMT</pubDate>
    </item>
  </channel>
</rss>
