<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with search</title>
    <description>the latest stories tagged with 'search' from DotNetKicks.com</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>Links List December 2008</title>
      <description>I decided to share all my interesting reads and resources month by month with my blog readers. You can find these posts by searching on the label Links. I'll try to order the resources in logical categories. If you would like to see some interesting stuff added in the next month, don't hesitate to post a comment.

So this is my third Links post for December 2008. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f12%2flinks-list-december-2008.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f12%2flinks-list-december-2008.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Links_List_December_2008</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Links_List_December_2008</guid>
      <pubDate>Wed, 31 Dec 2008 08:23:43 GMT</pubDate>
    </item>
    <item>
      <title>Using Lucene .Net to index and search website content</title>
      <description>An elegant solution for adding content indexing and search in a .Net application.

  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.akcedo.com%2fandrei%2fpost%2fUsing-Lucene-Net-to-index-and-search-website-content.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.akcedo.com%2fandrei%2fpost%2fUsing-Lucene-Net-to-index-and-search-website-content.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Using_Lucene_Net_to_index_and_search_website_content</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Using_Lucene_Net_to_index_and_search_website_content</guid>
      <pubDate>Mon, 17 Nov 2008 07:48:17 GMT</pubDate>
    </item>
    <item>
      <title>Disable view duplicates search functionality</title>
      <description>Business requirement: Disable view duplicates search functionality
When performing a search query in SharePoint, the search results group duplicate search results by default.  

For me it is unclear which criteria make SharePoint think some search results are duplicates for each other, and hence make SharePoint group them together as one search result. This can be pretty confusing, as end-users not always are finding back everything because some stuff is hidden away in such a grouped search result. For example, ungrouping the above search result reveals following hidden search results:  

For me, these files shouldn't be grouped together as duplicates in the search results: these files are financial reports for different quarters. The filename as the title of these files are different, nevertheless SharePoint groups these files as duplicates in the search results. End-users not so familiar with SharePoint may overlook the View duplicates link in the search results: as such they may start complaining that they don't find some files they've uploaded before (f.e. here: they may complain they don't find the financial report for Q3-04).

Solution: Disable view duplicates search functionality &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f11%2fdisable-view-duplicates-search.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f11%2fdisable-view-duplicates-search.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Disable_view_duplicates_search_functionality</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Disable_view_duplicates_search_functionality</guid>
      <pubDate>Sun, 16 Nov 2008 16:54:21 GMT</pubDate>
    </item>
    <item>
      <title>MOSS Faceted Search</title>
      <description>On Codeplex, a great project MOSS Faceted Search is available. It is just a great set of webparts which enhances the search experience in value a lot for your end users.
It allows for drill down functionality in the search results based on so called facet values.
A facet is a category your items, documents, ... can belong to. When you install the default project, your items, documents, ... are immediately grouped in different categories / facets:

By Author

By Content Type

By Content Source

