<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.dev001.net &#187; Web</title>
	<atom:link href="http://blog.dev001.net/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dev001.net</link>
	<description>Just another Web Developer's weblog</description>
	<lastBuildDate>Sun, 08 Aug 2010 07:19:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Sending a pingback using the PHP CURL module</title>
		<link>http://blog.dev001.net/2009/02/sending-a-pingback-using-the-php-curl-module/</link>
		<comments>http://blog.dev001.net/2009/02/sending-a-pingback-using-the-php-curl-module/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 00:55:54 +0000</pubDate>
		<dc:creator>rfc2822</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[pingback]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.dev001.net/?p=129</guid>
		<description><![CDATA[To send pingbacks from your site to other blogs/communities/etc., you can use the PHP CURL module: &#60;? function send_pingback&#40;$sourceURI, $targetURI&#41; &#123; &#160; &#160; &#160; &#160; $target = file_get_contents&#40;$targetURI&#41;; &#160; &#160; &#160; &#160; // HTTP headers are now in $http_response_header, see docs of HTTP wrapper &#160; &#160; &#160; &#160; foreach &#40;$http_response_header as $header&#41; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.dev001.net/2009/02/sending-a-pingback-using-the-php-curl-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Receiving pingbacks using the PHP XML-RPC module</title>
		<link>http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/</link>
		<comments>http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 21:25:22 +0000</pubDate>
		<dc:creator>rfc2822</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[pingback]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.dev001.net/?p=120</guid>
		<description><![CDATA[If you want to enable a Web site (for instance, a blog or community project) to receive pingbacks, you can use the PHP XML-RPC module. All you need to do is to create an XML-RPC server register a function for pingback.ping call the server implement the function The function itself, let&#8217;s call it do_pingback, only [...]]]></description>
		<wfw:commentRss>http://blog.dev001.net/2009/02/receiving-pingbacks-using-the-php-xml-rpc-module/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML/CSS lists with markers on the right side</title>
		<link>http://blog.dev001.net/2009/01/htmlcss-lists-with-markers-on-the-right-side/</link>
		<comments>http://blog.dev001.net/2009/01/htmlcss-lists-with-markers-on-the-right-side/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 00:19:15 +0000</pubDate>
		<dc:creator>rfc2822</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.dev001.net/?p=99</guid>
		<description><![CDATA[If you need a HTML list with the markers on the right side, you can achieve this by using RTL (right-to-left) text.]]></description>
		<wfw:commentRss>http://blog.dev001.net/2009/01/htmlcss-lists-with-markers-on-the-right-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3/3 Populate an AJAX AutoSuggest field on your Web site with myisam_suggest</title>
		<link>http://blog.dev001.net/2009/01/populate-an-ajax-autosuggest-field-on-your-web-site-with-myisam_suggest/</link>
		<comments>http://blog.dev001.net/2009/01/populate-an-ajax-autosuggest-field-on-your-web-site-with-myisam_suggest/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 18:46:31 +0000</pubDate>
		<dc:creator>rfc2822</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[AutoComplete]]></category>
		<category><![CDATA[AutoSuggest]]></category>
		<category><![CDATA[full-text index]]></category>
		<category><![CDATA[OpenSearch]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.dev001.net/?p=11</guid>
		<description><![CDATA[In &#8220;1/3 Implementing an AutoSuggest feature using MySQL fulltext indices&#8221; I described how you can use a MyISAM full-text index to extract search words for an AutoSuggest feature. Then, in &#8220;2/3 myisam_suggest: an AutoComplete tool for MySQL fulltext indices&#8221; I wrote how to install and use myisam_suggest to extract these search words in practice. Here [...]]]></description>
		<wfw:commentRss>http://blog.dev001.net/2009/01/populate-an-ajax-autosuggest-field-on-your-web-site-with-myisam_suggest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2/3 myisam_suggest: an AutoComplete tool for MySQL fulltext indices</title>
		<link>http://blog.dev001.net/2009/01/myisam_suggest-an-autocomplete-tool-for-mysql-fulltext-indices/</link>
		<comments>http://blog.dev001.net/2009/01/myisam_suggest-an-autocomplete-tool-for-mysql-fulltext-indices/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 18:45:44 +0000</pubDate>
		<dc:creator>rfc2822</dc:creator>
				<category><![CDATA[Data Processing]]></category>
		<category><![CDATA[AutoComplete]]></category>
		<category><![CDATA[AutoSuggest]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[full-text]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[MyISAM]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.dev001.net/?p=10</guid>
		<description><![CDATA[As I&#8217;ve written in my previous post &#8220;1/3 Implementing an AutoSuggest feature using MySQL fulltext indices&#8221;, it&#8217;s possible to use the MySQL/MyISAM full-text index to extract search words for an AutoSuggest feature with great performance (because the index tree is used actually). This tool, called myisam_suggest, is my first implementation of this. Download Here: myisam_suggest.c [...]]]></description>
		<wfw:commentRss>http://blog.dev001.net/2009/01/myisam_suggest-an-autocomplete-tool-for-mysql-fulltext-indices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
