<?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>Kavoir &#187; AJAX Tips and Tricks</title>
	<atom:link href="http://www.kavoir.com/category/programming/ajax/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kavoir.com</link>
	<description>Just another dumbass webmaster, goofing around...</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:59:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Best Online Domain Name Availability Checker Tool (AJAX)</title>
		<link>http://www.kavoir.com/2009/03/the-best-online-domain-name-availability-tool.html</link>
		<comments>http://www.kavoir.com/2009/03/the-best-online-domain-name-availability-tool.html#comments</comments>
		<pubDate>Sat, 07 Mar 2009 14:16:23 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[AJAX Tips and Tricks]]></category>
		<category><![CDATA[Domains]]></category>
		<category><![CDATA[Internet Tools]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/03/the-best-online-domain-name-availability-tool.html</guid>
		<description><![CDATA[As if there&#8217;s an offline one to check whether a domain is available or not. ;) Psychic Whois is it. It&#8217;s the best domain availability checking tool I know so far. AJAX powered, it instantly checks whether a domain is available for registration after you have typed the primary part by listing all 6 popular [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As if there&#8217;s an offline one to check whether a domain is available or not. ;)</p>

<p><a href="http://www.psychicwhois.com">Psychic Whois</a> is it.</p>
<p><a href="http://www.psychicwhois.com/"><img title="psychicwhois" src="http://www.kavoir.com/wp-content/uploads/2009/03/psychicwhois.png" alt="psychicwhois: domain availability checker" /></a></p>
<p>It&#8217;s the best domain availability checking tool I know so far. AJAX powered, it instantly checks whether a domain is available for registration after you have typed the primary part by listing all 6 popular TLDs: .com, .net, .org, .biz, .info and .us and the name&#8217;s availability for each of them. Not only that, it suggests keyword combinations based from what others have searched and queried.</p>
<p>If you need to search for 100s of domains  at one time, <a href="http://www.kavoir.com/2009/07/bulk-domain-name-availability-checker-tool-to-batch-check-domain-availability.html">bulk domains search tool</a> is what you need.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/07/bulk-domain-name-availability-checker-tool-to-batch-check-domain-availability.html" rel="bookmark" title="July 25, 2009">Bulk Domain Name Availability Checker Tool to Batch Search Available Domains</a></li>
<li><a href="http://www.kavoir.com/2009/05/verisign-data-analyzer-the-most-authoritative-type-in-traffic-analysis-tool-for-unregistered-domains-misspelled-domains.html" rel="bookmark" title="May 1, 2009">VeriSign Data Analyzer – The Most Authoritative Type-in Traffic Analysis Tool for Unregistered Domains / Misspelled Domains</a></li>
<li><a href="http://www.kavoir.com/2009/01/how-to-do-keyword-research-from-keyword-seed-list-to-a-profitable-niche.html" rel="bookmark" title="January 9, 2009">How to Do Keyword Research &ndash; From Keyword Seed List to a Profitable Niche</a></li>
<li><a href="http://www.kavoir.com/2009/01/free-reverse-domain-ip-tool-for-other-websites-or-domains-on-the-same-server.html" rel="bookmark" title="January 11, 2009">Free Reverse Domain &amp; IP Tool for Other Websites or Domains on the Same Server</a></li>
<li><a href="http://www.kavoir.com/2009/09/how-to-get-a-web-address-top-level-domain.html" rel="bookmark" title="September 9, 2009">How to get a web address (top level domain)?</a></li>
</ul>
<p><!-- Similar Posts took 3.164 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/03/the-best-online-domain-name-availability-tool.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Which is better for AJAX requests, GET or POST?</title>
		<link>http://www.kavoir.com/2009/01/which-is-better-for-ajax-requests-get-or-post.html</link>
		<comments>http://www.kavoir.com/2009/01/which-is-better-for-ajax-requests-get-or-post.html#comments</comments>
		<pubDate>Fri, 09 Jan 2009 14:44:51 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[AJAX Tips and Tricks]]></category>
		<category><![CDATA[HTTP Tips & Tutorials]]></category>
		<category><![CDATA[JavaScript Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/01/which-is-better-for-ajax-requests-get-or-post.html</guid>
		<description><![CDATA[As per HTTP protocol specifications, client browsers send http post requests in two-step processes: 1) send the headers, 2) send the data. Therefore, for websites with high volume traffic, it’s definitely preferable to choose GET method for AJAX requests over HTTP, because all it takes for GET to get out is a URL request, which [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As per HTTP protocol specifications, client browsers send http post requests in two-step processes: 1) send the headers, 2) send the data.</p>

<p>Therefore, for websites with high volume traffic, it’s definitely preferable to choose <strong>GET method</strong> for AJAX requests over HTTP, because all it takes for GET to get out is a URL request, which is basically a TCP packet if you don’t have a lot of cookies.</p>
<p>However, as there is a limit on the length of the URL in Internet Explorer which is approximately 2k, so technically <em><u>you can’t send a GET request with data more than that</u></em>.</p>
<p>Another approach is to determine whether to use GET or POST is that, according to HTTP specification, GET is for fetching data while POST is for supplying. In this sense, use GET for <strong>data retrieval</strong> tasks and POST for <strong>data input</strong> tasks.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2010/03/php-how-to-distinguish-values-in-_post-or-_get-that-are-sent-via-http-requests-and-those-that-are-set-assigned-in-the-code.html" rel="bookmark" title="March 4, 2010">PHP: How to distinguish values in $_POST or $_GET that are sent via HTTP requests and those that are set / assigned in the code</a></li>
<li><a href="http://www.kavoir.com/2008/04/comment-tag-in-internet-explorer-of-both-windows-and-mac.html" rel="bookmark" title="April 9, 2008">Proprietary HTML comment tag in Internet Explorer of both Windows and Mac</a></li>
<li><a href="http://www.kavoir.com/2009/12/php-regular-expression-matching-input-subject-string-length-limit.html" rel="bookmark" title="December 12, 2009">PHP: Subject String Length Limit of Regular Expression Matching Functions</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-curl-making-post-request-to-url.html" rel="bookmark" title="April 22, 2009">PHP cURL: Making POST Request to URL</a></li>
<li><a href="http://www.kavoir.com/2010/07/php-and-javascript-variable-value-transfer-exchange-how-to-pass-variable-values-from-php-to-javascript-or-javascript-to-php.html" rel="bookmark" title="July 9, 2010">PHP and JavaScript Variable / Value Transfer / Exchange: How to pass variable values from PHP to JavaScript or JavaScript to PHP?</a></li>
</ul>
<p><!-- Similar Posts took 3.177 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/01/which-is-better-for-ajax-requests-get-or-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

