<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 1000x Faster Spelling Correction: Source Code released</title>
	<atom:link href="http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 25 Mar 2013 16:05:46 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Faroo user</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-112546</link>
		<dc:creator>Faroo user</dc:creator>
		<pubDate>Tue, 19 Feb 2013 11:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-112546</guid>
		<description>While I totally agree to Pharao that the code shoud be open soource especially to port it to other platforms (ie linux servers) I see the problem that evil people will find ways to inject spam, censor or fool the ranking programmatically....

Maybe this could be made bulletproof - if not consider a closed source linux port and an independent security team to review its result...

Respect for this great project!</description>
		<content:encoded><![CDATA[<p>While I totally agree to Pharao that the code shoud be open soource especially to port it to other platforms (ie linux servers) I see the problem that evil people will find ways to inject spam, censor or fool the ranking programmatically&#8230;.</p>
<p>Maybe this could be made bulletproof &#8211; if not consider a closed source linux port and an independent security team to review its result&#8230;</p>
<p>Respect for this great project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pharao</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-97258</link>
		<dc:creator>Pharao</dc:creator>
		<pubDate>Wed, 21 Nov 2012 22:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-97258</guid>
		<description>You should release the whole Faroo code - make it open source. That would be great!</description>
		<content:encoded><![CDATA[<p>You should release the whole Faroo code &#8211; make it open source. That would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wolf</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-92488</link>
		<dc:creator>Wolf</dc:creator>
		<pubDate>Sun, 21 Oct 2012 12:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-92488</guid>
		<description>98: m =&gt; m.Value     
VB: Function(m) m.Value

278: x =&gt; x.term == suggestion.term   
VB: Function(x) x.term = suggestion.term
                
314: c =&gt; c.distance
VB: Function(c) c.distance

Those are all Lambda expressions:
http://msdn.microsoft.com/en-us/library/bb397687.aspx (C#)
http://msdn.microsoft.com/en-us/library/bb531253.aspx (Visual Basic, fully supported from Visual Basic 2010)

You might use a C# to VB Converter to translate
http://www.developerfusion.com/tools/convert/csharp-to-vb/</description>
		<content:encoded><![CDATA[<p>98: m =&gt; m.Value<br />
VB: Function(m) m.Value</p>
<p>278: x =&gt; x.term == suggestion.term<br />
VB: Function(x) x.term = suggestion.term</p>
<p>314: c =&gt; c.distance<br />
VB: Function(c) c.distance</p>
<p>Those are all Lambda expressions:<br />
<a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb397687.aspx</a> (C#)<br />
<a href="http://msdn.microsoft.com/en-us/library/bb531253.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb531253.aspx</a> (Visual Basic, fully supported from Visual Basic 2010)</p>
<p>You might use a C# to VB Converter to translate<br />
<a href="http://www.developerfusion.com/tools/convert/csharp-to-vb/" rel="nofollow">http://www.developerfusion.com/tools/convert/csharp-to-vb/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dharamveer</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-92486</link>
		<dc:creator>Dharamveer</dc:creator>
		<pubDate>Sun, 21 Oct 2012 11:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-92486</guid>
		<description>while converting this code to VB.NET I am facing the following problems
Line no.  98: What is m? and what is the meaning of =&gt;? (in VB =&gt; gets converted to &gt;=)
Line no. 278: What is m?
Line no. 314: What is c?

An early response will be highly appretiated.

Regards</description>
		<content:encoded><![CDATA[<p>while converting this code to VB.NET I am facing the following problems<br />
Line no.  98: What is m? and what is the meaning of =&gt;? (in VB =&gt; gets converted to &gt;=)<br />
Line no. 278: What is m?<br />
Line no. 314: What is c?</p>
<p>An early response will be highly appretiated.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spelling correction, Query completion and Instant search &#171; FAROO Blog</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-82657</link>
		<dc:creator>Spelling correction, Query completion and Instant search &#171; FAROO Blog</dc:creator>
		<pubDate>Thu, 12 Jul 2012 19:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-82657</guid>
		<description>[...] &#171; 1000x Faster Spelling Correction: Source Code released [...]</description>
		<content:encoded><![CDATA[<p>[...] &laquo; 1000x Faster Spelling Correction: Source Code released [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 1000x Faster Spelling Correction algorithm &#171; FAROO Blog</title>
		<link>http://blog.faroo.com/2012/06/24/1000x-faster-spelling-correction-source-code-released/comment-page-1/#comment-81133</link>
		<dc:creator>1000x Faster Spelling Correction algorithm &#171; FAROO Blog</dc:creator>
		<pubDate>Sun, 24 Jun 2012 10:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.faroo.com/?p=760#comment-81133</guid>
		<description>[...] Near Duplicate Detection 1000x Faster Spelling Correction: Source Code released [...]</description>
		<content:encoded><![CDATA[<p>[...] Near Duplicate Detection 1000x Faster Spelling Correction: Source Code released [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