Off course, you can add your own facets. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f06%2fmoss-faceted-search.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f06%2fmoss-faceted-search.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/MOSS_Faceted_Search</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/MOSS_Faceted_Search</guid>
      <pubDate>Tue, 03 Jun 2008 20:39:48 GMT</pubDate>
    </item>
    <item>
      <title>Quicksort and Binary Search algorithms in C++</title>
      <description>This is about a paper entitled Quicksort and Binary Search Algorithms. A fantastic subject that is used throughout the the computer science filed. In the paper you'll see the intrinsic nature of each algorithm as well as a functional implementation of such algorithms in the C++ programming language. Both algorithms perform well in huge data sets. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flenielmacaferi.blogspot.com%2f2008%2f05%2fquicksort-binary-search-algorithms-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flenielmacaferi.blogspot.com%2f2008%2f05%2fquicksort-binary-search-algorithms-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Quicksort_and_Binary_Search_algorithms_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Quicksort_and_Binary_Search_algorithms_in_C</guid>
      <pubDate>Wed, 21 May 2008 21:18:56 GMT</pubDate>
    </item>
    <item>
      <title>All sites search scope missing in the search box for non-English creat</title>
      <description>Sites created in a non-English language are missing the All sites and All people search scope in the search box in the upper right corner of each page. Only the This site: search scope appears in the drop down box. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f02%2fall-sites-search-scopes-missing-in.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpatrikluca.blogspot.com%2f2008%2f02%2fall-sites-search-scopes-missing-in.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/All_sites_search_scope_missing_in_the_search_box_for_non_English_creat</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/All_sites_search_scope_missing_in_the_search_box_for_non_English_creat</guid>
      <pubDate>Mon, 07 Apr 2008 19:37:23 GMT</pubDate>
    </item>
    <item>
      <title>Solving the Search Results problem when using the free MMLinks localiz</title>
      <description>With the free MMLinks DotNetNuke module, you can replace your standard Text/HTML modules with fully localizable ones, localizing both the title and the Text/HTML part. With one slight defect: Since DotNetNuke's search indexer doesn't know anything about the localized titles, it insists on presenting the default, non-localized module title in the Search Results page (that would be &amp;quot;MMLinks&amp;quot; if you leave it intact).
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdnnuke.blogspot.com%2f2008%2f03%2fsolving-search-results-problem-when.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdnnuke.blogspot.com%2f2008%2f03%2fsolving-search-results-problem-when.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Solving_the_Search_Results_problem_when_using_the_free_MMLinks_localiz</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Solving_the_Search_Results_problem_when_using_the_free_MMLinks_localiz</guid>
      <pubDate>Fri, 14 Mar 2008 11:12:30 GMT</pubDate>
    </item>
    <item>
      <title>Personalized Rating &amp;amp; Tag Cloud with Search Integration for MOSS 2007</title>
      <description>For those of you using SharePoint, here is a link over to what I find very interesting and could be helpful for some organizations. With social web sites become more popular and people looking at user ratings and tags this solution created by two interns at Tam Tam has great potential in your SharePoint environment. Sure, SharePoint can tag posts, documents and what else you want, but here is the perks of Tam Tam's new solution. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.springhouse.com%2findex.php%2f2008%2f01%2f31%2fpersonalized-rating-and-tag-cloud-with-search-integration-for-moss-2007%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.springhouse.com%2findex.php%2f2008%2f01%2f31%2fpersonalized-rating-and-tag-cloud-with-search-integration-for-moss-2007%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Personalized_Rating_Tag_Cloud_with_Search_Integration_for_MOSS_2007</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Personalized_Rating_Tag_Cloud_with_Search_Integration_for_MOSS_2007</guid>
      <pubDate>Mon, 04 Feb 2008 16:34:19 GMT</pubDate>
    </item>
    <item>
      <title>MOSS 2007 Personalized Rating and Tag Cloud with Search Integration!</title>
      <description>Benjamin and Joost-Wim, two interns here at Tam Tam, have been working at a very cool solution in MOSS 2007. Their goal was to create a knowledge management solution in MOSS 2007. Of course there are some tools out there that support rating and tagging and cloud tags in SharePoint. This solution however offers a rich user experience of those mechanisms, personalized (this is very cool) and full integration with SharePoint search and Ontolica search! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.tamtam.nl%2fmart%2fMOSS2007PersonalizedRatingAndTagCloudWithSearchIntegration.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.tamtam.nl%2fmart%2fMOSS2007PersonalizedRatingAndTagCloudWithSearchIntegration.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/MOSS_2007_Personalized_Rating_and_Tag_Cloud_with_Search_Integration</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/MOSS_2007_Personalized_Rating_and_Tag_Cloud_with_Search_Integration</guid>
      <pubDate>Fri, 01 Feb 2008 02:57:31 GMT</pubDate>
    </item>
    <item>
      <title>Searching Custom Metadata in MOSS 2007</title>
      <description>This blogpost explains how to use the MOSS 2007 search function programmatically in your code to search and display custom metadata columns. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.vdcruijsen.net%2fpost%2f2008%2f01%2fSearching-Custom-columns-in-SharePoint.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.vdcruijsen.net%2fpost%2f2008%2f01%2fSearching-Custom-columns-in-SharePoint.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Searching_Custom_Metadata_in_MOSS_2007</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Searching_Custom_Metadata_in_MOSS_2007</guid>
      <pubDate>Sat, 19 Jan 2008 15:29:32 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Search Server 2008 Express VHD</title>
      <description>A pre-configured VHD to evaluate Microsoft Search Server 2008 Express is now available on Microsoft Download Center.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMicrosoft-Search-Server-2008-Express-VHD.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMicrosoft-Search-Server-2008-Express-VHD.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Microsoft_Search_Server_2008_Express_VHD</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Microsoft_Search_Server_2008_Express_VHD</guid>
      <pubDate>Tue, 13 Nov 2007 14:16:04 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Announces Search Server 2008 Express</title>
      <description>Search doesn't have to be complicated. You can deliver Search to your organization quickly and easily for free with Microsoft Search Server 2008 Express.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMicrosoft-Announces-Search-Server-2008-Express.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ifxplus.com%2fpost%2fMicrosoft-Announces-Search-Server-2008-Express.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Microsoft_Announces_Search_Server_2008_Express</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Microsoft_Announces_Search_Server_2008_Express</guid>
      <pubDate>Wed, 07 Nov 2007 09:19:42 GMT</pubDate>
    </item>
    <item>
      <title>CS2 - a personal source code search engine</title>
      <description>CS2 is an open source C# source code search engine, to allow people to easily search through code stored in their machines with a simple web user interface built on ASP.NET. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f09%2f13%2fCS2-_2D00_-a-personal-source-code-search-engine.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f09%2f13%2fCS2-_2D00_-a-personal-source-code-search-engine.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/CS2_a_personal_source_code_search_engine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/CS2_a_personal_source_code_search_engine</guid>
      <pubDate>Thu, 13 Sep 2007 17:01:01 GMT</pubDate>
    </item>
    <item>
      <title>C# and Lucene to index and search</title>
      <description>Downloadable solution showing how to use Lucene for content indexing and then searching the data. Shows some of the advanced filtering possibilities Lucene offers when it comes to searching. Sourcecode C# and .NET 2.0, Windows Forms. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspcode.net%2fC-and-Lucene-to-index-and-search.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspcode.net%2fC-and-Lucene-to-index-and-search.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_and_Lucene_to_index_and_search</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_and_Lucene_to_index_and_search</guid>
      <pubDate>Wed, 12 Sep 2007 04:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Top 10+ source code search engines</title>
      <description>Programmers are coding and coding in somewhere for some purpose. I wonder how many lines of code is written in a minute on the world :) I guess thousands of lines. But most them are coding the same snippets of code again and again. I always used &amp;quot;Koders&amp;quot; not to reinvent america, means not to rewrite the codes someone else have already solved. There are plenty of code search engines out there to serve us (programmers) with the millions of lines of codes to fasten our job. So you can use the following code search engines for this purpose &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.plentyofcode.com%2f2007%2f07%2ftop-10-source-code-search-engines.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.plentyofcode.com%2f2007%2f07%2ftop-10-source-code-search-engines.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Top_10_source_code_search_engines</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Top_10_source_code_search_engines</guid>
      <pubDate>Thu, 26 Jul 2007 08:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Indexing and searching source code with Lucene.Net</title>
      <description>An academic implementation of a source code search engine with open source frameworks. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f06%2f29%2fIndexing-and-searching-source-code-with-Lucene.Net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f06%2f29%2fIndexing-and-searching-source-code-with-Lucene.Net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Indexing_and_searching_source_code_with_Lucene_Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Indexing_and_searching_source_code_with_Lucene_Net</guid>
      <pubDate>Wed, 04 Jul 2007 02:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Google powered Developer's Search engine</title>
      <description>Devshots returns Google search results, but emphasize on programming related sites and resources. So the search result will be smart and accurate. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevshots.com"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevshots.com" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Google_powered_Developer_s_Search_engine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Google_powered_Developer_s_Search_engine</guid>
      <pubDate>Thu, 21 Jun 2007 08:29:51 GMT</pubDate>
    </item>
    <item>
      <title>Searching source code on Koders.com</title>
      <description>Koders.com is a code search engine. Here's a wrapper for querying its service with .NET code using a fluent interface class library. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f05%2f22%2fSearching-source-code-on-Koders.com.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetslackers.com%2fcommunity%2fblogs%2fsimoneb%2farchive%2f2007%2f05%2f22%2fSearching-source-code-on-Koders.com.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Searching_source_code_on_Koders_com</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Searching_source_code_on_Koders_com</guid>
      <pubDate>Mon, 21 May 2007 14:39:49 GMT</pubDate>
    </item>
    <item>
      <title>What does code search tell you about a programming language?</title>
      <description>Koders.com publishes a code search term zeitgeist. You can see the most popular search terms developers use when searching through open source code in a particular language. What does that tell you about the language and its users? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhaacked.com%2farchive%2f2007%2f03%2f22%2fopen-source-programming-language-zeitgeist.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhaacked.com%2farchive%2f2007%2f03%2f22%2fopen-source-programming-language-zeitgeist.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/What_does_code_search_tell_you_about_a_programming_language</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/What_does_code_search_tell_you_about_a_programming_language</guid>
      <pubDate>Fri, 23 Mar 2007 06:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Koders.com Makes Microsoft Visual Studio SDK Searchable</title>
      <description>The entire SDK is now searchable at Koders.com. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.koders.com%2fblog%2f%3fp%3d57"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.koders.com%2fblog%2f%3fp%3d57" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Koders_com_Makes_Microsoft_Visual_Studio_SDK_Searchable</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Koders_com_Makes_Microsoft_Visual_Studio_SDK_Searchable</guid>
      <pubDate>Thu, 22 Mar 2007 06:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Increase Productivity With Search Driven Development</title>
      <description>Search Driven Development is the de-facto software methodology in use almost universally. How to bring it into the IDE. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhaacked.com%2farchive%2f2007%2f03%2f16%2fincrease-productivity-with-search-driven-development.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhaacked.com%2farchive%2f2007%2f03%2f16%2fincrease-productivity-with-search-driven-development.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Increase_Productivity_With_Search_Driven_Development</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Increase_Productivity_With_Search_Driven_Development</guid>
      <pubDate>Mon, 19 Mar 2007 04:31:01 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Office documents parsing Using Windows Indexing Service for </title>
      <description>On Windows 2000+ you can use the IFilter interface to parse the most common file types. IFilter interface is a part of Microsoft Indexing Service. The IFilter interface is also used by Windows Desktop Search. 

