<?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>Another Wordpress Blog &#187; SEO</title>
	<atom:link href="http://money.bigbucksblogger.com/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://money.bigbucksblogger.com</link>
	<description></description>
	<lastBuildDate>Mon, 05 Jul 2010 17:53:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Two tips to avoid Duplicate Content: Robots.txt or Meta Robots WordPress Plugin</title>
		<link>http://money.bigbucksblogger.com/two-tips-to-avoid-duplicate-content-robotstxt-or-meta-robots-wordpress-plugin/</link>
		<comments>http://money.bigbucksblogger.com/two-tips-to-avoid-duplicate-content-robotstxt-or-meta-robots-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 16:07:23 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/two-tips-to-avoid-duplicate-content-robotstxt-or-meta-robots-wordpress-plugin/</guid>
		<description><![CDATA[Do you use tags? Did you know they can bash your Google Page rank? But you can fix that?

Reading Graywolf&#8217;s blog, I was reminded to watch out for duplicate content issues and Wordpress.   It turns out that the wordpress default doesn&#8217;t nofollow &#8220;tags&#8221;.
Because bloggers who tag posts tend to create zillions of tags, [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use tags? Did you know they can bash your Google Page rank? But you can fix that?</p>
<div style="float:right; margin:2px 2px 2px 2px;"><!--adsense#200by200--></div>
<p>Reading <a href="http://www.wolf-howl.com/blogs/wordpress-the_tags-is-missing-nofollow/">Graywolf&#8217;s blog,</a> I was reminded to watch out for duplicate content issues and Wordpress.   It turns out that the wordpress default doesn&#8217;t nofollow &#8220;tags&#8221;.</p>
<p>Because bloggers who tag posts tend to create zillions of tags, they often end up with exactly one post in a many individual &#8220;/tag/&#8221; directories. This nearly always create duplicate content, which is not a good thing.</p>
<p>You&#8217;ll want to fix this; it&#8217;s fairly easy. I fixed the issue by modifying my <a href="http://www.robotstxt.org/wc/robots.html">robots.txt</a> file.</p>
<h3>What&#8217;s a Robot.txt file?</h3>
<p>The robots.txt file is a plain text file you place in your root directory. It tells robots not to crawl specific files thereby eliminating the duplicate content issue.  </p>
<p>The robot.txt file for BigBucksBlogger now reads like this:<span id="more-468"></span></p>
<p>User-agent: *<br />
Disallow: /*.js<br />
Disallow: /*.png<br />
Disallow: /*trackback<br />
Disallow: /*.css<br />
Disallow: /*/feed/$<br />
Disallow: /*/feed/rss/$<br />
Disallow: /*/trackback/$<br />
Disallow: /tag/<br />
Disallow: /author/<br />
Disallow: /comments/<br />
Disallow: /wp-content/plugins/<br />
Disallow: /wp-content/cache/<br />
Disallow: /wp-content/themes/<br />
Disallow: /wp-admin/<br />
Disallow: /*?*<br />
Disallow: /*?</p>
<p>I&#8217;m keeping robots out of my tag, author, comments and wp-admin directories, out of a number of subdirectories in wp-contents, and out of javascript, png, css, trackback files.  </p>
<p>Because I don&#8217;t use the Wordpress default permalinks, I&#8217;ve also blocked robots from crawling addresses with query strings.  Do this only if you aren&#8217;t using query strings in your permalinks otherwise, you&#8217;ll block the &#8216;bots from your whole site. You <i>really</i> don&#8217;t want to do that.  Permitting the bot to index duplicate content is bad; indexing no content is worse. </p>
<p>I could block the bots from other files, but there is generally no need to block the robots from any file that is never linked.  Also, you never want to block robots from your index.php file, sitemap or &#8216;.php&#8217; files in general.</p>
<p>Once you create the robot.txt file, just save it with the name robots.txt file and drop it in my root directory. </p>
<h3>Should you block from categories?</h3>
<p>I <i>don&#8217;t</i> block bots from my categories directory because I only post excerpts on those pages.  So, I don&#8217;t worry too much about duplicate content on those pages.  In fact, since I find the &#8216;bots often index those and bring me traffic, I want the &#8216;bots to crawl those. (I am planning to change things to post 10 excerpts per page; I think that will make it <i>easier</i> for people who look at categories to find what they want to find.)</p>
<p>If you run full articles in your categories, you may wish to block &#8216;bot from those. The same holds for all your archives.  (I&#8217;m going to be modifying my template to show nothing but excerpts at all addresses <i>except</i> the front page and the individula posts. This should prevent a lot of duplicate content issues without the need to block &#8216;bots.)</p>
<h3>Is there anything you can do to avoid duplicate content?</h3>
<p>Sure. In fact, there is a great <a href="http://www.joostdevalk.nl/wordpress/meta-robots-wordpress-plugin/">Meta Robots WordPress plugin</a> available that lets you tailor no-follows on your blog.  One of the options is adding nofollow metatags to the headers of files in your &#8220;tag&#8221; directories. This will eliminate the duplicate content penalty as well.</p>
<p>Using the plugin also permits you to precisely tailor link-juice flow around your blog.  I&#8217;ll be using this soon and explaining many of my &#8220;nofollow&#8221; decisions after I install the plugin.</p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/two-tips-to-avoid-duplicate-content-robotstxt-or-meta-robots-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funny Google PR Fallout: Advertisers Requesting Posties To REMOVE Links.</title>
		<link>http://money.bigbucksblogger.com/funny-google-pr-fallout-advertisers-requesting-posties-to-remove-links/</link>
		<comments>http://money.bigbucksblogger.com/funny-google-pr-fallout-advertisers-requesting-posties-to-remove-links/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 18:28:21 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Monetize]]></category>
		<category><![CDATA[PayPerPost]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/funny-google-pr-fallout-advertisers-requesting-posties-to-remove-links/</guid>
		<description><![CDATA[In the unexpected danger category: If you pay for links, you may find a few link sellers will refuse to remove them even if you ask!  Seriously, the Postie Board thread started by SeeKim, a postie, who writes: 
I just got an email from an advertiser wanting me to remove a post from September [...]]]></description>
			<content:encoded><![CDATA[<p>In the unexpected danger category: If you pay for links, you may find a few link sellers will refuse to remove them even if you ask!  Seriously, the Postie Board thread started by <a href="http://boards.payperpost.com/viewtopic.php?t=9217&#038;postdays=0&#038;postorder=asc&#038;start=0">SeeKim,</a> a postie, who writes: </p>
<blockquote><p>I just got an email from an advertiser wanting me to remove a post from September 13.</p>
<p>1. What would be the logic behind that?<br />
2. Can I delete posts, and if so, how old do they need to be?</p></blockquote>
<div style="float:right; margin:2px 2px 2px 2px;"><!--adsense#200by200--></div>
<h3>Why ask to remove the link? </h3>
<p>Theoretically, the advertiser was walloped by Google for paid links, and is trying to correct the issue.  They are now writing posties asking them to remove posts, as required to get Google to consider re-inclusion in search results.</p>
<h3>Will Posties remove the links?</h3>
<p>Probably.  Few want to screw over their paying customers.</p>
<p>Still, the responses can be a bit funny. Here&#8217;s a tongue-in-cheek quip:</p>
<blockquote><p>&#8220;*chuckle* . wonder if they would pay you to remove it Wink&#8221;</p></blockquote>
<p>Ouch!  And who is to say it&#8217;s entirely unfair?</p>
<p>Here&#8217;s a refusal:</p>
<blockquote><p>[...] the say they don&#8217;t want links from blogs anymore. Well&#8230;&#8230;&#8230;..I&#8217;m a tough love bitty, and my post is good and I don&#8217;t delete content.</p></blockquote>
<p>So, I guess if you pay for links in content, you may lose control! </p>
<p>Two other posties suggest additional evil spins on the request: </p>
<blockquote><p>A funny/evil thing to do would be to change the links to a competitor! </p></blockquote>
<blockquote><p>That would be a smarter choice, because if I was an evil competitor, I would nicely start emailing all the posties to get rid of the post of my competitor Twisted Evil</p></blockquote>
<p>Which prompts at least three Posties to point out that such requests should be funneled through PPP. After all, how is the Postie to verify who is asking them to remove the links?!  </p>
<p>Presumably,  PPP will figure out a procedure to deal with these novel requests. Who&#8217;d a thunk <i>this</i> would happen? <img src='http://money.bigbucksblogger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/funny-google-pr-fallout-advertisers-requesting-posties-to-remove-links/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ten Google Page Rank Haikus</title>
		<link>http://money.bigbucksblogger.com/ten-google-page-rank-haikus/</link>
		<comments>http://money.bigbucksblogger.com/ten-google-page-rank-haikus/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 13:51:40 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/ten-google-page-rank-haikus/</guid>
		<description><![CDATA[An advertiser paid Venomous Kate to run a haiku contest mentioning Google.  Naturally I entered! Then, I wrote  more haikus. 

Google Bomb Haiku
Dave Airey&#8217;s contest
created a Google bomb
then he diffused it.


Google vs. Andy Haiku
Google slapped Andy:
Sponsored posts are a no-no
even if they&#8217;re good.


Page Rank Zero Haiku
Google ranks dancing.
My page rank is still zero,
though [...]]]></description>
			<content:encoded><![CDATA[<p>An advertiser <i>paid</i> <a href="http://www.electricvenom.com/?p=9162#comment-83365">Venomous Kate</a> to run a haiku contest mentioning Google.  Naturally I entered! Then, I wrote  more haikus. </p>
<p><center><br />
<u><a href="http://www.davidairey.com/how-i-reversed-my-google-ranking-penalty/">Google Bomb Haiku</a></u><br />
Dave Airey&#8217;s contest<br />
created a Google bomb<br />
then he diffused it.<br />
</center></p>
<p><center><br />
<u><a href="http://andybeard.eu/2007/10/penalty-confirmed-but-i-dont-sell-pagerank.html">Google vs. Andy Haiku</a></u><br />
Google slapped Andy:<br />
Sponsored posts are a no-no<br />
even if they&#8217;re good.<br />
</center></p>
<p><center><br />
<u>Page Rank Zero Haiku</u><br />
Google ranks dancing.<br />
My page rank is still zero,<br />
though I have back links.<br />
</center></p>
<p><center><br />
<u>&#8216;Bot food Haiku</u><br />
Content for people<br />
that&#8217;s what Google says it wants.<br />
(Don&#8217;t forget sitemaps.)<br />
</center></p>
<p><center><br />
<u><a href="http://www.caroline-middlebrook.com/blog/are-you-focused-on-results-or-obsessing-over-meaningless-numbers-pagerank/"> Zen Master Haiku</a></u><br />
Does Page Rank matter?<br />
<a href="http://www.doshdosh.com/google-pagerank-doesnt-matter/">Zen master, Maki, says no</a>;<br />
meanwhile, others fret.<br />
</center></p>
<p><center><br />
<u><a href="http://andybeard.eu/2007/10/google-pagerank-joke-of-the-blogosphere.html">Google Joke Haiku</a></u><br />
Is page rank a joke?<br />
Many bloggers are laughing;<br />
others are sobbing.<br />
</center></p>
<p><center><br />
<u><a href="http://www.volodymyrzablotskyy.com/evil-google/">Bad neighborhood Haiku</a></u><br />
Vlad says don&#8217;t link me.<br />
I&#8217;m in a bad neighborhood.<br />
your rank could get slashed!<br />
</center></p>
<p><center><br />
<u><a href="http://www.mattcutts.com/blog/how-to-report-paid-links/">Nofollow Haiku</a></u><br />
Blog with abandon!<br />
But never post a paid link<br />
(without nofollow.)<br />
</center></p>
<p><center><br />
<u>Google Page Rank Haiku</u><br />
Google rules the net.<br />
I watch my page rank tumble;<br />
My tears fall like rain.<br />
</center></p>
<p><center><br />
<u>Matt Cutts Haiku</u><br />
Matt Cutts of Google,<br />
mysteriously silent.<br />
Please, explain it all!<br />
</center></p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/ten-google-page-rank-haikus/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>&#8220;The Tampon Blog&#8221; MEETS Blogrush Quality Standards?!</title>
		<link>http://money.bigbucksblogger.com/the-tampon-blog-meets-blogrush-quality-standards/</link>
		<comments>http://money.bigbucksblogger.com/the-tampon-blog-meets-blogrush-quality-standards/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 20:59:28 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/the-tampon-blog-meets-blogrush-quality-standards/</guid>
		<description><![CDATA[Evidently, John Reese announced he&#8217;s purged all the bad blogs from Blogrush: Banned bloggers were sent email that began:
 We regret to inform you that your BlogRush Account Is Currently INACTIVE.  Your blog(s) did not pass our Quality Review criteria. You will find instructions below for making your account active again.  You will [...]]]></description>
			<content:encoded><![CDATA[<p>Evidently, <a href="http://ez-onlinemoney.com/blog/blogging/gurus-getting-bashed-by-the-little-guy-another-blogrush-post-dont-puke/">John Reese</a> announced he&#8217;s <a href="http://www.warriorforum.com/forum/topic.asp?TOPIC_ID=192405">purged all the bad blogs</a> from Blogrush: <a href="http://www.seopedia.org/internet-marketing-and-seo/blogrush-is-a-scam/">Banned bloggers</a> were sent email that began:</p>
<blockquote><p> We regret to inform you that your BlogRush Account Is Currently INACTIVE.  Your blog(s) did not pass our Quality Review criteria. You will find instructions below for making your account active again.  You will notice that <em>the widget no longer loads on your pages</em> — please remove the BlogRush code from your blog for now.</p></blockquote>
<p>Having discovered <a href="http://money.bigbucksblogger.com/dear-john-reese-are-tampon-sample-hobbies/">&#8220;The Tampon Blog&#8221;</a> through BlogRush, I was curious to see if it got banned.  </p>
<p><center><a href='http://money.bigbucksblogger.com/the-tampon-blog-meets-blogrush-quality-standards/tampon-blog-made-the-cut/' rel='attachment wp-att-444' title='Tampon Blog Made the Cut'><img src='http://money.bigbucksblogger.com/wp-content/uploads/2007/10/tamponblogoct22.gif' alt='Tampon Blog Made the Cut' /></a></center></p>
<p>Behold! <a href="http://www.freegrabber.com/?s=Tampon" rel="nofollow">&#8220;The Tampon Blog&#8221; </a> appears to <i>meet</i> the Blogrush Quality guidelines.  Here&#8217;s a screen shot of  The Blogrush Widget which still displays <i>and functions!</i></p>
<p>What type of blogs got banned? Blogs like <a href="http://www.techipedia.com/2007/deactivated-by-blogrush/">Tamar Weinberg&#8217;s blog</a> (for not displaying the widget), <a href="http://www.seopedia.org/internet-marketing-and-seo/blogrush-is-a-scam/">SEO Pedia</a>, <a href="http://www.johncow.com/banned-from-blogrush/">John Cow</a>, <a href="http://www.steve-olson.com/banned-by-blogrush/">Steve Olson</a>, <a href="http://www.bfreedom.com/2007/10/22/blogrush-cancel-service/">Ramblings of an Affiliate Marketer</a>, <a href="http://www.ryanjparker.net/i-failed-blogrushs-quality-guidelines/">Ryan Parker.net</a>, <a href="http://geologyjoe.blogspot.com/2007/10/blog-rush-boycott-call.html">Geology Joe</a>, <a href="http://dawnandjimmy.us/blog/2007/10/22/rejected/">Dawn and Jimmy</a>, <a href="http://girlinshortshorts.blogspot.com/2007/10/dispatches-from-nanny-state.html">Just a Girl in  Short Shorts Talkin&#8217;</a> and <a href="http://seocog.blogspot.com/2007/10/how-stupid-is-blogrush.html">SEO Cog</a> who had previously tried, but failed, to quit Blogrush.</p>
<p>Hmmm&#8230;..<br />
<center><!--adsense--></center></p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/the-tampon-blog-meets-blogrush-quality-standards/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Who Doesn&#8217;t Love Daegan Spam? Or &#8220;Delete to Avoid a Google Penalty&#8221;</title>
		<link>http://money.bigbucksblogger.com/who-doesnt-love-daegan-spam-or-delete-to-avoid-a-google-penalty/</link>
		<comments>http://money.bigbucksblogger.com/who-doesnt-love-daegan-spam-or-delete-to-avoid-a-google-penalty/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 15:25:49 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/who-doesnt-love-daegan-spam-or-delete-to-avoid-a-google-penalty/</guid>
		<description><![CDATA[Fantastic! Someone thinks my post is fantastic!!  See?
Daegan wrote a fantastic post today on “Dear John Reese: Are Tampon Sample â
Admittedly, the author is a bit muddled about my name, but they dropped me a link. Isn&#8217;t that exciting?! &#8230;Well&#8230;.No.  I know if I leave the trackback, my blog risks a Google penalty! [...]]]></description>
			<content:encoded><![CDATA[<p><em>Fantastic!</em> Someone thinks my post is <em>fantastic!!</em>  See?</p>
<blockquote><p>Daegan wrote a <em>fantastic</em> post today on “Dear John Reese: Are Tampon Sample â</p></blockquote>
<p>Admittedly, the author is a bit muddled about my name, but they dropped me a link. <em>Isn&#8217;t that exciting?! </em>&#8230;Well&#8230;.No.  I know if I leave the trackback, my blog <strong>risks a Google penalty</strong>! </p>
<div style="float:right; margin:2px 2px 5px 2px;"><!--adsense#200by200--></div>
<p>That trackback will soon link into a <a href="http://www.affiliatewatcher.com/will-linking-to-john-chow-dot-com-cause-your-site-to-be-penalized-by-google/">&#8220;bad neighborhood&#8221;.</a> If you read further, you&#8217;ll discover why out-link to bad neighborhood&#8217;s could cause Google&#8217;s algorithm to suspect a blogger of <a href="http://searchengineland.com/071007-173841.php">posting paid links resulting in Google penalty!</a> </p>
<h3>But first: How to identify &#8220;Daegan Spam&#8221;:</h3>
<ol>
<li>A trackback will quote some of your post, nearly always attributing your words to someone else. I&#8217;ve been called &#8220;Daegan&#8221;, &#8220;AnnPlugged&#8221; and a variety of other names.</li>
<li>Often, the &#8220;Blog&#8221; consists of nothing but <em>very, very</em>  short quotes. They don&#8217;t violate copyright and won&#8217;t cause you duplicate content issues. This may lead you to shrug it off and permit the trackback. </li>
<li>On some blogs &#8212;  when the spam is fresh&#8211;  the collection of links are <em>sort of interesting</em>.
<p>For example, today, a link lead me to a forum where someone advertised a LinkShield Link Protection, a service that will cloak affiliate links.  That&#8217;s a type of product I might want to learn more about.  </li>
</ol>
<p>So, if you are aware of the danger, the spam is pretty easy to identify.  Yet, it seems innocuous doesn&#8217;t it? </p>
<h3>How could a link to that blog result in a Google penalty?</h3>
<p>As the spammy trackback ages, the blog content becomes <i>truly</i> spammy.  <a href="http://ideahustle.com/google/2007/10/08/eliminate-duplicate-content-canonical-url-fixer-plugin/" rel="nofollow">Idea Hustle</a>, which originally left a trackback on my Duplicate Content Plugin, now redirects to a probably worthless paintball directory site, which could become <i>anything</i> in future. </p>
<p>If I leave this link in place and allow it to &#8220;follow&#8221;, I suspect I will soon be linking <i>into</i> into a site Google considers to fall in a &#8220;bad neighborhood&#8221;.  </p>
<p>That&#8217;s bad for me because we know:</p>
<ol>
<li>Google&#8217;s algorithm examines what <i>we link</i> to determine our trust and page ranks. </li>
<li>That paintball link look very spammy; after all, bloggers are often paid to link to these sorts of products.</li>
<li><a href="http://www.davidairey.com/how-i-reversed-my-google-ranking-penalty/">Google has been penalizing</a> even very good sites for anything <a href="http://andybeard.eu/2007/10/penalty-confirmed-but-i-dont-sell-pagerank.html"><i>Google</i> considers or suspect to be a paid link.</a></li>
</ol>
<p>So, clearly we need to keep links like that off our blogs &#8212; especially if we &#8220;dofollow&#8221;.    Luckily, the solution is easy!</p>
<h3>Send &#8220;Daegen Spam&#8221; to Akismet!</h3>
<p>Sending these to Akismet gets it of my blog, and also protects all blogs from this sort of spam.</p>
<p>Better yet, even if I miss one or two of these,  I never actually give these places a dofollow.  L&#8217;s Linky Love won&#8217;t give the follow until they drop at least 3 trackbacks.   And after I get up date all my plugins (insert some cursing at WP here), I&#8217;m going to add a feature to LLL so I can periodically review sites that are currently &#8220;dofollowed&#8221;, that way, I can catch things retroactively. (I keep saying this&#8230; some day I&#8217;ll even do it! <img src='http://money.bigbucksblogger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/who-doesnt-love-daegan-spam-or-delete-to-avoid-a-google-penalty/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Adsense Videos: I&#8217;m giving it a try!</title>
		<link>http://money.bigbucksblogger.com/google-adsense-videos-im-giving-it-a-try/</link>
		<comments>http://money.bigbucksblogger.com/google-adsense-videos-im-giving-it-a-try/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 21:23:48 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/google-adsense-videos-im-giving-it-a-try/</guid>
		<description><![CDATA[Only 15 minutes ago, Google sent me an email suggesting I try their new adsense videos. I&#8217;d search for advice on how to best use this, but it&#8217;s new. So, presumably no one really knows. 
I decided to just test,  and slapped a video in here.

Watch the latest videos on YouTube.com

All I&#8217;m seeing in [...]]]></description>
			<content:encoded><![CDATA[<p>Only 15 minutes ago, Google sent me an email suggesting I try their new adsense videos. I&#8217;d search for advice on how to best use this, but it&#8217;s new. So, presumably no one really knows. </p>
<p>I decided to just test,  and slapped a video in here.<br />
<center></p>
<div id='_ytplayer_vjVQa1PpcFMbxGAu11s-DYxD2zLIhuF33Cs0rLUQ2ho='><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/vjVQa1PpcFMbxGAu11s-DYxD2zLIhuF33Cs0rLUQ2ho='></script></center></p>
<p>All I&#8217;m seeing in preview is a link to &#8220;Watch the latest videos on YouTube.com&#8221;.  Hhhmmm&#8230;. Maybe a video will appear after they search  my post?  Well, I need to attend my Thursday night knitting group.  If something cool appears, I guess I&#8217;ll see it when I get back. <img src='http://money.bigbucksblogger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/google-adsense-videos-im-giving-it-a-try/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Six Ways to Get More Links: Tips for a Niche Blog.</title>
		<link>http://money.bigbucksblogger.com/six-ways-to-get-more-links-tips-for-a-niche-blog/</link>
		<comments>http://money.bigbucksblogger.com/six-ways-to-get-more-links-tips-for-a-niche-blog/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 12:29:15 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/six-ways-to-get-more-links-tips-for-a-niche-blog/</guid>
		<description><![CDATA[
Helio of Goteborg&#8217;s History wrote asking me how to get more links for his Swedish history page.  I&#8217;ll admit I&#8217;m not an expert, but my last name sounds scandinavian, so I&#8217;m motivated to give a nice Swede the few tips I know. The first tips applies to non-English language bloggers, but read generally, the [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin:2px 2px 2px 5px;"><!--adsense#200by200--></div>
<p>Helio of <a href=" http://www.alltidgot.com">Goteborg&#8217;s History</a> wrote asking me how to get more links for his Swedish history page.  I&#8217;ll admit I&#8217;m not an expert, but my last name sounds scandinavian, so I&#8217;m motivated to give a nice Swede the few tips I know. The first tips applies to non-English language bloggers, but read generally, the other five apply to everyone.</p>
<p>Here goes:</p>
<ol>
<li><strong>Provide content in English.</strong>  Blogging in Swedish limits your readership and linkage; English is much more widely spoken and understood.
<p><a href="http://codex.wordpress.org/Plugins/Translation_and_Languages">A number of translation plugins exist for Wordpress.</a>  I haven&#8217;t tried them; maybe I should.  You <i>definitely</i> should!  </p>
<p><a href="http://fredfred.net/skriker/index.php/polyglot">Polyglot</a> is a Wordpress plugin can help you provide content in a variety of languages, but <em>you</em> need to supply the content in both languages. Unfortunately, writing copy in both English and Swedish is work. Try robo-translation using <a href="ttp://carlosquiles.com/indo-european-language-blog/wordpress-translation-plugin/">Word Translation Plugin</a>; it&#8217;s free.  If free doesn&#8217;t work,  you can pay for <a href="http://anaconda.taragana.net/sv/">Angsumans’ Översättare Plugg Pro 4.0 Befriaren</a> also known as &#8220;Angsuman’s Translator Plugin Pro 4.0 Released&#8221;.  </li>
<p><span id="more-411"></span></p>
<li><strong>Link or comment to niche blogs:</strong> True niche bloggers love getting links and they link back to interesting niche content.  The challenge is to think of &#8220;niche&#8221; just broadly enough and to avoid becoming an obnoxious spammer.
<p>Helio, let&#8217;s take your blog as an example: you write about &#8220;The history of &#8216;X&#8217; in Sweden&#8221;.   So, you can link to a) history blogs, b) Swedish culture blogs and most importantly c) <em>niche blogs about &#8216;X&#8217;</em>.  </p>
<p><em>Your</em> best bet is to find niche &#8216;X&#8217; bloggers who seem interested in Sweden. These exist!</p>
<p><a href='http://money.bigbucksblogger.com/six-ways-to-get-more-links-tips-for-a-niche-blog/wendy-knits-cat-as-st-lucia/' rel='attachment wp-att-412' title='Wendy Knits Cat as St.' ><img src='http://money.bigbucksblogger.com/wp-content/uploads/2007/10/lucia121105.thumbnail.jpg' alt='Wendy  Cat as '  align="left" hspace="5" vspace="5"/></a>Need proof?   Do you see Lucy, the adorably cute cat to the left?  Well, Wendy Johnson is attached to the hands holding Lucy.  Wendy not only knits a lot;  she sometimes knits <em>Scandinavian</em> styles.  </p>
<p>What good does this do you link-wise? There is a strong possibility Wendy might be interested in articles about the history of Scandinavian knitting. (Or she may not.)</p>
<p><strong>How <i>might</i> you, Helio, get a link from a blogger like Wendy?</strong>  There is no sure way, but you could try this:  post an interesting article about the history of Swedish knitting mentioning the Bohus Tradition; mention modern day knitters who still knit these things. <em>Link Wendy&#8217;s Bohus sweater</em>.  (BTW: It&#8217;s a great sweater; she&#8217;s a famous American knitter and knitting book author. Your readers will probably be interested in the link!)</p>
<p>If your article is interests Wendy, she might link back. (BTW: be sure to use WP-Cache if she does. <a href="http://money.bigbucksblogger.com/john-chow-effect-less-than-the-power-of-wendyknitsnet/">Click to read why.</a>) </p>
<p>Now, don&#8217;t focus on Wendy; she&#8217;s an example. And let&#8217;s face it; she doesn&#8217;t want to be spammed. </p>
<p><strong>I want you to  generalize the advice I gave you.</strong> Do you plan a post about The History of Luttefisk? Find A list (or B or C list) food bloggers who might be interested in Luttefisk. (Or better yet, blog about something edible.)  Swedish Furniture? Find bloggers who discuss Swedish furniture or interior design. </p>
<p>What can bloggers other than Helio do: Think about their niche broadly. Try to link to people in their <i>tight</i> niche, then try to find creative ways to link to people who overlap their niche.</li>
<li><strong>Out link a lot.</strong> When first starting out, linking one person per post probably won&#8217;t do the trick.  Make your goal to link to <i>at least</i> five bloggers who might be interested in your post.
<p>I&#8217;m bad. Finding five people is work.  Looking at the links I&#8217;ve dropped so far,  <i>no one</i> is likely to link back!</li>
<li><strong>Identify your &#8220;link-niche&#8221;.</strong> How? Ask other people who visit your blog.  You, Helio, may think your niche is History. It is, but are historians going to link you <i>a lot</i>?
<p>I think your &#8220;link-niche&#8221; is also <i>Sweden</i>! <img src='http://money.bigbucksblogger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Swedish Americans; are dotty for Sweden. Find them; they will probably link more than historians.  Or not&#8211; still, it&#8217;s worth aiming for links from both niches. </p>
<p>I have no idea how you can attract historian bloggers. But, with a name like mine, I know loads of people who are dotty about Swedish culture.  </p>
<p>If you want to find niche bloggers are interested in Swedish culture, try Googling. Add  Swedish term to the &#8220;niche&#8221; you are connecting too.   When you eventually blog about the history of Swedish food, try  &#8220;food scandinavian&#8221;.  It won&#8217;t hurt to try &#8220;luttefisk blogger&#8221;, or &#8220;crafts Swedish&#8221;.  To find Swedish groups, Google &#8220;Swedish Days&#8221; of &#8220;Swedish Museum&#8221;. (Heck, try Andersenville, Chicago.)</p>
<p>This will take time, but if you find a blogger who is posting regularly, and mentions anything Swedish, finding a reasonable, non-spammy excuse to link them would be helpful.  </p>
<p>Your goal is to get these bloggers to notice your post.  Their response is in their hands! </li>
<li><strong>Always verify you pinged or tracked-back.</strong> If you mess up a link, linking won&#8217;t leave a trackback or pingback.  If the blogger&#8217;s blog doesn&#8217;t post trackbacks, you won&#8217;t leave a trackback. If the blogger&#8217;s blog doesn&#8217;t let Wordpress autodiscover the trackback, you might not leave a trackback.
<p>You really need that trackback. So, after you hit  publish, always go back to &#8220;edit&#8221; your post. Scroll down and check whether or not a trackback was sent. If it was not, check your link is correct. If the link is correct, visit the page and search for &#8220;trackback&#8221;, find the url, add it to the trackback box at Wordpress. Save your post again. </p>
<p>After that, trackbacks are in the hands of the blogger you pinged or tracked back. </li>
<li><strong>Use StumbleUpon.</strong> This is for traffic&#8211; but you need traffic to get links.  Besides, I suspect StumbleUpon friends are often bloggers: they are more likely to  drop a link than non-stumblers.
<p>So, join StumbleUpon.  Install the toolbar. <a href="http://money.bigbucksblogger.com/help-me-stumble-you">Make a decent profile</a>. <a href="http://money.bigbucksblogger.com/five-tips-for-getting-traffic-from-stumble/">Apply a few of my tips.</a> </p>
<p>Spend one or two hours a week stumbling content in your niches.   Find friends in your niche, defined broadly:  History is a niche. Sweden is another niche.  Afterwards, find the correct niches for your individual posts. If necessary, self stumble&#8211; but it&#8217;s best to be patient and wait for someone else to stumble because you&#8217;ll get more traffic, get more friends and fans.</p>
<p>Heck,  write a good post about the history Bohus knitting, let me know and <i>I&#8217;ll</i> Stumble the English language version and tag it &#8220;knitting&#8221;. </li>
</ol>
<h3>Summary of How to Get Links</h3>
<p>So, the short advice is: provide content in English, link to bloggers, link to <i>a lot</i> of bloggers, develop a method of identifying bloggers who are interested in your niche (who  you can later link and who will link you), make sure you they know you linked them, use StumbleUpon to make friends with&#8230; uhmm&#8230; interested bloggers! </p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/six-ways-to-get-more-links-tips-for-a-niche-blog/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Two Ways To Hide Your Secrets from Google (and Everyone).</title>
		<link>http://money.bigbucksblogger.com/two-ways-hide-your-secrets-from-google-and-everyone-else/</link>
		<comments>http://money.bigbucksblogger.com/two-ways-hide-your-secrets-from-google-and-everyone-else/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 14:19:00 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/two-ways-hide-your-secrets-from-google-and-everyone-else/</guid>
		<description><![CDATA[You don&#8217;t have any secrets?  No secret  nude photos directory?  No directory of your plots to take over the universe?  No . . . Wordpress plugins that scream &#8220;I post paid links?&#8221;
Well, remember that there are people who like to report paid links to Google&#8217;s snitch service.  Some may know [...]]]></description>
			<content:encoded><![CDATA[<p>You don&#8217;t have any secrets?  No secret  nude photos directory?  No directory of your plots to take over the universe?  No . . . Wordpress plugins that scream &#8220;I post paid links?&#8221;</p>
<p>Well, remember that there are people who like to report paid links to Google&#8217;s snitch service.  Some may know enough to load your plugin folder by typing http://yourpaidlinkblog.com/wp-content/plugins/ into their browser.  </p>
<p><a href='http://money.bigbucksblogger.com/two-ways-hide-your-secrets-from-google-and-everyone-else/view-of-all-plugins/' rel='attachment wp-att-381' title='View of all plugins'><img src='http://money.bigbucksblogger.com/wp-content/uploads/2007/09/viewofallplugins.thumbnail.gif' alt='View of all plugins' / align="left" hspace="5" vspace="5"></a>If they do, will they see a list of all your plugins? </p>
<h4>What&#8217;s bad about letting Google snitches see this list?</h4>
<p>Well, if you&#8217;ve got the &#8220;wrong&#8221; kind of plugin, the snitch may report you to Google for taking paid posts! (And the snitch is probably correct about the paid links. After all, why else have you installed AutoPaidLinkInsertion.php? )
<div style="float:right; margin:2px 2px 2px 2px;"><!--adsense#AdbriteBox--></div>
<p> Google  <a href="http://www.davidairey.com/google-search-ranking-penalty-david-airey/">may</a> or <a href="http://www.jimboykin.com/google-banned-site/">may not spank</a> <em>your </em> Page Rank for this, but your advertisers would probably prefer Google didn&#8217;t know you were selling paid ads.   (And hey, who knows? If the word gets out, some advertisers may start checking your plugins folder to figure out if Google is likely to know you are a link farm. Hiding this list could mean more money for you.)</p>
<p>So, maybe you&#8217;d like to prevent snoops and snitches from seeing that list of files?<br />
Here are two easy ways to do it:</p>
<ol>
<li><strong>Upload an index.html file to wp-content/plugins.</strong> This will hide that file list in /wp-content/plugins. However, you may need to repeat this when you upgrade Wordpress. Also, you won&#8217;t hide the listing in any other folders.  That may not bother you&#8211; unless you are storing something you&#8217;d rather keep under wraps.</li>
<li><strong>Add one or two lines to the .htaccess file.</strong> Modifying .htaccess in the root directory can keep snoops from viewing listings in every directory on your site. If you think these snoops don&#8217;t exist, read <a href="http://www.googletutor.com/2005/04/15/voyeur-heaven/">Voyeur Heaven</a>, which I discovered while Stumbling.  Obviously, people snoop for many reasons including industrial espionage, curiosity, and, a desire to find porn.  </li>
</ol>
<h4>How to modify the .htaccess file</h4>
<p>Now, visit your web site using ftp.  Find the &#8216;.htaccess&#8217; file; the &#8216;dot&#8217; in front is important.   Now insert these two lines at the end of the file.  </p>
<blockquote><p>#prevent people from viewing directory  listings<br />
Options -Indexes</p></blockquote>
<p><a href='http://money.bigbucksblogger.com/wp-content/uploads/2007/09/hide-in-htaccess.gif' title='hide in htaccess'><img src='http://money.bigbucksblogger.com/wp-content/uploads/2007/09/hide-in-htaccess.gif' alt='hide in htaccess'  height='243' width='200' align="left" hspace='5' vspace='5'/></a>The first line is an optional comment.  The second line prevents people from reading the list of all files when a directory that doesn&#8217;t include &#8216;index.php&#8217; or &#8216;index.html&#8217; file. </p>
<p>Now, save. Then visit your blog to make sure the blog loads. If it doesn&#8217;t, fix the .htaccess file immediately.</p>
<p>You&#8217;re done! </p>
<p>From now on, no-one can surf google for &#8216;index.php&#8217; and discover stuff you might not wish them to see.  Click to see how well it worked for me. <a href="http://money.bigbucksblogger.com/wp-content/plugins/" target="_blank">http://money.bigbucksblogger.com/wp-content/plugins/</a>.</p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/two-ways-hide-your-secrets-from-google-and-everyone-else/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Cloak Nofollows on Individual WordPress Articles</title>
		<link>http://money.bigbucksblogger.com/how-to-cloak-nofollows-on-individual-wordpress-articles/</link>
		<comments>http://money.bigbucksblogger.com/how-to-cloak-nofollows-on-individual-wordpress-articles/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 19:31:52 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/how-to-cloak-nofollows-on-individual-wordpress-articles/</guid>
		<description><![CDATA[It turns out there is a way for bloggers using Wordpress to &#8220;nofollow&#8221; links in a way that is (as far as I can tell) totally invisible to advertisers and visible only to the Googlebot.  Advertisers should make themselves aware of this and learn to monitor whether or not the links the pay for [...]]]></description>
			<content:encoded><![CDATA[<p>It turns out there <i>is</i> a way for bloggers using Wordpress to &#8220;nofollow&#8221; links in a way that is (as far as I can tell) totally invisible to advertisers and visible only to the Googlebot.  Advertisers should make themselves aware of this and learn to monitor whether or not the links the pay for actually pass link juice.</p>
<div style="float:right;margin 2px 2px 2px 5px;"><!--adsense#AmazonBox--></div>
<p> I&#8217;ll explain:</p>
<ol>
<li>How to create undetectable cloaked nofollows in Wordpress .</li>
<li>Why it is almost always a bad idea to do this.</li>
</ol>
<p>There are other, easier ways, to make it <i>hard</i> for advertisers to see them&#8211; but they aren&#8217;t truly invisible. You can detect these other ways using the methods described in <a href="http://money.bigbucksblogger.com/here%e2%80%99s-two-quick-ways-to-catch-cloaked-nofollows/">Two Quick Ways to Detect Cloaked Nofollows.</a></p>
<h4>How to cloak nofollows so only the Googlebot sees them.</h4>
<p>Use this two step method:</p>
<ol>
<li><strong>Prevent anyone other than Google from loading your site using the Google user agent.</strong>  The purpose of this step will be to prevent detection.  This can be done using BadBehavior or Noobliminal&#8217;s <a href="http://www.tellinya.com/read/2007/08/25/php-script-verify-search-engine-crawler-by-dns-lookups/"> script  to verify spiders.</a></li>
<li><strong>Insert a few lines PHP code at the top of your Header.php code.</strong>  This code a) detects the Google user agent, b) checks if this is the page you want to cloak and c) if both occur,  it adds the new <a href="http://googleblog.blogspot.com/2007/07/robots-exclusion-protocol-now-with-even.html">Robots Exclusion  tag.</a>
<p>Here&#8217;s the code to cloack-nofollow my &#8216;page 3&#8242; in a Wordpress blog.</strong></p>
<p>     $user_agent = $_SERVER["HTTP_USER_AGENT"];<br />
      if(preg_match(&#8221;/(google|mediapartners)/i&#8221;,$userAgent) &#038;&#038; is_single(&#8217;3&#8242;)){<br />
             header(&#8221;X-Robots-Tag: nofollow&#8221;);<br />
      }
</li>
</ol>
<p>After you&#8217;ve done this, the only visitor that can &#8220;see&#8221; the nofollow is Google. </p>
<p>Because the nofollow is sent by HTTP headers, it won&#8217;t display in Google&#8217;s cache.   So no one will be able to visit Google, read the html in the Google cache and see you are nofollowing that page.   </p>
<p>This method can also be adapted to apply cloaked no-follows to whole categories, archives or whatever you wish to cloak-no-follow. </p>
<h4>Cloaked nofollows using &#8220;X-Robots-Tag: nofollow&#8221; is a <b>bad</b> idea.</h4>
<p>Now that I&#8217;ve explained how to cloak the nofollows so only Google can see them, let me give a few reasons why it&#8217;s a <i>very</i>bad idea:</p>
<ol>
<li><strong>It&#8217;s unethical:</strong> There are legitimate reasons to nofollow links. However, only reasons I can think of to <em>cloak</em> a nofollow tag are either to deceive advertisers who pay you are to gip people you promised link exchanges.    If want to &#8220;nofollow&#8221; every link on page 3 <i>without</i> cloaking, delete this bit in the if statement: &#8220;preg_match(&#8221;/(google|mediapartners)/i&#8221;,$userAgent) &#038;&#038;&#8221;. That will nofollow the link for everyone.
<p>But if you are a bit evil, you&#8217;re still tempted, right?  </li>
<li><strong>You will probably make your blog drop out of the SERPS!</strong>  Why? Well, when you nofollow this way, you no follow every link on a page. This means you will  nofollow links you <em>want</em> followed.
<p>If you nofollow only one page, this probably isn&#8217;t an issue. But suppose you begin trying to get clever and nofollow your whole sponsored category? Or every page that contains at least one paid  link?  Yes, you&#8217;ll avoid any Google penalty for paid links. <I>But</i> Google will stop following your internal links. Then, unless you are very, very careful, and very very clever, you will soon find your blog dropping out of SERPS for everything.  </p>
<p>So, massive nofollowing using the &#8220;X-Robots-Tag: nofollow&#8221; will probably hurt you more than anyone else! </li>
<li><strong>Cloaking violates Google&#8217;s guidelines.</strong> Now, this might seem like an odd reason. After all, the <i>reason</i> one might wish to nofollow is to obey the guideline of &#8220;nofollowing&#8221; all paid links.  But you don&#8217;t need to cloak to obey that, right? You can do nofollow publically&#8211; letting everyone including advertisers know what&#8217;s up.
<p>But, if you try to conceal this from the advertisers by  cloaking, you violate a second Google guideline. Only Google can catch you, and we don&#8217;t know what they would do. But, given the negative impact that will come from nofollowing all  your internal links, why risk getting an additional penalty for cloaking?  </li>
</ol>
<h4>That&#8217;s how you cloak nofollows&#8230; and why you shouldn&#8217;t!</h4>
<p>So, now you know <i>how</i> to cloak a nofollow directive so only Google can see it. But you also know that method nofollows <i>every link on the page</i> and so can screw up Google&#8217;s ability to crawl your blog.  This means if you do it wantonly, you will hurt yourself more than you could ever hurt any advertiser or the person who gave you a reciprocal link hoping for one in return.</p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/how-to-cloak-nofollows-on-individual-wordpress-articles/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Dear Jason, Ideas to Fix Mahalo&#8217;s problems.</title>
		<link>http://money.bigbucksblogger.com/dear-jason-ideas-to-fix-mahalos-problems/</link>
		<comments>http://money.bigbucksblogger.com/dear-jason-ideas-to-fix-mahalos-problems/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 23:45:50 +0000</pubDate>
		<dc:creator>Bucks</dc:creator>
				<category><![CDATA[Mahalo]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://money.bigbucksblogger.com/dear-jason-ideas-to-fix-mahalos-problems/</guid>
		<description><![CDATA[Dear Jason Calacanis,
I was visiting your blog today, and I noticed that Advertising Age today and noticed Mark Simon criticized Mahalo.  Evidently, he&#8217;s can&#8217;t believe that human powered search can work.  He specifically says:

6. &#8220;HUMAN-POWERED&#8221; SEARCH ENGINES.
The reason search engines are much better places to find information than directories is because they leverage [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Jason Calacanis,</p>
<p>I was visiting <a href="http://www.calacanis.com/">your blog</a> today, and I noticed that Advertising Age today and noticed Mark Simon <a href="http://adage.com/cmostrategy/article?article_id=120273">criticized Mahalo.</a>  Evidently, he&#8217;s can&#8217;t believe that human powered search can work.  He specifically says:</p>
<div style="float:right; margin:2px 2px 2px 5px;"><!--adsense#AdbriteBox--></div>
<blockquote><p>6. &#8220;HUMAN-POWERED&#8221; SEARCH ENGINES.<br />
The reason search engines are much better places to find information than directories is because they leverage automation to do the grunt work that human editors used to do.</p></blockquote>
<p>Well, Jason, I can&#8217;t help but agree.  As I&#8217;ve pointed out, the guides you have working on Mahalo are having some difficulty applying the style guide, catching dead links, and catching sneaky redirects that appear after the page is published.  Still, I know you plan to persist in the insane endeavor  you call &#8220;Mahalo&#8221;.   </p>
<p>As long as you are, I&#8217;d like to make a few suggestions. I think you will recognize the underlying goal of each: Let computers and &#8216;bot do what they do well, let humans do what they do well! </p>
<p>So, here goes:<span id="more-346"></span></p>
<ol>
<li><strong>Create &#8216;bots to count ads:</strong><br />
Problem: Currently, your guides evidently need to sift through hundreds and hundreds of ad laden pages to find the ones that aren&#8217;t full of ads. This is a costly waste of time. Their time would be better spent comparing the less ad-intensive sites and deciding which is best.  </p>
<p>Solution: Write a &#8216;bot that permits the user to enter a Google search. After the Google search is run, let the &#8216;bot load the content of each page, identifies each (using the same method available to the FireFox extension AdBlockerPlus) and count the number of ads.   Then return a link results page that includes only pages with limited numbers of ads. </p>
<p>To catch cloaked affiliate ads, you may need to extend the &#8216;bot to follow all links and watch whether the link passes through a redirect. Flag those as suspicious. </li>
<li><strong>Create &#8216;bots to discover redirects on Mahalo links:</strong>Problem: Aggressive marketers will identify Mahalo pages, and persuade the page owner to allow them to redirect the page to a substitute page.  <a href="//www.josiahcole.com/2007/09/05/spam-in-mahalo-possible/">Josiah Cole</a> notes this happened to Mahalo&#8217;s Jesus in Food page.
<p>Solution: Store the content of original pages.  Write a &#8216;bot that loads each link on Mahalo. Record the url of the final destination page. If the url has changed, have this noted in a database. Send humans to check that page promptly.  </li>
<li><strong>Create &#8216;bots to notice changes in content.</strong>Problem: Links die.  This has already happened. I identified five several dead-ish links at new sources on your Change page.  They weren&#8217;t entirely dead, but the story had moved.
<p>Solution: Cache the source of all pages linked on Mahalo. Write a &#8216;bot that compare the current version of pages to old pages using the sorts of algorithms used by plagiarism checkers.  (Andy Beard <a href="http://andybeard.eu/2007/09/mahalo-to-remove-wikipedia-links.html">described a Iplagiarism.</a>)  When the content of the new site deviates substantially from the old content, send a human to check the page.</li>
<li><strong>Create online rubrics to ensure style guides are followed.</strong>Problem: Those styles guides are long. Sometimes they are ambiguous.  There is some inconsistency in applying the rules.
<p>Solution: Have the guides fill out a checklist covering the top ten spammy features only humans can find. No content above the fold?  Check a box. Found contact email? Check. Phone? Check. That sort of thing.  If the page has to many danger flags, the rubric will catch it.</li>
<li><strong>Create &#8216;bots that check for spam words:</strong>Problem: Yes, searches for &#8220;Jason Calacanis&#8221; point to links about <a href="http://www.calacanis.com/2007/09/10/lesbians-kissing/">lesbians making out.</a>
<p>Solution: When that &#8216;bot I suggested above loads all the Google search results, have it compare the content to a blacklist of spam terms. Lesbians is in my SpamKarma blacklist&#8211; put it in your Mahalo blacklist.  If the &#8216;bot finds a bunch of porn terms, you can be pretty sure it&#8217;s a porn site. The guides don&#8217;t need to waste their time checking it!</li>
<li><strong>Send me a huge box of luxury yarn.</strong> Or maybe season tickets to the Lyric Opera. Or something. Ok. This won&#8217;t help you at all. But you keep joking you should put me on the payroll.
<p>What you <i>really</i> should do is find someone whose first reaction to criticism of Mahalo is to assume there <i>is</i> a problem, and who then says: &#8220;If this is a problem, how could we fix it?&#8221;  </li>
</ol>
<h4>&#8216;Bot can help this insane idea scale.</h4>
<p>Heck, if you write the correct &#8216;bot to help the humans, there is a chance you can actually get Mahalo to work within some reasonable budget.  Let&#8217;s face it, you can hope the public will report  your dead links. But in reality, you&#8217;ll find more often &#8220;the public&#8221; will be very eager to suggest their own sites. (For example: my knitting blog is <i>the best blog</i> and belongs on Mahalo.  Period. )   </p>
<p>Heck, with luck, you&#8217;ll find these &#8216;bots will help you explain why my knitting blog is <i>not</i> the best one (even though it is.)</p>
<p>P.S. I thought explaining how the guides can use javascript to quickly find the duplicate content I told you about before was just the right solution.  Not too complicated, implemented quickly.  I still think Mahalo isn&#8217;t any good yet, but I can now see why they pay you the big bucks.</p>
<p>P.S.S. To add to the list&#8211; there&#8217;s no reason  you can&#8217;t write the bot to do the plagiarism checks before the human ever loads the page! </p>
 <div class='series_toc'></div>  ]]></content:encoded>
			<wfw:commentRss>http://money.bigbucksblogger.com/dear-jason-ideas-to-fix-mahalos-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.655 seconds -->
