<?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 for blog.dev001.net</title>
	<atom:link href="http://blog.dev001.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dev001.net</link>
	<description>Just another Web Developer's weblog</description>
	<lastBuildDate>Wed, 11 Nov 2009 19:14:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Receiving pingbacks using the PHP XML-RPC module by How do you pingback a site when a link is added to it? - QuestionBin - Intelligent Answers for Smart Questions::Answer</title>
		<link>http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/comment-page-1/#comment-2151</link>
		<dc:creator>How do you pingback a site when a link is added to it? - QuestionBin - Intelligent Answers for Smart Questions::Answer</dc:creator>
		<pubDate>Wed, 11 Nov 2009 19:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=120#comment-2151</guid>
		<description>[...] You need to let the pingback URL of the site know that you have linked to them. The pingback URL is is embedded in a &lt;link rel and looks like this: &lt;link rel=&quot;pingback&quot; href=&quot;http://url/xmlrpc.php&quot; /&gt; You can find the pingback URL standards here: http://www.hixie.ch/specs/pingback/pingback  You can find a PHP Pingback Example here: http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/ [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] You need to let the pingback URL of the site know that you have linked to them. The pingback URL is is embedded in a &lt;link rel and looks like this: &lt;link rel=&quot;pingback&quot; href=&quot;http://url/xmlrpc.php&quot; /&gt; You can find the pingback URL standards here: <a href="http://www.hixie.ch/specs/pingback/pingback" rel="nofollow">http://www.hixie.ch/specs/pingback/pingback</a>  You can find a PHP Pingback Example here: <a href="http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/" rel="nofollow">http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2/3 myisam_suggest: an AutoComplete tool for MySQL fulltext indices by blog.dev001.net &#187; Comparing myisam_suggest with a book&#8217;s index</title>
		<link>http://blog.dev001.net/2009/01/myisam_suggest-an-autocomplete-tool-for-mysql-fulltext-indices/comment-page-1/#comment-1152</link>
		<dc:creator>blog.dev001.net &#187; Comparing myisam_suggest with a book&#8217;s index</dc:creator>
		<pubDate>Thu, 23 Apr 2009 19:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=10#comment-1152</guid>
		<description>[...] I had an idea how to illustrate how myisam_suggest works by a comparison with a normal printed book&#8217;s [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] I had an idea how to illustrate how myisam_suggest works by a comparison with a normal printed book&#8217;s [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Receiving pingbacks using the PHP XML-RPC module by gimpusers.com now supports pingbacks - News - gimpusers.com</title>
		<link>http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/comment-page-1/#comment-10</link>
		<dc:creator>gimpusers.com now supports pingbacks - News - gimpusers.com</dc:creator>
		<pubDate>Wed, 04 Feb 2009 01:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=120#comment-10</guid>
		<description>[...] then you can see your backlink directly above the comments.  As a demonstration, we linked from our blog.dev001.net article (where you can find technical details of the implementation, if you are interested) to this [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] then you can see your backlink directly above the comments.  As a demonstration, we linked from our blog.dev001.net article (where you can find technical details of the implementation, if you are interested) to this [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2/3 myisam_suggest: an AutoComplete tool for MySQL fulltext indices by TauruS ForeveR</title>
		<link>http://blog.dev001.net/2009/01/myisam_suggest-an-autocomplete-tool-for-mysql-fulltext-indices/comment-page-1/#comment-7</link>
		<dc:creator>TauruS ForeveR</dc:creator>
		<pubDate>Fri, 30 Jan 2009 15:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=10#comment-7</guid>
		<description>Hi,

I don&#039;t know why, but It didn&#039;t work for me, until I&#039;ve replaced:

-if (strcasecmp(query_buf+1, s) != 0) break;
+if (strcasecmp(argv[3], s) != 0) break;

(&quot;query_buf&quot; always contained doubled &quot;argv[3]&quot;. e.g. if &quot;argv[3]&quot; == &quot;tes&quot; then &quot;query_buf+1&quot; == &quot;testes&quot;)

FreeBSD 7.0, MySQL 5.0.45.

Now it works well. 

P.S. At the moment I am thinking how to get it working with more then one word :-)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I don&#8217;t know why, but It didn&#8217;t work for me, until I&#8217;ve replaced:</p>
<p>-if (strcasecmp(query_buf+1, s) != 0) break;<br />
+if (strcasecmp(argv[3], s) != 0) break;</p>
<p>(&#8220;query_buf&#8221; always contained doubled &#8220;argv[3]&#8221;. e.g. if &#8220;argv[3]&#8221; == &#8220;tes&#8221; then &#8220;query_buf+1&#8221; == &#8220;testes&#8221;)</p>
<p>FreeBSD 7.0, MySQL 5.0.45.</p>
<p>Now it works well. </p>
<p>P.S. At the moment I am thinking how to get it working with more then one word <img src='http://blog.dev001.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1/3 Implementing an AutoSuggest feature using MySQL fulltext indices by rfc2822</title>
		<link>http://blog.dev001.net/2009/01/implementing-an-autosuggest-feature-using-mysql-fulltext-indices/comment-page-1/#comment-3</link>
		<dc:creator>rfc2822</dc:creator>
		<pubDate>Wed, 21 Jan 2009 21:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=9#comment-3</guid>
		<description>It shouldn&#039;t be resource intensive because it uses the index that already exists (when you use the MyISAM full-text index feature). When searching the index, it uses the tree structure so it doesn&#039;t need to scan all rows.

As mentioned in the third article of this series (3/3), you can view a demo on http://www.gimpusers.com (use the search field)</description>
		<content:encoded><![CDATA[<p>It shouldn&#8217;t be resource intensive because it uses the index that already exists (when you use the MyISAM full-text index feature). When searching the index, it uses the tree structure so it doesn&#8217;t need to scan all rows.</p>
<p>As mentioned in the third article of this series (3/3), you can view a demo on <a href="http://www.gimpusers.com" rel="nofollow">http://www.gimpusers.com</a> (use the search field)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1/3 Implementing an AutoSuggest feature using MySQL fulltext indices by dotmusik</title>
		<link>http://blog.dev001.net/2009/01/implementing-an-autosuggest-feature-using-mysql-fulltext-indices/comment-page-1/#comment-2</link>
		<dc:creator>dotmusik</dc:creator>
		<pubDate>Wed, 21 Jan 2009 21:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dev001.net/?p=9#comment-2</guid>
		<description>Is there a working example of this? Looks very interesting, but I&#039;m just concerned how resource intensive it might be.</description>
		<content:encoded><![CDATA[<p>Is there a working example of this? Looks very interesting, but I&#8217;m just concerned how resource intensive it might be.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