More about it + example of C# file is on site &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotlucene.net%2fdocumentation%2fMicrosoftOfficeDocumentsP.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotlucene.net%2fdocumentation%2fMicrosoftOfficeDocumentsP.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Microsoft_Office_documents_parsing_Using_Windows_Indexing_Service_for</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Microsoft_Office_documents_parsing_Using_Windows_Indexing_Service_for</guid>
      <pubDate>Tue, 20 Mar 2007 09:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Koders - Source Code Search Engine   </title>
      <description>Source Code to 32 languages from different License types  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgaaton.blogspot.com%2f2007%2f02%2fkoders-source-code-search-engine.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgaaton.blogspot.com%2f2007%2f02%2fkoders-source-code-search-engine.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Koders_Source_Code_Search_Engine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Koders_Source_Code_Search_Engine</guid>
      <pubDate>Wed, 21 Feb 2007 11:16:01 GMT</pubDate>
    </item>
    <item>
      <title>Yahoo Pipes - Search DotNetKicks</title>
      <description>Playing around with Yahoo Pipes. If you haven't heard this is a very cool tool. I made this pipe in less than 3 minutes with hardly any knowledge of how Pipes work. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fpipes.yahoo.com%2fpipes%2f_tIFLpm72xGIyy7sdLq02Q"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fpipes.yahoo.com%2fpipes%2f_tIFLpm72xGIyy7sdLq02Q" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Yahoo_Pipes_Search_DotNetKicks</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Yahoo_Pipes_Search_DotNetKicks</guid>
      <pubDate>Wed, 14 Feb 2007 06:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Using Custom Attributes to Enable Quick Searching of Your Domain Entit</title>
      <description>I've started work on the search piece of our application.  Searching (no pun intended) for some inspiration on how users might want to search within our application, I brought up the current WinForms version, and then the ASP.NET version.

I realized that we need to make searching easier in WinForms client, currently when searching for a patient in our WinForms client, you are presented with a separate text box for first name, last name, SSN, date of birth, and health record number.  Our ASP.NET client presents just one text box to search all of those fields. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.milkcarton.com%2fblog%2f2007%2f01%2f23%2fUsing%2bCustom%2bAttributes%2bTo%2bEnable%2bQuick%2bSearching%2bOf%2bYour%2bDomain%2bEntities%2bWith%2bNHibernate.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.milkcarton.com%2fblog%2f2007%2f01%2f23%2fUsing%2bCustom%2bAttributes%2bTo%2bEnable%2bQuick%2bSearching%2bOf%2bYour%2bDomain%2bEntities%2bWith%2bNHibernate.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_Custom_Attributes_to_Enable_Quick_Searching_of_Your_Domain_Entit</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_Custom_Attributes_to_Enable_Quick_Searching_of_Your_Domain_Entit</guid>
      <pubDate>Wed, 24 Jan 2007 09:46:01 GMT</pubDate>
    </item>
  </channel>
</rss>