<?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>The Agitationist &#187; tutorials</title>
	<atom:link href="http://agitationist.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://agitationist.com</link>
	<description>served irregularly for your edification</description>
	<lastBuildDate>Fri, 29 Jan 2010 22:25:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to: Display AdSense Ads to Search Engines Visitors Only</title>
		<link>http://agitationist.com/how-to-display-adsense-ads-to-search-engines-visitors-only</link>
		<comments>http://agitationist.com/how-to-display-adsense-ads-to-search-engines-visitors-only#comments</comments>
		<pubDate>Fri, 27 Nov 2009 18:19:23 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[geekery]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=630</guid>
		<description><![CDATA[The problem. It’s a known fact that regular visitors don’t click on ads. Those who do click on ads are, 90% of the time, visitors coming from search engines.
Another problem is Google’s “smart pricing.” Being smart priced means that your click-through rate (CTR) is low and the money you earn per click is divided by [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The problem</strong>. It’s a known fact that regular visitors don’t click on ads. Those who do click on ads are, 90% of the time, visitors coming from search engines.</p>
<p>Another problem is Google’s “smart pricing.” Being smart priced means that your click-through rate (CTR) is low and the money you earn per click is divided by between 2 and 10. For example, if a click would normally earn you $1.00, with smart pricing it could earn you as little as $0.10. Painful, isn’t it? Happily, this solution displays your AdSense ads to search engine visitors only, which means more clicks and a higher CTR.</p>
<p><strong>The solution</strong>.</p>
<ol>
<li>Open the <em>functions.php</em> file in your theme.</li>
<li>Paste the following code in it:
<pre class="brush: php;">function scratch99_fromasearchengine(){
  $ref = $_SERVER['HTTP_REFERER'];
  $SE = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.');
  foreach ($SE as $source) {
    if (strpos($ref,$source)!==false) return true;
  }
  return false;
}</pre>
</li>
<li> Once done, paste the following code anywhere in your template where you want your AdSense ads to appear. They’ll be displayed only to visitors coming from search engine results:
<pre class="brush: php;">if (function_exists('scratch99_fromasearchengine')) {
  if (scratch99_fromasearchengine()) {
    INSERT YOUR CODE HERE
  }
}</pre>
</li>
</ol>
<p><strong>Code explanation</strong>. This hack starts with the creation of a function called <code>scratch99_fromasearchengine()</code>. This function contains a <code>$SE</code> array variable in which you can specify search engines. You can easily add new search engines by adding new elements to the array.</p>
<p>The <code>scratch99_fromasearchengine()</code> then returns <code>true</code> if the visitor comes from one of the search engines containing the <code>$SE</code> array variable.<br />
<span style="color: #000000;"><br />
</span> <span style="color: #000000;">Sources: <a rel="nofollow" href="http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors" target="_blank">1</a>, <a rel="nofollow" href="http://www.wprecipes.com/how-to-display-adsense-to-search-engines-visitors-only" target="_blank">2</a>, <a rel="nofollow" href="http://www.smashingmagazine.com/2009/01/07/10-killer-wordpress-hacks/" target="_blank">3</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/how-to-display-adsense-ads-to-search-engines-visitors-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Keywords Part 5: Finalizing</title>
		<link>http://agitationist.com/google-keywords-part-5-finalizing</link>
		<comments>http://agitationist.com/google-keywords-part-5-finalizing#comments</comments>
		<pubDate>Thu, 19 Feb 2009 16:38:11 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[Google keywords]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=492</guid>
		<description><![CDATA[Class is back in session &#8211; please take your seats.
After the last part of our Google keywords series, you should now have a spreadsheet of possible keywords for your site, sorted by &#8220;keyword difficulty&#8221;, with your best targets marked in bold. What these represent are your best opportunities to appear in high positions in the search engine [...]]]></description>
			<content:encoded><![CDATA[<p>Class is back in session &#8211; please take your seats.</p>
<p>After the <a href="http://agitationist.com/google-keywords-part-4-targeting">last part</a> of our <a href="http://agitationist.com/category/google-keywords">Google keywords series</a>, you should now have a spreadsheet of possible keywords for your site, sorted by &#8220;keyword difficulty&#8221;, with your best targets marked in bold. What these represent are your best opportunities to appear in high positions in the search engine results pages (SERPs) for these keywords. When a user searches on your chosen keyword, you want to appear as high in the results as possible.</p>
<p>What we&#8217;ve done so far is narrow down your possible Google keywords to the ones with the best ratio of competitive pages to search traffic. Lots of search traffic and few competing pages = big, fat target.</p>
<p>The next few steps take a bit of work and some creative thinking, but they&#8217;re worth it.</p>
<h3>Keyword Relevance</h3>
<p>Now we want to take the possible Google keywords we&#8217;ve identified, and find the ones that will work well with your site. Look at the bolded keywords in your spreadsheet &#8211; are any of them already prominent in your site? Is one in the title? Is one the subject of many pages/posts? Is one a synonym for something you write about frequently? Answer these questions for each of the top keywords in your spreadsheet, and mark the ones most relevant to your site&#8217;s content in red. Now we&#8217;ll check the answers more scientifically.</p>
<h3>Current Site Indexing</h3>
<p>Before we proceed, we need to make sure your site has been indexed by Google, especially if it is relatively new. You can check by following this link, and then substituting the URL of your actual site for &#8220;yoursite.com&#8221;:</p>
<p><a href="http://www.google.com/search?q=site%3Ahttp%3A%2F%2Fyoursite.com" target="_blank">Google search: site:http://yoursite.com</a></p>
<p>If there are no results for your site, you haven&#8217;t yet been indexed. If that is the case, take these two steps:</p>
<ol>
<li>Go to <a href="http://www.google.com/addurl/?continue=/addurl">Add Your URL to Google&#8217;s Index</a> and add your URL. You&#8217;ll have to wait a while for it to show up, so the sooner the better.</li>
<li>If you have FTP access to your site&#8217;s files, make sure you have a file called robots.txt in your root folder. If you want your entire site indexed, its contents should read <em>only</em> as follows:<br />
<blockquote><p><span style="font-family: -webkit-monospace;">User-Agent: *</span><br />
<span style="font-family: -webkit-monospace;">Allow: /</span></p></blockquote>
<p>If you don&#8217;t have access, don&#8217;t worry &#8211; this is generally set by default anyway.</li>
</ol>
<p>If there are results for your site in the above search, you have already been indexed, which means we can now check the Google keywords you&#8217;ve marked in red.</p>
<h3>Current Keyword Indexing</h3>
<p>Return to the site-specific search, <a href="http://www.google.com/search?q=site%3Ahttp%3A%2F%2Fyoursite.com" target="_blank">site:http://yoursite.com</a>, and add your first keyword phrase (in quotation marks) to the front of the search query. For example, if the first red keyword in your spreadsheet is &#8220;merchant services&#8221;, search Google for <a href="http://www.google.com/search?hl=en&amp;q=%22merchant+services%22+site%3Ahttp%3A%2F%2Fyoursite.com" target="_blank">&#8220;merchant services&#8221; site:http://yoursite.com</a>.</p>
<p>If the results are accompanied by a message that &#8220;In order to show you the most relevant results, we have omitted some entries very similar to the 5 already displayed,&#8221; click the link to &#8221;repeat the search with the omitted results included&#8221;.</p>
<p>Note the number of results. Near the top of the page, look for a line like this: &#8220;Results <strong>1</strong> - <strong>6</strong> of <strong>6</strong> from <strong>yoursite.com</strong> for <strong>&#8220;merchant services</strong>&#8220;. Create a new column in your spreadsheet, and type in the number of results next to your keyword. Repeat this process with all of those you&#8217;ve marked in red.</p>
<p>Now you know exactly how many times you&#8217;re indexed for each of these possible Google keywords. If you&#8217;re already indexed many more times for one or two, these are natural targets, since you&#8217;re mentioning them frequently already. If this happens, put a box around these in your spreadsheet to mark them.</p>
<h3>The Dirty Work</h3>
<p>If no natural targets emerge, start breaking up your keyword phrases, and repeating the search on the most important word. In the example above, you&#8217;d try just &#8220;merchant&#8221;. If you get more results, consider whether the references to &#8220;merchant&#8221; in your site could be tweaked to use the keyword &#8220;merchant services&#8221; instead or in addition.</p>
<p>If you&#8217;re still not coming up with results, look at your red targets, and try to think if you&#8217;ve used any synonyms on your site. Can you replace them with the keyword version, or add the Google keywords into the same content without disrupting the flow of your writing? If this is feasible for your site, repeat the above search using these currently-used synonyms. If you get results, mark the spreadsheet appropriately, with a note next to the results column indicating what synonym you searched on.</p>
<p>Repeat this until you get two to three keywords marked in boxes. Rank these according to difficulty, general relevance to your site, and current indexing, and determine a top keyword, a second and possibly a third. These will be your <strong>final targets</strong>.</p>
<p>Next time, we will integrate the selected Google keywords seamlessly and elegantly into your content and site design.</p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/google-keywords-part-5-finalizing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Keywords Part 4: Targeting</title>
		<link>http://agitationist.com/google-keywords-part-4-targeting</link>
		<comments>http://agitationist.com/google-keywords-part-4-targeting#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:05:02 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[Google keywords]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=466</guid>
		<description><![CDATA[In the last entry in our series on Google keywords, we talked about assembling a list of potential keyword targets. Today we&#8217;ll move on to the next phase, deciding which keywords to target.
By now, you should have repeated the steps in part three until you have a long list of possibilities listed in your spreadsheet. [...]]]></description>
			<content:encoded><![CDATA[<p>In the <a href="http://agitationist.com/google-keywords-part-3-ideas">last entry</a> in our series on <a href="http://agitationist.com"><strong>Google keywords</strong></a>, we talked about assembling a list of potential keyword targets. Today we&#8217;ll move on to the next phase, deciding which keywords to target.</p>
<p>By now, you should have repeated the steps in <a href="http://agitationist.com/google-keywords-part-3-ideas">part three</a> until you have a long list of possibilities listed in your spreadsheet. Depending on your subject, try to get to a list of at least 20 possible keywords (remember that the term &#8220;keyword&#8221; refers to a word <em>or</em> phrase).</p>
<p>Now return to Firefox, and open up your &#8220;<strong>Google keywords</strong>&#8221; bookmark folder in tabs, so that all the pages are open in one window.</p>
<h2>Google Keywords Research</h2>
<p>Copy the first keyword from your spreadsheet.</p>
<p>First we&#8217;ll check for additional related terms based on search traffic. Go to the second tab in your Firefox window, the <a href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google Adwords Keyword Tool</a>. Paste in your Google Keywords <em>in quotation marks</em>, type in the CAPTCHA text if necessary, and click &#8220;Get keyword ideas&#8221; to see the results.</p>
<p>Next, in the &#8220;Match Type&#8221; dropdown menu, select &#8220;Exact&#8221;. Click the &#8220;Approx. Avg. Search Volume&#8221; header to sort by search popularity. Be sure to use the <em>average</em> search volume &#8211; this is a monthly average for the past year.</p>
<p>Look for additional related keywords with similar amounts of search traffic, and add these to your spreadsheet. Scroll down to &#8220;Additional keywords to consider&#8221; and look for additional related, popular keywords. Add these as well. Leave this window open, you&#8217;ll be returning here. If you are informed that you have been logged out upon returning, simply refresh the page.</p>
<h2>Assessing the Competition</h2>
<p>Click the &#8220;SEO for Firefox&#8221; icon in the bottom right of your Firefox window if it is grayed out, making sure it is activated. When your research session is over, be sure to turn if off again so that your IP isn&#8217;t banned for too much activity.</p>
<p>Now go to your third tab, Google search. Paste in your Google keywords <em>in quotation marks</em>, and click search. In the results, note all the additional information added by the SEO plug-in.</p>
<p>Look through the top 10 results for your keyword phrase, and check the first bit of added info, &#8220;PR&#8221;. This is the Google PageRank at the time of the last public update, denoting the &#8220;strength&#8221; of the page with a number from zero to 10. With some solid SEO and link building, you have a great shot at beating 0 &#8211; 2 ranked pages, a decent shot at 3 &#8211; 4, and 5 and up will be tough. Note an approximate average PR for your front page competition (figure the exact average if you like), and type this in the second column of your spreadsheet next to the keyword.</p>
<p>Next, go to the third tab, <a href="http://freekeywords.wordtracker.com/gtrends/" target="_blank">Wordtracker GTrends</a>. Paste in your Google keywords and click &#8220;Hit Me&#8221;. If your keyword appears in the results, click the graph-style icon and wait for the query to complete. This returns the number of competing sites for that keyword, and the approximate daily traffic to the number one page. Note Wordtracker&#8217;s recommendations. If you get one green checkmark, type an X in column three of your speadsheet. If you get two checkmarks, this is an excellent target, and place two X&#8217;s in your spreadsheet.</p>
<p>Go to tab four, the <a href="http://www.seologs.com/keyword-difficulty.html" target="_self">Keyword Difficulty Check Tool</a>. Paste and click submit. Note the difficulty rank that is returned &#8211; the lower the better. Type this number in the next column in your spreadsheet.</p>
<h2>Sorting the Results</h2>
<p>Repeat the above steps for all of your keywords. Now sort your Google keywords spreadsheet by the last column, the Keyword Difficulty rank, from lowest to highest. Look for the lowest difficulty rank, with the highest number of XX&#8217;s in the previous column, and the lowest average PR competition. These are your best opportunities to achieve a high ranking. Highlight these in bold and save your spreadsheet.</p>
<p>Next time, we&#8217;ll refine our list, and get more information about our selected Google Keywords. I know this seems like a lot of work, but stick with it &#8211; it will be worth it.</p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/google-keywords-part-4-targeting/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Keywords Part 3: Ideas</title>
		<link>http://agitationist.com/google-keywords-part-3-ideas</link>
		<comments>http://agitationist.com/google-keywords-part-3-ideas#comments</comments>
		<pubDate>Fri, 06 Feb 2009 17:44:00 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[Google keywords]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=438</guid>
		<description><![CDATA[Continuing our series on Google Keywords, today we&#8217;ll start assembling our list of potential targets.
Note: most information you&#8217;ll find on these techniques is about making money. The idea is to target Google keywords and then build a site around them, with the purpose of gaining traffic and raking in money. But I&#8217;m going to explain the reverse &#8211; taking [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing our series on <strong><a href="http://agitationist.com">Google Keywords</a></strong>, today we&#8217;ll start assembling our list of potential targets.</p>
<p>Note: most information you&#8217;ll find on these techniques is about making money. The idea is to target <strong>Google keywords</strong> and then build a site around them, with the purpose of gaining traffic and raking in money. But I&#8217;m going to explain the reverse &#8211; taking the site you have, finding the right keywords to target, and optimizing your site so that people organically find your content. However, these techniques can be adapted to either goal. Perhaps in the pdf version I&#8217;ll explain the money-making aspect as well, but for now let&#8217;s just get an audience for your site.</p>
<p>Note for linguists: in this arena, the term &#8220;keyword&#8221; can apply to a word <em>or</em> phrase, although it is singular. For example, we refer to &#8220;Italian sports cars&#8221; as a &#8220;keyword&#8221;.</p>
<p>Now, having assembled the tools described in <a href="http://agitationist.com/google-keywords-part-2-tools"><strong>part two of this series</strong></a>, you&#8217;re ready to do your research. First, brainstorming:</p>
<ol>
<li>Open up a fresh spreadsheet (pen and paper will do if necessary, but we&#8217;ll want to sort the results later).<br />
 </li>
<li>Place your cursor in the first cell on the second row (leaving the top row open to place headings later).<br />
 </li>
<li>Imagine you are asked the question by a stranger: &#8220;<strong>What is your web site about?</strong>&#8221; Answer this question in a short phrase. For example, &#8220;victorian furniture&#8221;, &#8220;1970s punk rock&#8221;, or &#8220;the meaning of life&#8221;. Type it in the box and hit return to move down one cell. If you think of several answers, repeat this as many times as necessary.<br />
 </li>
<li>Imagine this stranger asks you to <strong>be more specific</strong>. Enter your answers, for example, &#8220;late victorian furniture&#8221;, &#8220;1970s New York punk rock&#8221;, or &#8220;the meaning of life in Greek philosophy&#8221;. Get creative with phrasing, and think of terms you mention frequently.<br />
 </li>
<li>Now try to get <strong>even more specific</strong>, like &#8220;pseudo-oriental Victorian&#8221;, &#8220;1970&#8217;s Greenwich Village punk&#8221;, or &#8220;Aristotlean Nicomachean ethics&#8221;. Try to keep these phrases as short as possible. Do this for a few minutes, but don&#8217;t spend too much time. This is just the beginning, and we&#8217;ll refine our choices later.<br />
 </li>
<li>Save your spreadsheet as &#8220;<strong>Google keywords</strong>&#8221; or the title of your choice.<br />
 </li>
<li>Open up your site and look around. Were your answers accurate? Are you really writing about what you thought you were? Add more entries to your spreadsheet if more answers strike you.<br />
Now we&#8217;re ready to start using our toolbox.<br />
 </li>
<li>Open Firefox. In the toolbar, look for the &#8220;<strong>Google keywords</strong>&#8221; folder you created in <a href="http://agitationist.com/google-keywords-part-2-tools"><strong>part two of this series</strong></a>. Click this once, scroll down and click &#8220;Open All in Tabs&#8221;. Numerous tabs will load, containing all of your research tools.<br />
 </li>
<li>Go to the first tab, the <strong>Google Search-based Keyword Tool</strong>. This is actually a tool for advertisers, but it suits our purposes very well. Copy the first keyword from your spreadsheet, and paste in the &#8220;word or phrase&#8221; text field. Click &#8220;Find keywords&#8221;.</li>
<p>You may only get one or two results. If so, try <strong>removing a word</strong> from your query and clicking again. For example &#8220;late victorian furniture&#8221; returns one result, but &#8220;victorian furniture&#8221; returns 69.</p>
<p>Look down the list and see if any of the results might be reasonable answers to the question &#8220;What is your web site about?&#8221; If so, these are possible <strong>Google keywords</strong>.</p>
<li>Leave everything right where it is, and go to part four of this series, when published. There, we&#8217;ll talk about which of these are worth targeting and why.</li>
</ol>
<p>Again please note this post is 600 words long, and mentions &#8220;<strong>Google keywords</strong>&#8221; six times.</p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/google-keywords-part-3-ideas/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Keywords Part 2: Tools</title>
		<link>http://agitationist.com/google-keywords-part-2-tools</link>
		<comments>http://agitationist.com/google-keywords-part-2-tools#comments</comments>
		<pubDate>Wed, 04 Feb 2009 18:53:44 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[Google keywords]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=425</guid>
		<description><![CDATA[The next step in our continuing series on Google keywords consists of assembling the tools we&#8217;ll be using for research. This is very straightforward and easy, and we&#8217;ll be sticking with free tools, for those just getting started.

Download Firefox. This is not a matter of personal browser preference; it&#8217;s the only browser compatible with the [...]]]></description>
			<content:encoded><![CDATA[<p>The next step in our continuing series on <strong><a href="http://agitationist.com">Google keywords</a></strong> consists of assembling the tools we&#8217;ll be using for research. This is very straightforward and easy, and we&#8217;ll be sticking with free tools, for those just getting started.</p>
<ol>
<li><strong><a href="http://www.mozilla.com/firefox/" target="_blank">Download Firefox</a></strong>. This is not a matter of personal browser preference; it&#8217;s the only browser compatible with the tools we&#8217;ll be using to research and refine our <strong>Google keywords</strong>. The fact that it&#8217;s also the best browser around is coincidental.<br />
 </li>
<li><a href="http://tools.seobook.com/firefox/seo-for-firefox.html" target="_blank"><strong>Download the SEO For Firefox</strong></a> add-on. This browser extension will add all the research capabilities we need, and then some. Click &#8220;Install&#8221; when the dialog box opens, and then click &#8220;Restart Firefox&#8221; when you are given the option. When Firefox restarts, you&#8217;ll see an SEO icon in the lower right corner of the browser. Left- or control-click this, and choose &#8220;Options..&#8221;. <br />
 <br />
<img class="alignnone size-full wp-image-426" title="seoforfirefox" src="http://agitationist.com/wp-content/uploads/2009/02/seoforfirefox.gif" alt="" width="300" height="420" />      </p>
<p>In the <strong>SEO for Firefox preferences</strong>, uncheck &#8220;Enable/Disable SEO For Firefox&#8221;. Yes, we want this disabled by default until we turn it on. We&#8217;ll be setting this to automatically pull some information, so if we leave it on for normal browsing, we risk having our IP banned. We can activate it with one click when we need it.</p>
<p>For now, you can leave the next box, enable/disable of &#8216;nofollow&#8217; links unchecked.</p>
<p>Finally, in the &#8220;Mode&#8221; column, change &#8220;PR&#8221; and &#8220;Age&#8221; to &#8220;Automatic&#8221;. Everything else can remain as is. Close the Preferences window.</li>
<li>In the top Firefox menu, click &#8220;Bookmarks &gt; Organize Bookmarks..&#8221;. Click on &#8220;Bookmarks Toolbar&#8221;, and then in the drop-down menu above, choose &#8220;New Folder&#8230;&#8221;. Name this &#8220;<strong>Google keywords</strong>&#8220;, or the term of your choice. You&#8217;ll see the entry in your toolbar. If you don&#8217;t, click &#8220;View &gt; Toolbars &gt; Bookmarks Toolbar&#8221;.<br />
 </li>
<li><strong>Navigate to each of the following sites</strong> (it will be easiest to open the page you&#8217;re reading now in Firefox, so the links open there). Upon reaching each one, click &#8220;Bookmarks &gt; Bookmark This Page&#8221;. In the dialog box, look for &#8220;Folder&#8221;, and click the down arrow, choose the &#8220;<strong>Google keywords</strong>&#8221; folder you made in the previous step, and click &#8220;Done&#8221; to add the bookmark to that folder.Go to each of these pages, and bookmark into the new folder:
<p><a href="http://www.google.com/sktool/#keywords" target="_new">Google Search-based Keyword Tool</a><br />
<a href="https://adwords.google.com/select/KeywordToolExternal" target="_new">Google AdWords Keyword Tool</a><br />
<a href="http://www.google.com/search?q=%22%22" target="_new">Google Search (with quotation marks)</a><br />
<a href="http://freekeywords.wordtracker.com/gtrends/" target="_new">Wordtracker GTrends</a><br />
<a href="http://www.seologs.com/keyword-difficulty.html" target="_new">Keyword Difficulty Check Tool</a><br />
<a href="http://tools.seobook.com/keyword-tools/seobook/" target="_new">SEO Book Keyword Tool </a><br />
<a href="http://www.shareasale.com/r.cfm?b=129266&amp;u=322776&amp;m=7162&amp;urllink=&amp;afftrack=" target="_new">Nameboy Domain Name Generator</a><br />
<a href="http://www.gorank.com/seotools/ontology/" target="_new">Ontology Finder &#8211; Related Keywords Lookup Tool</a><br />
<a href="http://www.synonym.com" target="_new">Synonym.com</a>  </p>
<p>We&#8217;ll only be using Nameboy if we happen to need a domain name, but it&#8217;s good to have it in there just in case.</li>
<li>Finally, you will need to keep track of your research. I highly recommend using a spreadsheet program. There are a variety of them out there, including free, open-source choices. You won&#8217;t need to be a wizard with them for our purposes. All we&#8217;ll be doing is some entering and sorting.</li>
</ol>
<p>That&#8217;s it for today. Next time, down to business.</p>
<p>Note: this post is exactly 500 words, and mentions &#8220;<strong>Google keywords</strong>&#8221; five times. Are you getting the idea?</p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/google-keywords-part-2-tools/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Keywords Part 1: Introduction</title>
		<link>http://agitationist.com/google-keywords-part-1-introduction</link>
		<comments>http://agitationist.com/google-keywords-part-1-introduction#comments</comments>
		<pubDate>Tue, 03 Feb 2009 18:53:43 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[Google keywords]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=416</guid>
		<description><![CDATA[


After some deliberation, I&#8217;ve decided to write a series about how to research and use Google keywords. Quite frankly, I was unsure whether to share this information. But I don&#8217;t think something so simple should be reserved for a circle of web &#8220;gurus&#8221; who happened to stumble upon it, when everyone else could be benefitting. So [...]]]></description>
			<content:encoded><![CDATA[<div>
<div id="ectocontent">
<div>
<p>After some deliberation, I&#8217;ve decided to write a series about how to research and use <strong><a href="http://agitationist.com">Google keywords</a></strong>. Quite frankly, I was unsure whether to share this information. But I don&#8217;t think something so simple should be reserved for a circle of web &#8220;gurus&#8221; who happened to stumble upon it, when everyone else could be benefitting. So I&#8217;m going to explain the research and use of <strong>Google keywords</strong> in the most straightforward way possible, for anyone who wants it. Eventually I&#8217;ll boil it down into a more formal &#8220;course&#8221; format, and put it up here as a pdf, but for now let&#8217;s just get it out there.</p>
<p>This series will be intended for the non-techie audience, so I&#8217;ll explain the terms I use in detail, in case you&#8217;re not familiar. If you are a tech type, please bear with me while I define them for the rest of the class. However, you may just learn something you don&#8217;t know, so try and stay awake.</p>
<p>Ready, class? Then we&#8217;ll begin.</p>
<p><strong>&#8220;Write about what you know.&#8221;</strong> It&#8217;s one of the most often repeated axioms of blogging, and writing in general.</p>
<p>Unfortunately on the web it&#8217;s not that simple. If &#8220;what you know&#8221; is something 10,000,000 other people are writing about too, no one will ever see your writing, and your efforts will be only for your own enjoyment.</p>
<p>You can be proud of your efforts all day long, and sit back enjoying your beautiful handiwork, but at some point it feels pretty empty if no one else ever sees it. And if you&#8217;re trying to promote a business of any kind, attaining an audience is the difference between putting food on the table and hitting the bread line.</p>
<p>First the bad news: Even if what you&#8217;re writing about only has a handful of competitors for people&#8217;s attention, if you come up at the bottom of <strong>Google&#8217;s search results</strong>, you&#8217;re out of luck. You simply will not get in front of an audience. If you&#8217;re writing the best site ever about &#8220;excellent wines of France&#8221;, but everyone is searching Google for &#8220;great French wines&#8221;, all the expertise in the world won&#8217;t put you at the top of the search results and get people to<strong> see your work</strong>.</p>
<p>Now the good news: with a little research into <strong>Google keywords</strong>, you can make some minimal adjustments and vastly improve your search engine performance.</p>
<p>The basic concept here is to find out what your desired audience is looking for, and make sure you show up right in front of their face when they do.</p>
<h3>So why &#8220;Google keywords&#8221;?</h3>
<p>Though I&#8217;m using the brand name &#8220;Google&#8221;, this really refers to any search engine. Google simply happens to be the ubiquitous tool at this point in time, so I&#8217;m using it as a term of convenience. But you can be sure that if you&#8217;re successful optimizing for <strong>Google keywords</strong>, you&#8217;ll have little difficulty in Yahoo, MSN Live, or anywhere else.</p>
<h3>OK, why &#8220;keywords&#8221;?</h3>
<p>Everything that happens on the web is driven by keywords. They are the fuel the Internet runs on. Unless you happen to simply jump from link to link and never use a search engine, you&#8217;re using keywords every time you open a browser. And so is everyone else. If you want a whole lot of those eyes on your page, the best way is to optimize your site&#8217;s <strong>Google keywords</strong>. I&#8217;ll explain them in depth as this series continues, and we&#8217;ll pick them apart pretty thoroughly.</p>
<h3>How is this different from SEO?</h3>
<p>I said this was for non-techies, so your question is out of line, buddy. However, SEO (search engine optimization) is part of the method I&#8217;ll show you, but we&#8217;ll be going further. We will use aspects of SEO, but in some ways we&#8217;ll be doing the opposite: reverse-engineering SEO, if you will. </p>
<p>OK, before we get too far into buzzwords, let&#8217;s end class for today. Before leaving your desk, please note that this post is exactly 700 words long, and that I&#8217;ve used the term <strong>&#8220;Google Keywords&#8221; </strong>exactly seven times. The significance will become evident as we continue.</p>
<p>If you haven&#8217;t already, please <a href="http://feedproxy.google.com/Agitationist"><strong>subscribe to the RSS feed</strong></a> to be notified when each new part is posted.</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/google-keywords-part-1-introduction/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Back Up your Site in cPanel (Video Tutorial)</title>
		<link>http://agitationist.com/how-to-backup-your-site-in-cpanel-video-tutorial</link>
		<comments>http://agitationist.com/how-to-backup-your-site-in-cpanel-video-tutorial#comments</comments>
		<pubDate>Thu, 29 Jan 2009 19:03:08 +0000</pubDate>
		<dc:creator>Agitationist</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[useful]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://agitationist.com/?p=404</guid>
		<description><![CDATA[Here&#8217;s a quick video tutorial on backing up your self-hosted blog or website using the cPanel administration interface.
Required:
Hosting account with cPanel interface
Optional:
Addition FTP server for remote backup
YouTube made it a bit fuzzy, so I recommend full-screen viewing. If anyone has tips for getting YouTube to display closer to the original quality, please leave a comment [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick video tutorial on backing up your self-hosted blog or website using the cPanel administration interface.</p>
<p><strong>Required:</strong></p>
<p><a href="http://www.midphase.com/newaff/redir.pl?a=0.916026225154386&amp;c=2&amp;creative=Banners|ANHosting|TextLinks|TextLink&amp;redirURL=" target="_blank"><strong>Hosting account</strong></a> with cPanel interface</p>
<p><strong>Optional:</strong></p>
<p>Addition FTP server for remote backup</p>
<p><del datetime="2009-01-29T22:15:58+00:00">YouTube made it a bit fuzzy, so I recommend full-screen viewing. If anyone has tips for getting YouTube to display closer to the original quality, please leave a comment below.</del> <strong>Update</strong>: I&#8217;ve switched to Vimeo &#8211; the quality is considerably better.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3008554&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=3008554&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<a href="http://vimeo.com/3008554">How to Back Up your Site in cPanel</a> from <a href="http://vimeo.com/user1229474">The Agitationist</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://agitationist.com/how-to-backup-your-site-in-cpanel-video-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
