<?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>Seifi.org &#187; search</title>
	<atom:link href="http://www.seifi.org/category/searching/feed" rel="self" type="application/rss+xml" />
	<link>http://www.seifi.org</link>
	<description>A Web Development Blog by Joe Seifi - seifi.org</description>
	<lastBuildDate>Thu, 26 Jan 2012 01:08:13 +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>Optimizing the Google +1 button for speed</title>
		<link>http://www.seifi.org/javascript/optimizing-the-google-1-button-for-speed.html</link>
		<comments>http://www.seifi.org/javascript/optimizing-the-google-1-button-for-speed.html#comments</comments>
		<pubDate>Fri, 17 Jun 2011 20:38:43 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.seifi.org/?p=812</guid>
		<description><![CDATA[If you&#8217;re like most bloggers and site owners, you&#8217;ve probably already added or are planning to add the new Google +1 button to your website, to go along with the Twitter and Facebook buttons. Having implemented the +1 button I&#8217;ve found that the script takes a long time to load, and does not even load [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like most bloggers and site owners, you&#8217;ve probably already added or are planning to add the new Google +1 button to your website, to go along with the Twitter and Facebook buttons. Having implemented the +1 button I&#8217;ve found that the script takes a long time to load, and does not even load if you&#8217;re on an iPhone or iPad. This actually comes as a shock to me considering Google itself is a huge advocate of page speed improvements. The file (plusone.js) is 4 KB (before gzipping) and gets assigned a short expiration time of only 60 minutes by Google. Thankfully the script is gzipped and is only semi-minified, but it still takes a new uncached hit about 1.26 seconds to complete. Most of this time is spent in either the Blocking or Waiting stages, which might have something to do with it being served from a secure server. The decision to load the file over HTTPS by default is a bit baffling to me, especially since the handshake is historically slower. Unless sensitive information exists in the JS code which could be another interesting topic. Google has been doing some work on <a href="http://blog.chromium.org/2011/05/ssl-falsestart-performance-results.html" target="_blank">SSL FalseStart</a> in Chrome to alleviate SSL latency and it seems their goal is to eventually serve all their services securely. Plusone.js then loads a second much larger js file from plusone.google.com also over SSL which comes in at about 57 KB (before gzipping). This file tacks on another 1.17 seconds to the completion time for the +1 button.</p>
<p>After seeing how slow the Google +1 button loads and how it can actually degrade your website&#8217;s overall pageload time, I started looking around for answers. First of all, I found that I&#8217;m not the only one complaining about the issue. Numerous others have started to point out the speed issues with the +1 button. My second thought was to perhaps remove the button from the site, although considering the effect the +1 button has on your website&#8217;s ranking that would mean less love from Google. </p>
<p>So what&#8217;s a developer to do? If we keep the button on our site, overall pageload times spike. But if we remove the button, or not add it, we might lose out on a potential piece of the social voting pie which most believe affects your search performance. </p>
<p>So here are my techniques for making Google +1 button load faster, or at least not slow down your site. Interestingly enough these techniques are the same set of tips and tricks that Google&#8217;s own <a href="http://code.google.com/speed/page-speed/" target="_blank">Page Speed</a> recommends for webmasters.</p>
<h3>1) Save a step, Use Https</h3>
<p>Make sure you use the HTTPS protocol in the URL for the JavaScript source, as the original version of the button snippets given out by Google included the HTTP version http://apis.google.com/js/plusone.js which just does a redirect to https://apis.google.com/js/plusone.js This issue has since been corrected by Google when you use Google&#8217;s <a href="http://www.google.com/webmasters/+1/button/" target="_blank">+1 button generator</a> site.</p>
<h3>2) Don&#8217;t load the script on Mobile devices</h3>
<p>As stated by Google, currently the Google +1 button does not support <a href="http://www.google.com/support/forum/p/Webmasters/thread?tid=6da5296e3d7207e2" target="_blank">mobile devices</a> like the iPhone, iPod touch, iPad, or Android. This means if you have the button code on a mobile site you&#8217;re basically wasting HTTP connections and adding extra weight to your site&#8217;s throughput. To get around this fact you need to write a little utility function in JavaScript that sniffs the userAgent for unsupported devices, and only makes a call to the script if your client is not one of those devices.<br />
For example in the case of an iPhone and iPad website, you would do something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> isMobileUser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/iphone|ipod|ipad|android|blackberry|mini|windows\sce|palm/i</span>.<span style="color: #660066;">test</span><span style="color: #009900;">&#40;</span>navigator.<span style="color: #660066;">userAgent</span>.<span style="color: #660066;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
<span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>isMobileUser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">//include the plusone.js code here</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h3>3) Load the plusone.js script asynchronously</h3>
<p>HTML 5 has introduced the ability to load scripts asynchronously allowing the rest of the page to load independently of potential bottlenecks. This feature is actually already in use for the Google Analytics code. Keep in mind that only Chrome and Firefox 3.6 and above <a href="http://www.browserscope.org/?category=network" target="_blank">support</a> the <a href="http://www.whatwg.org/specs/web-apps/current-work/#attr-script-async" target="_blank">async</a> feature at this time. But it does not hurt your non-supporting browsers in any way so it&#8217;s safe to use. Here&#8217;s the code that combines the check for unsupported mobile browsers from before to load the +1 button script asynchronously. Note that since this code is loaded asynchronously it doesn&#8217;t matter if you put the call in the footer or header.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> isMobileUser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/iphone|ipod|ipad|android|blackberry|mini|windows\sce|palm/i</span>.<span style="color: #660066;">test</span><span style="color: #009900;">&#40;</span>navigator.<span style="color: #660066;">userAgent</span>.<span style="color: #660066;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
<span style="color: #009900;">&#125;</span>
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>isMobileUser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #006600; font-style: italic;">// create a new script element in the DOM</span>
<span style="color: #003366; font-weight: bold;">var</span> gp1script <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'script'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">// set it's type attribute, not really needed in HTML 5 but just to be safe</span>
gp1script.<span style="color: #660066;">type</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'text/javascript'</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">// set the HTML 5 attribute of async to true for the script tag</span>
gp1script.<span style="color: #660066;">async</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">// set the source attribute to the https version of the google pluseone code</span>
<span style="color: #006600; font-style: italic;">// change this to your own server path if you are cosidering using option 4 below</span>
gp1script.<span style="color: #660066;">src</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'https://apis.google.com/js/plusone.js'</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">// add the new script tag to the head or body of the page</span>
<span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'head'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">||</span>document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>gp1script<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>You would then place the tag where you want the +1 button to render, which since it is a proprietry tag will just be ignored if the script is not present on your page.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;g:plusone&gt;&lt;/g:plusone&gt;</pre></div></div>

<p>If you&#8217;re not comfortable with the <g> tag, you can also use an HTML 5 version to render the +1 button on your site, which uses a css class of g-plusone and sets attributes as needed. For example you can display a standard +1 button with counts using this HTML 5 tag.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;g-plusone&quot; data-size=&quot;standard&quot; data-count=&quot;true&quot;&gt;&lt;/div&gt;</pre></div></div>

<p>Note that you can also place multiple +1 buttons on a single page. For example you might have a +1 button that directs its vote to your main parent homepage like so:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;g:plusone href=&quot;http://www.your_tld.com/&gt;&lt;/g:plusone&gt;</pre></div></div>

<h3>4) Host the plusone.js file yourself</h3>
<p>This option has been suggested by some users, although I personally argue against it just because you&#8217;ll be responsible for continuously monitoring changes and updating your version. The big benefit here is avoiding that dreaded HTTPS server, but keep in mind the script still will make that second call to load the plusone library so you&#8217;re still not home free. Only go this route if you&#8217;re seriously considering a site improvement and are willing and capable of pushing out updates to your version of the script. I&#8217;m sure the Google +1 team is making lots of changes and adding bug fixes which you will miss out on if you forget to update the script on a daily basis. In the extreme case you could perhaps write a program that downloads the latest version of the script from Google&#8217;s servers and updates your version on a daily basis, but then again this becomes a new task to keep an eye on.</p>
<p>Hope this helps and let me know if you have other tips and or feedback regarding these ideas. For more details be sure to read the +1 button <a href="http://code.google.com/apis/+1button/" target="_blank">API</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/javascript/optimizing-the-google-1-button-for-speed.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Youtube Video Units Released</title>
		<link>http://www.seifi.org/searching/google-youtube-video-units-released.html</link>
		<comments>http://www.seifi.org/searching/google-youtube-video-units-released.html#comments</comments>
		<pubDate>Wed, 10 Oct 2007 05:24:23 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.seifi.org/money/google-youtube-video-units-released.html</guid>
		<description><![CDATA[AdSense Video Units is here! Get great video content from YouTube for your site and earn extra revenue along the way. So now you can make money and enhance your site with high quality, relevant video content from YouTube partners, and earn extra revenue along the way. To get started just log in to your [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src='http://www.seifi.org/wp-content/uploads/2007/10/videodemo.jpg' align='left' alt='Google Youtube Video Units Demo' style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 20px 0px 0px; border-right-width: 0px" />AdSense Video Units is here! Get great video content from YouTube for your site and earn extra revenue along the way. So now you can make money and enhance your site with high quality, relevant video content from YouTube partners, and earn extra revenue along the way. To get started just log in to your AdSense account and click on the AdSense Setup tab. You will see a new product listed there called Video Units.<br />
<span id="more-599"></span></p>
<p>Clicking on Video Units the first time will take you to a page where you are shown a video presentation on Video Units. here is the video:<br />
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/CqXDziUCVWY"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/CqXDziUCVWY" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>&nbsp; </p>
<p>So how do you actually make money with Video Units? The <a href="https://www.google.com/adsense/support/bin/topic.py?topic=12182&amp;sourceid=aso&amp;subid=ww-ww-et-asui&amp;medium=link">FAQ section</a>&nbsp;of Video Units talks about this. When you place a video unit on your website, you&#8217;ll earn revenue from two types of ad formats: <strong>companion ads</strong>, which sit above your video content within the player and can be either text or image-based, and <strong>text overlay ads</strong>, which appear in the bottom 20% of the video content area. Ads on video units can be paid on either a cost-per-click or cost-per-thousand impression basis.</p>
<p>So companion ads are like banner ads and text overlay ads are like AdWords ads.</p>
<p>The <a href="http://www.youtube.com/adsense_player" target="_blank">setup page</a>&nbsp;walks you through creating the code to place on your site and is quite simple to use. You just pick a color theme, the size of the video ad unit and you can also filter the content to be shown in your player. You can also save the player by giving it a name and description. </p>
<p>Video units come in 3 different sizes:</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/10/videounits_layouts.gif' alt='Video Units Layouts' /></p>
<ul>
<li>400 x 415
<li>500 x 510
<li>780 x 560</li>
</ul>
<p>You can pick from 9 preset color schemes:</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/10/videounits_colors.gif' alt='Video Units Colors' /></p>
<p>Click on Generate Code, Copy the code, and Paste it into your site. Below is a sample video unit which I&#8217;ve created for testing out the service.</p>
<div id='_ytplayer_vjVQa1PpcFOR6lddZw4OvPyGlZce6SA8M68etWbzGvc='><a href='http://www.youtube.com/browse'>Watch the latest videos on YouTube.com</a></div>
<p><script type="text/javascript" src="http://www.youtube.com/cp/vjVQa1PpcFOR6lddZw4OvPyGlZce6SA8M68etWbzGvc="></script></p>
<p>Some of the advantages of Video Units over regular ads are:</p>
<p>You will now deliver content to your site as opposed to ads. You can also make the content relevant by choosing from&nbsp;categories you wish to have shown. The ads in videos are not obtrusive and you make money from them. You are actually enhancing the user experience and helping to attract and retain users. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/google-youtube-video-units-released.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced Blog Stats From Clicky</title>
		<link>http://www.seifi.org/searching/advanced-blog-stats-from-clicky.html</link>
		<comments>http://www.seifi.org/searching/advanced-blog-stats-from-clicky.html#comments</comments>
		<pubDate>Fri, 31 Aug 2007 07:07:34 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://www.seifi.org/ajax/advanced-blog-stats-from-pmetrics.html</guid>
		<description><![CDATA[I&#8217;ve been using Clicky from Performancing Inc. for the past few weeks now and I had to write this review to let everyone know about this amazingly powerful, unique and advanced statistical package that you should be using on your blog. Personally I have used many other statistics packages including Google Analytics, and many other [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Clicky from Performancing Inc. for the past few weeks now and I had to write this review to let everyone know about this amazingly powerful, unique and advanced statistical package that you should be using on your blog. Personally I have used many other statistics packages including Google Analytics, and many other stats packages for WordPress, but none of them have been as valuable as Clicky, and I find myself going back to it over and over again. </p>
<p><span id="more-592"></span></p>
<p>Here are top 7 reasons why you really should check out Get Clicky.</p>
<p><strong>1. </strong>Spy</p>
<p>Spy is a live view of visitors interacting with your web site. Its like having your own <a href="http://labs.digg.com/bigspy/" target="_blank">digg like spy page</a>. This gives you the power of knowing in real time when and where your visitors are coming from, what pages they are visiting and where they are going when they leave. You see the user IP address as well as their browser and operating system. You can even trace specific users and see a breakdown of the history of their visits and actions made on the site. For each visitor you also see a nice set of stats such as their browser, operating system, language, resolution and whether JavaScript is enabled. As a side note Clicky works regardless of JavaScript support using image source loading.</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/08/spy.gif' alt='Spy' /></p>
<p><strong>2. Tagging and Filtering</strong></p>
<p>You can go a bit further with IP address tracking in Clicky. You can tag certain IP addresses so you can easily identify them. You can also filter out specific IP addresses from the stats. For example If you want to exclude your own hits to your blog from being counted in your stats, enter the IP address(es) you use regularly and have them filtered out.</p>
<p><strong>3. </strong>RSS</p>
<p>Stats via RSS is another amazing feature that gives you the power of keeping a tab on your site.  Clicky gives you customizable RSS feeds that are updated every 30 minutes. Using these RSS feeds you are able to for example take a quick look at the action on your blog from any RSS reader. Now you can easily monitor the recent incoming links, popular incoming links, popular urls, recent searches, popular searches, recent visitors and dashboard data. A cool trick you can try is to change the duration for a feed.  For example to see the hits in the past hour, append hours=1 to the feed url. Or to see popular incoming links in the past week append days=7 to the feed url. Another neat feature of the RSS feed is that it obviously doesn&#8217;t require authentication, so you can share the url with others as you wish and or transform the RSS data and publicly display your stats on your blog.</p>
<p><strong>4. Clouds, CSV, XML, JSON, API</strong></p>
<p>Stats data is presented to you in tabular format by default, however you can easily change the view of any table to a cloud view by clicking on a little cloud icon. I find the cloud visual more useful, especially when looking at long tables of data. For example, the Search keywords page in cloud view easily highlights the most popular search terms and search engines that are sending you traffic. For offline viewing you can also download your stats in popular formats such as CSV for Excel, and also XML or JSON which can be useful for feeding them to your own applications. If you are comfortable with programming, you can even use the <a href="http://www.getclicky.com/help/api" target="_blank">API</a> provided to access the data from Clicky using your sitekey and site_id.</p>
<p><strong>5. Powerful Dashboard</strong></p>
<p>You can edit your main dashboard page to see the blocks that you are most interested in. By default you get the basics, Links, Searches, and Content. I also like Recent Visitors and Locale.  On the Basics widget a summary stats table gives you the birds eye view of what is going on. You see the number of visitors, the number of actions performed, total time spent on your blog, as well as averaged numbers such as Average actions per visit and Average time per visit. If that wasn&#8217;t enough you also see a comparison percentage column which shows you how today&#8217;s stats compare against the previous day&#8217;s data, or the same day last week.</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/08/basics.gif' alt='Basics' /></p>
<p><strong>6. Google Maps</strong></p>
<p>For those of you that like to see geographical data, Google Maps is very nicely intergrated into Clicky in a few places. You can see the geolocation of any specific user as well as the locations of all visitors to your site on the map.</p>
<p><strong>7. WordPress Plugin</strong></p>
<p>If you use WordPress, and you should be, this plugin automatically puts your tracking code at the bottom of all pages on your site and filters out all traffic from site admins like yourself. It also does the whole &#8216;custom data tracking&#8217; thing to automatically name your visitors inside the Clicky interface based on what they entered on your comment form.</p>
</p>
<p></p>
<p>There are a ton of other features that I don&#8217;t have time to go into here, such as tracking custom data, tracking downloads, FeedBurner integration, HTTPS support and more. You can try out a <a href="http://www.getclicky.com/stats/home?site_id=32020" target="_blank">demo</a> of a sample tracking site to get a feel for the clean and easy to use user interface. </p>
<p>When you first register, you get 21 days of premium service free, so you can try out all the features. You can track up to 3 web sites and 1,000 daily page views per day per site for Free.  Beyond that level there are reasonably priced premium services which get you more sites, more features, and higher traffic levels &#8211; starting at less than $2/month.</p>
</p>
<p><a title="Clicky Web Analytics" href="http://getclicky.com/44763" target="_blank"><img alt="Clicky Web Analytics" src="http://static.getclicky.com/media/links/clicky-125.gif" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/advanced-blog-stats-from-clicky.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best of Domain Name Search Tools</title>
		<link>http://www.seifi.org/searching/best-of-domain-name-search-tools.html</link>
		<comments>http://www.seifi.org/searching/best-of-domain-name-search-tools.html#comments</comments>
		<pubDate>Mon, 16 Jul 2007 18:47:20 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[domains]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.seifi.org/design/how-to-find-a-good-domain-name.html</guid>
		<description><![CDATA[Don&#8217;t let everyone convince you that all of the good domains are already taken. Here are a list of webtools to help you manage your mission of buying the next million dollar domain name. Bust A Name lets you mash up a series of words and shows you a set of available domains. In case [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t let everyone convince you that all of the good domains are already taken. Here are a list of webtools to help you manage your mission of buying the next million dollar domain name.</p>
<p><a href="http://www.bustaname.com/">Bust A Name</a> lets you mash up a series of words and shows you a set of available domains. In case you don&#8217;t know how to use web forms, Ryan has made a video nice little video <a href="http://www.bustaname.com/help/video">demo</a> for you.<br />
<span id="more-584"></span></p>
<p><a href="http://www.domainscrub.com/">Domain Scrub</a> looks for typos and misspelled domain names. Most of the time these domains are baits for bad typers. Smart companies buy out <a href="http://www.hahoo.com/">all</a> <a href="http://www.yaboo.com/">the</a> <a href="http://www.yaho.com/">typos</a> in their name before anyone else does.</p>
<p><a href="http://xona.com/domainhacks/">Domain hacks</a> lets you find a domain that combines domain labels, especially the top-level domain (TLD), to spell out the full &#8220;name&#8221; or title of the domain, making a kind of pun, for example del.icio.us</p>
<p><a href="http://www.makewords.com/">MakeWords.com</a> has advanced query features that allow you to refine your domain query for starting with, ending with, max letters, language rules random names and more.</p>
<p><a href="http://justdropped.com/">Just Dropped</a> is a domain search of recently dropped domain names, good for recycling/salvaging old domain names.</p>
<p><a href="http://www.psychicwhois.com/">Psychic Whois</a>, <a href="http://instantdomainsearch.com/">Instant Domain Search</a> and <a href="http://www.pcnames.com/">PC Names.</a> don&#8217;t suggest anything, but do give you instant availability for domain names as you type.</p>
<p><a href="http://domain-suggestions.domaintools.com/">Domaint Tools</a> offers a great suggestion tool for finding the right domain name, and also has a <a href="http://domain-search.domaintools.com/">keyword based</a> search tool with lots of options to narrow down your results.</p>
<p><a href="http://squurl.com/">squURL</a> has a nice search interface and shows some simple suggestions as well.</p>
<p><a href="http://www.domainit.com/domain-suggest-tool.mhtml">DomainIt</a> has a domain suggestion service to give you a large list of suggestions. </p>
<p><a href="http://www.domainsbot.com/">DomainsBot</a> gives you an inline ajax auto complete feature for searching domain names.</p>
<p><a href="http://www.nameboy.com/">Nameboy</a> is another tool for using keywords to find domains</p>
<p><a href="http://order.sbs.yahoo.com/ds/DomainSearchResults">Yahoo</a> domain search provides similar options in your search results.</p>
<p><a href="http://www.uwhois.com/cgi/domains.cgi?User=NoAds">Uwhois</a> is a nice tool to search all Generic Top Level Domains and most Country Code TLDs.</p>
<p><a href="http://expired-domain.bemmu.com/">Bemmu.com</a> lists expired domains with indications of Wikipedia, part of speech, delete days, Google trends and more.</p>
<p><a href="http://www.3la.org/">3LA</a> lists Three Letter expired domain names, <a href="http://dyyo.com/">dyyo</a> lists Four letter expired domain names, and <a href="http://www.5letter.com/">5 Letter</a> lists 5 letter domain names.</p>
<p><a href="http://domainsbot.com/labs/SplitIt/">Split It!</a> visually shows you how your domain name string will be split. Use this to avoid getting an accidentally funny domain name.</p>
<h3>Is your creative side running dry? Try these tools for some magic!</h3>
<p>To come up with new words try <a href="http://www.robobunny.com/cgi-bin/dislexicon">Dislexicon</a></p>
<p><a href="http://unique-name.perceptus.ca/word-mixer.php">Word Mixer</a> Enter 5 words and get 2-3 syllable results.</p>
<p><a href="http://www.puzzledepot.com/wordfinder2/crossword.html">Word Finer</a> for crossword pattern matching.</p>
<p><a href="http://www.rhymezone.com/">RhymeZone</a> gives you rhymes and synonyms of any word.</p>
<p><a href="http://www.dotomator.com/">Dot-o-mator</a> is a tool for mixing letters and to make up your own words and make up a nifty Web 2.0 domain name.</p>
<p><a href="http://www.wordconstructor.com/">WordConstructor</a> is great for generating a random name, brand, or domain name.</p>
<h3>A word of caution</h3>
<p>Don&#8217;t get your idea stollen! Don&#8217;t search for your domain name until you are ready to register it. More companies are now selling their domain search records to people in trying to make money in lucrative ways. Read this article on <a href="http://en.wikipedia.org/wiki/Domain_tasting">domain tasting</a> to find out more.</p>
<h3>Do you know of any other unique domain tools?</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/best-of-domain-name-search-tools.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google thinks I&#8217;m a robot</title>
		<link>http://www.seifi.org/searching/google-thinks-im-a-robot.html</link>
		<comments>http://www.seifi.org/searching/google-thinks-im-a-robot.html#comments</comments>
		<pubDate>Wed, 06 Jun 2007 18:15:27 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.seifi.org/google/google-thinks-im-a-robot.html</guid>
		<description><![CDATA[So I was doing some basic blog surfing on BlogSearch when all of a sudden I saw an error page with this text: We&#8217;re sorry&#8230; &#8230; but your query looks similar to automated requests from a computer virus or spyware application. To protect our users, we can&#8217;t process your request right now. We&#8217;ll restore your [...]]]></description>
			<content:encoded><![CDATA[<p>So I was doing some basic blog surfing on <a href="http://blogsearch.google.com">BlogSearch</a> when all of a sudden I saw an error page with this text:</p>
<blockquote><p>We&#8217;re sorry&#8230;<br />
&#8230; but your query looks similar to automated requests from a computer virus or spyware application. To protect our users, we can&#8217;t process your request right now.</p>
<p>We&#8217;ll restore your access as quickly as possible, so try again soon. In the meantime, if you suspect that your computer or network has been infected, you might want to run a virus checker or spyware remover to make sure that your systems are free of viruses and other spurious software.</p>
<p>We apologize for the inconvenience, and hope we&#8217;ll see you again on Google.</p></blockquote>
<p><span id="more-573"></span></p>
<p>Here is a screenshot of the page I get.<br />
<img src='http://www.seifi.org/wp-content/uploads/2007/06/google_sorry_virus.PNG' alt='Google Virus Page' /><br />
I am guessing this had to do with the number of queries per minute or some other type of quota put on the blog search page. I&#8217;m not quite sure I understand the logic behind this limitation. The only thing I can think of is that the application is running low on physical resources.</p>
<p>What happens when non-techy users see this error page? They freak out! They go buying all sorts of virus software and get all paranoid thinking their PC is infected. This is not a user friendly message and Google should find a nicer way to handle this, especially when their stock is trading at over <a href="http://finance.google.com/finance?q=GOOG">$500</a> per share. After a few minutes of &#8220;googling&#8221; around, I found a few <a href="http://codingo.net/blog/?p=14">other people</a> mentioned getting this same error on other Google search properties, even on the Google homepage.</p>
<p>The easy fix for me was to delete the browser cookies and Voila I&#8217;m a human again. I have also heard that somtimes google can blacklist your IP in which case you might have to flush your DNS and renew your IP hoping to get a new one.</p>
<p>I have to say, this was an alarming, annoying and somewhat scary event, especially coming from a company who sends its own robots to my servers dozens of times every day. If Google were to really block me one day it would change my life <img src='http://www.seifi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  or maybe I would just stop googling and start <a href="http://www.ask.com/">asking</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/google-thinks-im-a-robot.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Map This!</title>
		<link>http://www.seifi.org/searching/map_this.html</link>
		<comments>http://www.seifi.org/searching/map_this.html#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[local]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you like google maps, try it mixed with craigslist to find your next <a href="http://www.paulrademacher.com/housing/">home or apartment</a>, and with gassbuddy to find <a href="http://www.ahding.com/cheapgas/">cheap gas</a> or see <a href="http://supergreg.hopto.org/google-traffic.com/">traffic and weather</a> conditions. There's also one working with imdb to search <a href="http://www.ahding.com/movie/">movies</a>, and a <a href="http://labs.google.com/ridefinder">ride finder</a>. And here's what they <a href="http://www.flickr.com/photos/kokogiak/8777595/in/photostream/">look like</a> when you get there :)

Also, if you wanna do some armchair sightseeing, try some <a href="http://perljam.net/notes/interesting-google-satellite-maps/">interesting</a> google sattelite maps. Microsoft's TerraServer also has its own <a href="http://terraservice.net/famous.aspx">famous places</a>. Very similar results.

Yesterday Google unveiled its plans for <a href="http://www.google.com/press/factorytour.html">Google Earth</a>, with 3D buildings support! Today there is a new site up, <a href="http://www.chicagocrime.org/">Chicago Crime</a> that combines police data with Google Maps to show crimes in the Chicago area.

See who's <a href="http://hotmaps.frozenbear.com/">HOT or NOT in your zipcode</a>, using this clever combo!]]></description>
			<content:encoded><![CDATA[<p>If you like google maps, try it mixed with craigslist to find your next <a href="http://www.paulrademacher.com/housing/">home or apartment</a>, and with gassbuddy to find <a href="http://www.ahding.com/cheapgas/">cheap gas</a> or see <a href="http://supergreg.hopto.org/google-traffic.com/">traffic and weather</a> conditions. There&#8217;s also one working with imdb to search <a href="http://www.ahding.com/movie/">movies</a>, and a <a href="http://labs.google.com/ridefinder">ride finder</a>. And here&#8217;s what they <a href="http://www.flickr.com/photos/kokogiak/8777595/in/photostream/">look like</a> when you get there <img src='http://www.seifi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also, if you wanna do some armchair sightseeing, try some <a href="http://perljam.net/notes/interesting-google-satellite-maps/">interesting</a> google sattelite maps. Microsoft&#8217;s TerraServer also has its own <a href="http://terraservice.net/famous.aspx">famous places</a>. Very similar results.</p>
<p>Yesterday Google unveiled its plans for <a href="http://www.google.com/press/factorytour.html">Google Earth</a>, with 3D buildings support! Today there is a new site up, <a href="http://www.chicagocrime.org/">Chicago Crime</a> that combines police data with Google Maps to show crimes in the Chicago area.</p>
<p>See who&#8217;s <a href="http://hotmaps.frozenbear.com/">HOT or NOT in your zipcode</a>, using this clever combo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/map_this.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Goggles</title>
		<link>http://www.seifi.org/searching/google_goggles.html</link>
		<comments>http://www.seifi.org/searching/google_goggles.html#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Some Google related apps here. What does Google think of <a href="http://www.googlism.com/index.htm?ism=mojo&#038;type=1">your name</a>?  Linux is loosing the fight with <a href="http://www.googlefight.com/cgi-bin/compare.pl?q1=microsoft&#038;q2=linux&#038;B1=Make+a+fight%21&#038;compare=1&#038;langue=us">Microsoft</a>. Try this simple recipe query to <a href="http://www.researchbuzz.org/archives/001404.shtml">cook</a> with Google, or see results in 3D with <a href="http://www.touchgraph.com/TGGoogleBrowser.html">GoogleBrowser</a>. Cape gives you search <a href="http://capescience.capeclear.com/google/index.shtml">results by Email</a>. They are using Google's Web <a href="http://www.google.com/apis/">API</a>.]]></description>
			<content:encoded><![CDATA[<p>Some Google related apps here. What does Google think of <a href="http://www.googlism.com/index.htm?ism=mojo&amp;type=1">your name</a>? Linux is loosing the fight with <a href="http://www.googlefight.com/cgi-bin/compare.pl?q1=microsoft&amp;q2=linux&amp;B1=Make+a+fight%21&amp;compare=1&amp;langue=us">Microsoft</a>. Try this simple recipe query to <a href="http://www.researchbuzz.org/archives/001404.shtml">cook</a> with Google, or see results in 3D with <a href="http://www.touchgraph.com/TGGoogleBrowser.html">GoogleBrowser</a>. Cape gives you search <a href="http://capescience.capeclear.com/google/index.shtml">results by Email</a>. They are using Google&#8217;s Web <a href="http://www.google.com/apis/">API</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/google_goggles.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

