<?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>Digerati Marketing &#187; Grey Hat</title>
	<atom:link href="http://www.digeratimarketing.co.uk/category/grey-hat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digeratimarketing.co.uk</link>
	<description></description>
	<lastBuildDate>Tue, 24 Aug 2010 20:56:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to make a Twitter bot with no coding</title>
		<link>http://www.digeratimarketing.co.uk/2009/09/23/how-to-make-a-twitter-bot-with-no-coding/</link>
		<comments>http://www.digeratimarketing.co.uk/2009/09/23/how-to-make-a-twitter-bot-with-no-coding/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:47:27 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Black Hat]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Grey Hat]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[White Hat]]></category>

		<guid isPermaLink="false">http://www.digeratimarketing.co.uk/?p=260</guid>
		<description><![CDATA[As usual, lazy-man post overview:
With this post you can learn to make a Twitter bot that will automatically retweet users talking about keywords that you specify. You can achieve this with (just about) no coding whatsoever.
Why would you want to do this? Lots of reasons I guess, ranging from spammy to fairly genuine. Normally giving [...]]]></description>
			<content:encoded><![CDATA[<p>As usual, lazy-man post overview:</p>
<p>With this post you can learn to <strong>make a Twitter bot</strong> that will <strong>automatically retweet</strong> users talking about <strong>keywords</strong> that you specify. You can achieve this with (just about) <strong>no coding</strong> whatsoever.</p>
<p>Why would you want to do this? Lots of reasons I guess, ranging from spammy to fairly genuine. Normally giving somebody a ReTweet is enough to make them follow you and it keeps your profile active, so you can semi-automate accounts and use it as an aide for making connections. That or you can spam the sh*t out of Twitter, whatever takes your fancy really.</p>
<p>Here we go.</p>
<p><strong>Step 1: Make your Twitter Bot account</strong><br />
Head over to <a target="_blank" href="Twitter.com">Twitter.com</a> and create a new account for your bot. Shouldn&#8217;t really need much help at this stage.. Try to pick a nice name and cute avatar. Or something.</p>
<p><strong>Step 2: Find conversations you want to Retweet</strong><br />
Okay, we&#8217;ve got our Twitter account and we&#8217;re going to need to scan twitter for conversations to possibly retweet. To do this, we&#8217;re going to use <a target="_blank" href="http://search.twitter.com">Twitter Search</a>. In this example, we&#8217;re going to search for &#8220;SEO Tips&#8221;, but to stop our bot Retweeting itself you want to add a negative keyword of your botname. So search for SEO Tips -botname, likely this:</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot1.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
So my bot is called &#8220;DigeratiTestBot&#8221;. Hit search now, muffin.<br />
<br/><br/><br />
<strong>Step 3: Getting the feed</strong><br />
The next thing you need to do is get the feed results, which isn&#8217;t quite as simple as you&#8217;d think you see. Twitter being a bit of a prude doesn&#8217;t like bots and services like Feedburner or Pipes interacting with it, so you&#8217;re going to need to repurpose the feed or it&#8217;s game over for you.<br/><br/></p>
<p>After you&#8217;ve done your search you need to get the feed location (top right) so copy the URL of the &#8220;Feed for this query&#8221;</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot2.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
Store that in a safe place, we&#8217;ll need it in a second.<br />
<br/><br/><br />
<strong>Step 4: Making the feed accessible</strong><br />
Okay, so there&#8217;s a teeny-tiny bit of code, but this is all, I promise! You&#8217;re going to need to republish the feed so it can be accessed later on, but don&#8217;t worry &#8211; it&#8217;s a piece of cake. All we&#8217;re going to do is screen scrape the whole feed results page onto our own server.<br/><br/></p>
<p>Make a file called &#8220;myfeed.php&#8221; and put this in it:</p>
<pre class="syntax-highlight:php">
&lt;?
$url = &quot;http://search.twitter.com/search.atom?q=seo+tips+-yourbotname&quot;;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$curl_scraped_page = curl_exec($ch);
curl_close($ch);
echo $curl_scraped_page;
?&gt;
</pre>
<p>The only bit you need to change is:<br/><Br/> &#8220;$url = &#8220;http://search.twitter.com/search.atom?q=seo+tips+-yourbotname&#8221;;&#8221; <br/><br/>which needs to be replaced with whatever your Twitter RSS feed that we carefully saved and stored in a safe place earlier. If you&#8217;ve already lost that URL, please proceed back to Step 3 and consider yourself a fail.</p>
<p>So, having completed this and uploaded your myfeed.php to your domain, you can now access the real-time Twitter results feed by accessing http://www.yourdomain.com/myfeed.php.</p>
<p><strong>Step 5: Yahoo Pipes!</strong><br />
Now comes the fun bit, we&#8217;re going to set up most of the mechanism for our bot in <a target="_blank" href="http://pipes.yahoo.com/pipes/">Yahoo Pipes</a>. You&#8217;ll need a Yahoo account, so if you don&#8217;t have one, get one and login and click &#8220;Create a Pipe&#8221; at the top of the screen.</p>
<p>This will give you a blank canvas, so let&#8217;s MacGyver us up a god damn Twitter Bot!</p>
<p><strong>Add &#8220;Fetch Feed&#8221; block from &#8220;Sources&#8221;</strong><br />
Then in the &#8220;URL&#8221; field, enter the URL of the feed we repurposed, http://www.yourdomain.com/myfeed.php.</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot3.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
<strong>Add &#8220;Filter&#8221; block from &#8220;Operators&#8221;</strong><br />
Leave the settings as &#8220;Block&#8221; and &#8220;all&#8221; then add the following rules:<br />
<em>item.title CONTAINS RT.*RT<br />
item.title CONTAINS @<br />
item.twitter:lang DOES NOT CONTAIN EN</em><Br/><br/></p>
<p>(You click the little green + to add more rules). Once you&#8217;ve done that drag a line between the bottom of the &#8220;Feed Fetch&#8221; box and the top of the &#8220;Filter&#8221; box to connect them. Hey presto.</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot4.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
<strong>Add &#8220;Loop&#8221; block from &#8220;Operators&#8221;</strong><br/><br/></p>
<p><strong>Add a &#8220;String Builder&#8221; from &#8220;String&#8221; and drag in ONTO the &#8220;Loop&#8221; block you just added</strong><br/><br/><br />
In the String Builder block you just put inside the Loop block, add these 3 items:<br />
<em>item.author.uri<br />
item.y:published.year<br />
item.content.content</em></p>
<p>Check the radio box of &#8220;assign results to&#8221; and change this to <em>item.title</em></p>
<p>Great, now drag a connection between your Filter and Loop blocks. Should look like this now:</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot5.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
<strong>Add &#8220;Regex&#8221; block from &#8220;Operators&#8221;</strong><br />
Add these two rules:<br />
<em>item.title REPLACE http://twitter.com/ WITH RT @<br />
item.title REPLACE 2009 WITH (space character)</em><br />
Extra points for anyone who writes &#8220;(space character)&#8221; instead of using a space. Also don&#8217;t miss the trailing slash from twitter.com/<br />
<br/><br/><br />
<strong>Drag a connection between Loop Block and Regex Block, then a connection between Regex and Pipe Output blocks.</strong><br/><br/></p>
<p>Finished! Should look something like this:</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot6.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
All you need to do now is <strong>Save your pipe</strong> (name it whatever you like) and <strong>Run Pipe</strong> (at the top of the screen).</p>
<p>Once you run your pipe, you&#8217;ll get an output screen something like this:</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot7.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
What you need to do here is save the URL of your pipe&#8217;s RSS feed and keep it in a safe place. If you didn&#8217;t lose your RSS feed from Step 3, then I&#8217;d suggest keeping it in the same place as that.<br />
<br/><br/><br />
<strong>Step 6: TwitterFeed</strong><br />
Almost there, comrades. All we need to do now is whack our feed into our TwitterBot account, which is made really easy with <a target="_blank" href="http://twitterfeed.com/">TwitterFeed.com</a>. Get yourself over there and sign up for an account.</p>
<p>To set up your bot in TwitterFeed:</p>
<p>1) I suggest not using oauth, as it will make it easer to use multiple Twitter accounts. Click the &#8220;Having Oauth Problems?&#8221; link and enter the username and password for your TwitterBot account and hit test account details.</p>
<p>2) Name your feed whatever you like and then enter the URL of your Yahoo Pipes RSS that we carefully saved earlier, then hit &#8220;test feed&#8221;.</p>
<p>3) <strong>Important:</strong> Click &#8220;Advanced Settings&#8221; we need to change some stuff here:</p>
<p><strong>Post Frequency:</strong> Every 30mins<br />
<strong>Updates at a time:</strong> 5<br />
<strong>Post Content:</strong> Title Only<br />
<strong>Post Link:</strong> No (uncheck)</p>
<p>Then hit &#8220;Create Feed&#8221;</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/tbot8.jpg" alt="Twitter Bot"></center><br />
<br/><br/><br />
<strong>All done!</strong></p>
<p>Have fun and please, don&#8217;t buy anything from those losers who are peddling $20 &#8220;automate this&#8221; Twitter scripts. If you really need to do it, just make it yourself or if you don&#8217;t know how leave a comment here and I&#8217;ll show you how.</p>
<p>Bosh.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+to+make+a+Twitter+bot+with+no+coding+http://tinyurl.com/m6v8q2" title="Post to Twitter"><img class="nothumb" src="http://www.digeratimarketing.co.uk/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=How+to+make+a+Twitter+bot+with+no+coding+http://tinyurl.com/m6v8q2" title="Post to Twitter">Go on - Tweet This Post!</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://www.digeratimarketing.co.uk/2009/09/23/how-to-make-a-twitter-bot-with-no-coding/feed/</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
		<item>
		<title>CURL Page Scraping Script</title>
		<link>http://www.digeratimarketing.co.uk/2008/12/16/curl-page-scraping-script/</link>
		<comments>http://www.digeratimarketing.co.uk/2008/12/16/curl-page-scraping-script/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 13:43:14 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Grey Hat]]></category>
		<category><![CDATA[Research & Analytics]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[scraping]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.digeratimarketing.co.uk/?p=191</guid>
		<description><![CDATA[Using cURL and page scraping for specific data is one of the most important things I do when creating databases. I&#8217;m not just talking about scraping pages and reposting here, either.
You can use cURL to grab the HTML of any viewable page on the web and then, most importantly take that data and pick out [...]]]></description>
			<content:encoded><![CDATA[<p>Using cURL and page scraping for specific data is one of the most important things I do when creating databases. I&#8217;m not just talking about <a href="http://www.digeratimarketing.co.uk/2008/08/13/how-to-make-money-with-an-automated-blog-autostumble/">scraping pages and reposting</a> here, either.</p>
<p>You can use cURL to grab the HTML of any viewable page on the web and then, most importantly take that data and pick out the bits you need. This is the basis for link analysis scripts, training scripts, compiling databases from sources around the web, there&#8217;s almost limitless things you can do.</p>
<p>I&#8217;m providing a simple PHP class here, which will use cURL to grab a page then pull out any information between user specified tags, into an array. So for instance, in our example you can grab all of the links from any web page.</p>
<p>The class is quite simple &#8211; I had to get rid of the lovely indententation to make it fit nicely onto the blog, but it&#8217;s fairly well commented.</p>
<p>In a nutshell, it does this:</p>
<p>1) Goes to specified URL</p>
<p>2) Uses cURL to grab the HTML of the URL</p>
<p>3) Takes the HTML and scans for every instance of the start and end tags you provide (e.g. < a > < / a >)</p>
<p>4) Returns these in an array for you.</p>
<p>Download <a href="http://www.digeratimarketing.co.uk/lab/taggrab/taggrab.class.zip">taggrab.class.zip</a></p>
<pre class="syntax-highlight:php">
&lt;?php

class tagSpider
{

// set variable to hold curl instance
var $crl;

// this is where we dump the html we get
var $html; 

// set for binary type transfer
var $binary; 

// this is the url we are going to do a pass on
var $url;

// automatically executed on class call to clear variables
function tagSpider()
{
$this-&gt;html = &quot;&quot;;
$this-&gt;binary = 0;
$this-&gt;url = &quot;&quot;;
}

// takes url passed to it and.. can you guess?
function fetchPage($url)
{

// set the URL to scrape
$this-&gt;url = $url;

if (isset($this-&gt;url)) {

// start cURL instance
$this-&gt;ch = curl_init ();

// this tells cUrl to return the data
curl_setopt ($this-&gt;ch, CURLOPT_RETURNTRANSFER, 1);

// set the url to download
curl_setopt ($this-&gt;ch, CURLOPT_URL, $this-&gt;url); 

// follow redirects if any
curl_setopt($this-&gt;ch, CURLOPT_FOLLOWLOCATION, true); 

// tell cURL if the data is binary data or not
curl_setopt($this-&gt;ch, CURLOPT_BINARYTRANSFER, $this-&gt;binary); 

// grabs the webpage from the internets
$this-&gt;html = curl_exec($this-&gt;ch); 

// closes the connection
curl_close ($this-&gt;ch);
}

}

// function takes html, puts the data requested into an array
function parse_array($beg_tag, $close_tag)

{
// match data between specificed tags
preg_match_all(&quot;($beg_tag.*$close_tag)siU&quot;, $this-&gt;html, $matching_data); 

// return data in array
return $matching_data[0];
}

}
?&gt;
</pre>
<p>So that is your basic class, which should be fairly easy to follow (you can ask questions in comments if needed).</p>
<p>To use this, we need to call it from another PHP file to pass the variables we need to it.</p>
<p>Below is tag-example.php which demonstrates how to pass the URL, start/end tag variables to the class and pump out a set of results.</p>
<p>Download <a href="http://www.digeratimarketing.co.uk/lab/taggrab/tag-example.zip">tag-example.zip</a></p>
<pre class="syntax-highlight:php">
&lt;?php

// Inlcude our tag grab class
require(&quot;taggrab.class.php&quot;); // class for spider

// Enter the URL you want to run
$urlrun=&quot;http://www.techcrunch.com/&quot;;

// Specify the start and end tags you want to grab data between
$stag=&quot;&lt;a href=&quot;;
$etag=&quot;&lt;/a&gt;&quot;;

// Make a title spider
$tspider = new tagSpider();

// Pass URL to the fetch page function
$tspider-&gt;fetchPage($urlrun);

// Enter the tags into the parse array function
$linkarray = $tspider-&gt;parse_array($stag, $etag); 

echo &quot;&lt;h2&gt;Links present on page: &quot;.$urlrun.&quot;&lt;/h2&gt;&lt;br /&gt;&quot;;
// Loop to pump out the results
foreach ($linkarray as $result) {

echo $result;

echo &quot;&lt;br/&gt;&quot;;
}

?&gt;
</pre>
<p>So this code will pass the Techcrunch website to the class, looking for any standard a href links. It will then simply echo these out. You could use this in conjunction with <a rel="nofollow" target="_blank" href="http://www.quirk.biz/searchstatus/">SearchStatus Firefox Plugin</a> to quickly see what links Techcrunch is showing bots and what they are following and nofollowing.</p>
<p>You can <a rel="nofollow" target="_blank" href="http://www.digeratimarketing.co.uk/lab/taggrab/tag-example.php">view a working example of the code here</a>.</p>
<p>As I said, there&#8217;s so much you can do from a base like this, so have a think. I might post some proper tutorials on extracting data methodically, saving it to a database then manipulating it to get some interesting results.</p>
<p>Enjoy.</p>
<p><strong>Edit:</strong> You&#8217;ll of course need cURL library installed on your server for this to work!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=CURL+Page+Scraping+Script+http://tinyurl.com/473vd5" title="Post to Twitter"><img class="nothumb" src="http://www.digeratimarketing.co.uk/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=CURL+Page+Scraping+Script+http://tinyurl.com/473vd5" title="Post to Twitter">Go on - Tweet This Post!</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://www.digeratimarketing.co.uk/2008/12/16/curl-page-scraping-script/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Blogs Worth Reading</title>
		<link>http://www.digeratimarketing.co.uk/2008/12/15/blogs-worth-reading/</link>
		<comments>http://www.digeratimarketing.co.uk/2008/12/15/blogs-worth-reading/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 13:43:53 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[Approved Services]]></category>
		<category><![CDATA[Black Hat]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Digerati News]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Grey Hat]]></category>
		<category><![CDATA[Marketing Insights]]></category>
		<category><![CDATA[Research & Analytics]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Splogs]]></category>
		<category><![CDATA[Viral Marketing]]></category>
		<category><![CDATA[White Hat]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[favorite blogs worth reading seo]]></category>

		<guid isPermaLink="false">http://www.digeratimarketing.co.uk/?p=205</guid>
		<description><![CDATA[I&#8217;ve never done a round-up of the blogs I read before, which I guess is a bit selfish. So, in no particular order (and this isn&#8217;t a complete list) some of my favourite blogs, if you&#8217;re looking for some inspiration.
Dark SEO Programming is run by Harry. As he puts it, &#8220;SEO Tools. I make &#8216;em&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never done a round-up of the blogs I read before, which I guess is a bit selfish. So, in no particular order (and this isn&#8217;t a complete list) some of my favourite blogs, if you&#8217;re looking for some inspiration.</p>
<p><a target="_blank" href="http://www.darkseoprogramming.com/">Dark SEO Programming</a> is run by Harry. As he puts it, &#8220;SEO Tools. I make &#8216;em&#8221;. A great guy if you need help with coding and somewhat of a <a target="_blank" href="http://www.darkseoprogramming.com/2008/06/01/removing-lines-across-letters/">captcha guru</a>, with a <a target="_blank" href="http://www.darkseoprogramming.com/2008/06/12/pythagoras-was-a-spammer/">sense of humour</a>. Definitely worth keeping up with. I wouldn&#8217;t be surprised if this guy starts making big Google waves in the next few years.</p>
<p><a target="_blank" href="http://www.askapache.com/">Ask Apache</a> is a blog I absolutely love. Great, detailed tutorials on <a target="_blank" href="http://www.askapache.com/javascript/google-analytics-speed-tips.html">script optimisation</a>, <a target="_blank" href="http://www.askapache.com/seo/seo-advanced-pagerank-indexing.html">advanced SEO</a> and <a target="_blank" href="http://www.askapache.com/htaccess/mod_rewrite-variables-cheatsheet.html">mod_rewrite</a>. AskApache&#8217;s blog posts are the kind of ones that live in your bookmarks, rather than your RSS Reader.</p>
<p><a target="_blank" href="http://blog.arhg.net/">Andrew Girdwood</a> is a great chap from <a target="_blank" href="http://www.bigmouthmedia.com">BigMouthMedia</a> I met last year (although I very much doubt he remembers that). Andrew seems to be a vigilante web <a target="_blank" href="http://blog.arhg.net/2008/12/itn-whoops-their-rss.html">bug</a> <a target="_blank" href="http://blog.arhg.net/2008/12/weird-flickr-search-shoutout.html">hunter</a>. What I like about his blog is that he is usually the first to find <a target="_blank" href="http://blog.arhg.net/2008/12/cjk-results-in-googlecom.html">weird things with Google</a> that are going down. This usually gets my brain rolling in the right direction of my next nefarious plan. ^_^</p>
<p><a target="_blank" href="http://blackhatseo-blog.com">Blackhat SEO Blog</a> run by busin3ss is always worth checking out. He was even kind enough to give me a pre-release copy of <a target="_blank" href="http://blackhatseo-blog.com/yacg-mass-installer-16-and-yacg-35">YACG mass installer</a> to review (it&#8217;s coming soon &#8211; I&#8217;m still playing!). Apart from his excellent tools, his blog features the <a target="_blank" href="http://blackhatseo-blog.com/increase-your-link-popularity-part-i">darker side of link building</a>, which of course, interests me greatly.</p>
<p><a target="_blank" href="http://kooshy.com/">Kooshy</a> is a blog run by a guy I know, who.. Well I think he wants to remain anonymous (at least a little). He&#8217;s just got started again after closing down his last blog and moving Internet personas (doesn&#8217;t the mystery just rivet you?). Anyway, get in early, I think we can expect some good stuff from here. He&#8217;s already done a cool post on <a target="_blank" href="http://kooshy.com/pimpin-duplicate-content-for-backlinks/">Pimpin&#8217; Duplicate Content For Links</a>.</p>
<p><a target="_blank" href="http://www.jonwaraas.com">Jon Waraas</a> is run by.. Can you guess? Jon has something that a lot of even really smart Internet entrepreneurs are missing, good old fashioned elbow grease. This guy is a workaholic and it pays off in a big way. Apart from time saving posts on loads of different ways to <a target="_blank" href="http://www.jonwaraas.com/monetize-your-websites-traffic-with-t3leadscom/">monetise your site</a>, <a target="_blank" href="http://www.jonwaraas.com/how-to-ask-for-a-link-exchange-and-get-it/">build backlinks</a> and <a target="_blank" href="http://www.jonwaraas.com/se-link-campaign-copy-your-competitors-links/">flush out your competitors</a> I get quite a lot of inspiration for his constant stream of effort and ideas. I could definitely take a leaf out of his work ethic book.</p>
<p><a target="_blank" href="http://www.bluehatseo.com">Blue Hat SEO</a> is becoming one of the usual suspects really. If you&#8217;re here, you probably already know about Eli. Being part of my &#8220;let&#8217;s only do a post every few months club&#8221;, I love Eli&#8217;s blog because there is absolutely no fluff. He gets straight down to the business of <a target="_blank" href="http://www.bluehatseo.com/how-to-overthrow-a-wikipedia-result/">overthrowing Wikipedia</a>, <a target="_blank" href="http://www.bluehatseo.com/stumble-and-digg-begging/">exploiting social media</a> and <a target="_blank" href="http://www.bluehatseo.com/open-questions-4-deminishing-values-on-outbound-links/">answering specific SEO questions</a>. You&#8217;ll struggle to find higher quality out there.</p>
<p><a href="http://www.seobook.com/blog">SEO Book</a> is probably the most &#8220;famous&#8221; blog I&#8217;m going to mention here. Aaron was off at a disadvantage, because to be honest, I thought he was a massive waste of space for quite a while. (I guess that&#8217;s what happens when you take your SEO youth on Sitepoint listening to the people with xx,xxx posts on there). I bought his SEO Book and for me, at least, it was way too fluffy. I&#8217;m pleased he&#8217;s started an <a target="_blank" href="http://training.seobook.com/">SEO training</a> service now as it represents much better value. I&#8217;m sure he was making a lot of money from his SEO Book, but perhaps milked it too long (like I probably would have). Anyway, I kept with his blog and I&#8217;ve been impressed with his attitude and posts. He&#8217;s done some really cool stuff, like the <a target="_blank" href="http://tools.seobook.com/imme/">SEO Mindmap</a> and more recently, a <a target="_blank" href="http://www.seobook.com/keyword-research-strategy-flowchart">keyword strategy flowchart</a> which would be useful for those looking to a more structured search approach. He&#8217;s also written about <a target="_blank" href="http://www.seobook.com/seo-worth-effort">algorithm weightings</a> for different types of keywords and of course has some useful <a target="_blank" href="http://tools.seobook.com/">SEO Tools</a>.</p>
<p><a target="_blank" href="http://www.slightlyshadyseo.com/">Slightly Shady SEO</a> &#8211; Great name, great blog. Although XMCP will probably take it as an insult, I&#8217;ve always regarded Slightly Shady as the blog most similar to mine on this list. Maybe it&#8217;s because I wish I&#8217;d written some of the posts he has, before he did, hehe. Again, a no BS approach to effective SEO, whether he&#8217;s writing about <a target="_blank" href="http://www.slightlyshadyseo.com/index.php/googles-user-data-empire/">Google&#8217;s User Data Empire</a>, <a target="_blank" href="http://www.slightlyshadyseo.com/index.php/site-network-stealth-and-uses-hiding-from-google-and-competitors/">hiding from it</a> or <a target="_blank" href="http://www.slightlyshadyseo.com/index.php/the-semi-automated-site-factory-consolidating-seo-efforts/">site automation</a> it&#8217;s all gravy.</p>
<p><a target="blank" href="http://www.thegooglecache.com/">The Google Cache</a> is a great blog for analytical approaches to SEO. There are some awesome posts on <a target="_blank" href="http://www.thegooglecache.com/advanced-white-hat-seo-techniques/second-page-poaching-adanced-white-hat-seo-techniques/">Advanced Whitehat SEO</a> and <a target="_blank" href="http://www.thegooglecache.com/uncategorized/trick-ranking-software-to-use-random-proxies/">using proxies with search position trackers</a>. I like.</p>
<p><a target="_blank" href="http://www.seocracy.com">SEOcracy</a> is run by a lovely database overlord called Rob. Rob&#8217;s a cool guy, he was kind enough to donate some databases to include in the <a href="http://www.digeratimarketing.co.uk/2008/06/12/blackhat-seo-tools-scripts-the-digerati-blackbox/">Digerati Blackbox</a> a while back. Most of his databases are stashed away in his <a target="_blank"  href="http://seocracy.com/2008/12/introducing-the-seocracycom-content-club/">content club</a> now, which is well worth a look in. He&#8217;s also done some enlightening posts on <a target="_blank" href="http://seocracy.com/2008/09/youre-not-still-using-google-trends-to-figure-out-whats-hot-are-you/">keyword research</a>, <a target="_blank" href="http://seocracy.com/2008/05/stuffing-website-inputs-a-technique-for-gaining-backlinks/">stuffing website inputs</a> and <a target="_blank" href="http://seocracy.com/2008/10/google2001-search-for-finding-domains/">Google Hacking</a>.</p>
<p>This is all I&#8217;ve got time for now, apologies if I&#8217;ve missed you. There may be a Part II in the near future.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Blogs+Worth+Reading+http://tinyurl.com/c8mgb4" title="Post to Twitter"><img class="nothumb" src="http://www.digeratimarketing.co.uk/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Blogs+Worth+Reading+http://tinyurl.com/c8mgb4" title="Post to Twitter">Go on - Tweet This Post!</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://www.digeratimarketing.co.uk/2008/12/15/blogs-worth-reading/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>1,147 DoFollow Blogs &amp; Forums</title>
		<link>http://www.digeratimarketing.co.uk/2008/08/19/1147-dofollow-blogs-forums/</link>
		<comments>http://www.digeratimarketing.co.uk/2008/08/19/1147-dofollow-blogs-forums/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 11:29:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Community Sites]]></category>
		<category><![CDATA[Digerati News]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Grey Hat]]></category>
		<category><![CDATA[White Hat]]></category>
		<category><![CDATA[bill]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[dofollow]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[hicks]]></category>
		<category><![CDATA[nofollow]]></category>

		<guid isPermaLink="false">http://www.digeratimarketing.co.uk/2008/08/19/1147-dofollow-blogs-forums/</guid>
		<description><![CDATA[I thought such a big update was worth a post. Pretty happy with the DoFollow search engine now &#8211; well over 1,000 blogs &#038; forums in the index. So, get link building&#8230;
Or, if you&#8217;re smart write an app to interface with the DoFollow search engine and do it all for you (:
Oh&#8230;.My&#8230;..

 Go on - [...]]]></description>
			<content:encoded><![CDATA[<p>I thought such a big update was worth a post. Pretty happy with the <a href="http://www.digeratimarketing.co.uk/tools/do-follow-search-engine/">DoFollow search engine</a> now &#8211; well over 1,000 blogs &#038; forums in the index. So, get link building&#8230;</p>
<p>Or, if you&#8217;re smart write an app to interface with the <a href="http://www.digeratimarketing.co.uk/tools/do-follow-search-engine/">DoFollow search engine</a> and do it all for you (:</p>
<p>Oh&#8230;.My&#8230;..</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/gDW_Hj2K0wo&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/gDW_Hj2K0wo&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center><br/><br/></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=1%2C147+DoFollow+Blogs+%26+Forums+http://tinyurl.com/dg95bj" title="Post to Twitter"><img class="nothumb" src="http://www.digeratimarketing.co.uk/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=1%2C147+DoFollow+Blogs+%26+Forums+http://tinyurl.com/dg95bj" title="Post to Twitter">Go on - Tweet This Post!</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://www.digeratimarketing.co.uk/2008/08/19/1147-dofollow-blogs-forums/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How To Make Money With An Automated Blog &amp; AutoStumble</title>
		<link>http://www.digeratimarketing.co.uk/2008/08/13/how-to-make-money-with-an-automated-blog-autostumble/</link>
		<comments>http://www.digeratimarketing.co.uk/2008/08/13/how-to-make-money-with-an-automated-blog-autostumble/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 23:12:44 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Black Hat]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Grey Hat]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Splogs]]></category>
		<category><![CDATA[Viral Marketing]]></category>
		<category><![CDATA[autostumble]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[stumbleupon]]></category>

		<guid isPermaLink="false">http://www.digeratimarketing.co.uk/?p=80</guid>
		<description><![CDATA[Welcome to another &#8220;how to&#8221; post. If you follow the recipe here, you&#8217;ll be onto Stage 3 = Profit in no time. This ties quite nicely in with the Blackhat SEO Tools post and the AutoStumble post, for those who haven&#8217;t read them. It&#8217;s a little blackhat, but nothing to lose sleep over (hah, as [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to another &#8220;how to&#8221; post. If you follow the recipe here, you&#8217;ll be onto Stage 3 = Profit in no time. This ties quite nicely in with the <a href="http://www.digeratimarketing.co.uk/2008/06/12/blackhat-seo-tools-scripts-the-digerati-blackbox/">Blackhat SEO Tools</a> post and the <a href="http://www.digeratimarketing.co.uk/2008/04/04/a-great-tool-just-for-you/">AutoStumble post</a>, for those who haven&#8217;t read them. It&#8217;s a little blackhat, but nothing to lose sleep over (hah, as if!) and this is really, really, reaaallyy easy stuff. Sitting comfortably? Let us begin..</p>
<p><strong>What is the end goal?</strong></p>
<p>The end-game of this post is to have a fully automated blog, which generates shitloads of traffic via StumbleUpon, referrals and Google Blogsearch. In the process, you&#8217;ll also gain loads of subscribers and generate some nice easy revenue. Once it&#8217;s built, the entire thing is just about hands free.</p>
<p><strong>What you need before you begin&#8230;</strong>#<br />
To complete this project you will need:</p>
<p>1) Nice clean installation of <a href="http://wordpress.org/download/">Wordpress</a></p>
<p>2) The <a href="http://www.digeratimarketing.co.uk/2008/06/12/blackhat-seo-tools-scripts-the-digerati-blackbox/">Digerati Blackhat SEO Tool Set</a></p>
<p>3) A registered copy of <a href="http://www.autostumble.net">AutoStumble</a></p>
<p><strong>Lets get started</strong><br />
I&#8217;m going assume you know the basics of setting up a Wordpress blog. If not you can get more detail from <a href="http://www.digeratimarketing.co.uk/2007/04/16/make-money-with-a-video-blog/">Making Money With a Video Blog</a> or if you&#8217;re totally new, check out the <a target="_blank" href="http://codex.wordpress.org/Main_Page">official Wordpress documentation</a>. So yea, if you&#8217;re that new, please RTFM.</p>
<p>Once you&#8217;ve got your Wordpress blog installed and running, do the basics such as setting the permalinks to be the post title, so you get those little extra keywords in the URL. You&#8217;ll also need to find yourself a theme. As discussed in <a href="http://www.digeratimarketing.co.uk/2007/04/16/make-money-with-a-video-blog/">Making Money With a Video Blog</a>, the layout is really, really important to get clicks on your ads. You could start with a template like <a target="_blank" href="http://www.doshdosh.com/prosense-adsense-ready-seo-theme/">ProSense</a>, although I&#8217;ve found the click through ratio to be pretty low, but at least it&#8217;s quick. Ideally, have a hunt around so you meet the criteria of showing your content above the fold, centrally and having your ads nicely surrounded and blended in. The key here is to experiment and see what works well for you.</p>
<p><strong>Plugins FTW</strong><br />
There&#8217;s a whole crapload of plugins that will make your life a lot easier. We&#8217;ll start off with the important one, <a target="_blank"href="http://projects.radgeek.com/feedwordpress">FeedWordpress</a>, which is part of the <a href="http://www.digeratimarketing.co.uk/2008/06/12/blackhat-seo-tools-scripts-the-digerati-blackbox/">Digerati Blackhat SEO Tool Set</a> if you don&#8217;t already have it.</p>
<p>Upload the feedwordpress folder, as usual to your wp-content/plugins directory. You&#8217;ll need to remove the 2 files from the feedwordpress &#8220;Magpie&#8221; subfolder, and put these into your &#8220;wp-includes&#8221; directory, which will overwrite some default Wordpress files too. Don&#8217;t miss that step&#8230;</p>
<p>Once you&#8217;re installed and you&#8217;ve activated the plugin via your Wordpress dashboard, you&#8217;ll have a new option on your main navigation.</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/splog1.gif"></center><br/><br />
Just like that. So give that a click and then go into the &#8220;Syndication Options&#8221; menu. From here you&#8217;ll be able to configure FeedWordpress to do your bidding.<br/><br/></p>
<p>You should get an option screen like this:</p>
<p><center><img src="http://www.digeratimarketing.co.uk/images/splog2.gif"></center><br/></p>
<p>So lets run through these options.</p>
<p>1) The first thing you want to change is the &#8220;Check For New Posts&#8221; option. You&#8217;ll want to set this to &#8220;automatic&#8221;. This will go sniff your RSS feeds at an interval you specify to grab new content. You can leave it on every 10 minutes for now.</p>
<p>2) Make sure the next 3 boxes are checked, this will keep your feed information bang up to date.</p>
<p>3) You should set syndicated posts to be published immediately. This will allow you to get your content live ASAP, which is always a plus.</p>
<p>4) Pemalinks. This is basically when somebody clicks on the post, do they go to the original website that you er&#8230; Borrowed? The content from, or do they go so a scraped version on your site. For this example (which I&#8217;ll give the gonadless among you an ethical loophole for later), set it to &#8220;this website&#8221;.</p>
<p>5) I always set FeedWordpress to create new categories. I never display categories in the menu, but it gives the post a few more keywords and a bit more relevance for search. So, if someone else has gone to the effort of writing a tag, it would just be wasteful of you not to use it!</p>
<p><strong>Okay, that&#8217;s set up&#8230; What exactly are we scraping?</strong><br />
To be honest, I&#8217;m not a big fan of people scraping content that people have sweated over. However, one thing I don&#8217;t mind doing is thieving from thieves.</p>
<p>You&#8217;re on the hunt for &#8220;disposable&#8221; content &#8211; generally not text based. Think along the lines of Flash games, funny videos, funny pictures, hypnomagical-optical-illusions &#8211; that kind of thing. The Internet is awash with blogs that showcase this stuff. Check out <a target="_bkank" href="http://www.google.co.uk/blogsearch">Google blogsearch</a> and try a search like <a target="_blank" rel="nofollow" href="http://www.google.co.uk/blogsearch?hl=en&#038;q=funny+pictures+blog&#038;btnG=Search+Blogs">funny pictures blog</a>. There&#8217;s hundreds of the leeching bastards showcasing other peoples pictures, videos, games and hypnomagical-optical-illusions for their website. They can hardly call it &#8220;their&#8221; content. With this ethical pebble tossed aside, we can go and grab some content.</p>
<p>There&#8217;s loads of ways you can hunt down potential content. You&#8217;re on the lookout for RSS feeds with this rich media. So you could try; <a target=2_blank" href="http://www.google.co.uk/blogsearch">Google Blogsearch</a>, <a target="_blank" href="http://www.technorati.com/">Technorati</a>, <a rel="nofollow" target="_blank" href="http://www.mybloglog.com/">MyBlogLog</a> &#8211; basically any site that lets you search the blogosphere.</p>
<p>Once you&#8217;ve got the location of about a dozen or so RSS feeds, you can go to your Syndication menu again and &#8220;add a new syndicated site&#8221;. Simple matter, paste in the RSS feed location and hit syndicate. Once you&#8217;ve added them all, it &#8220;update&#8221;. Boom, shake the room, you&#8217;ve probably got a couple of hundred &#8220;new posts&#8221;.</p>
<p><strong>New posts, no traffic</strong><br />
You want to of course, set up your Wordpress RSS. Something like <a target="_blank" rel="nofollow" href="http://www.feedburner.com">Feedburner</a> is dead easy to set up and will get Google interested off the bat. Make sure you have a nice big RSS button and offer e-mail subscription (Feedburner does this) for those who don&#8217;t have a clue what the hell RSS is.</p>
<p>The cool thing about services like Google Blogsearch is that they&#8217;re pretty much chronologically sorted. So as long as you have a steady stream of posts, you&#8217;re guaranteed at least a trickle of traffic from long-tail searches.</p>
<p><strong>Hot potato, grab and switch</strong><br />
If you really want to get some serious traffic, you&#8217;re going to need some &#8220;pillar&#8221; posts &#8211; content that you know for sure is strong. The easiest way to do this is to keep an eye on sites like <a target="_blank" rel="nofollow" href="http://www.digg.com">Digg</a> and <a target="_blank" rel="nofollow" href="http://www.reddit.com">Reddit</a>. Check out on there what is going hot, what&#8217;s new and what&#8217;s viral. Probably the easiest thing to do is <a rel="nofollow" href="http://digg.com/rss/indexcomedy.xml">subscribe to the Digg Offbeat / Comedy RSS</a>. This will give you constant updates on what&#8217;s upcoming.</p>
<p>Due to the differences in the types of people, there doesn&#8217;t tend to be as much overlap between hubs such as Digg, Reddit &#038; StumbleUpon as you might first think. I&#8217;ve seen things go viral on Reddit and then take two or three days to make it onto the frontpage of Digg. So, you can grab content that&#8217;s going hot from one of these hubs; your proverbial &#8220;hot potato&#8221; and put in front of the nose of another audience.</p>
<p><strong>Here&#8217;s where AutoStumble comes in</strong><br />
This is probably the easiest way to use <a target="_blank" href="http://www.autostumble.net">AutoStumble</a>. Grab your hot potato content from Digg and do a manual post on your blog. Submit this page to StumbleUpon.</p>
<p><a target="_blank"href="http://www.autostumble.net">AutoStumble</a> costs Â£20 and is a desktop application, which allows you to automatically pool hundreds of StumbleUpon votes with other users. I.e., this is your quick way of getting your content to go viral on StumbleUpon. If you purchase and download AutoStumble, it is simple a matter of pasting in the URL you want to go viral on StumbleUpon and hitting &#8220;AutoStumble&#8221;. </p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/VyWCvSQgUOQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/VyWCvSQgUOQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center></p>
<p>A few hundred votes later. Voila. You have traffic.</p>
<p><strong>The value of StumbleUpon traffic</strong><br />
1) The most I&#8217;ve had is just over 70,000 unique visitors over a 3 day spike from StumbleUpon. So firstly, you can generate a fairly decent bit of green from your initial CPM ad impressions and clicks on things like Adsense. (StumbleUpon users don&#8217;t tend to be as picky about clicking on ads as Diggers).</p>
<p>2) With this volume of traffic, you&#8217;ll likely find a few people who really like your content. You&#8217;ll get RSS / Email subscribers who will be a permanent addition to your monthly traffic (and revenue).</p>
<p>3) A lot of these social sites are populated with pretty tech savvy people. A lot of these people run their own blogs, forums, websites &#8211; or at least add content somewhere themselves on the web. If you get 10,000 visitors from StumbleUpon, you can expect a decent amount of lovely natural links from around the web. Links mean better website authority, better rankings, better traffic and better revenue. The value for me at least, is really long-term.</p>
<p><strong>Making things easy for yourself</strong><br />
You&#8217;ll probably want to install some extra plugins such as:</p>
<ul>
<li><a target="_blank"href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-12-release.html">Wordpress Automatic Update</a> &#8211; This will update your Wordpress installation as well as plugins. Generally, it will save you a lot of time.</li>
<li><a target="_blank" href="http://www.viper007bond.com/wordpress-plugins/clean-archives-reloaded/">Clean Archives Reloaded</a> &#8211; I use there on my <a href="http://www.digeratimarketing.co.uk/archive/">archive page</a>. It&#8217;s a nice way to layout all of your blog posts with clean anchortext to improve relevance with some internal linking.</li>
<li><a target="_blank" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Sitemap Generator</a> &#8211; I don&#8217;t really bother with Sitemaps, but for those who do &#8211; saves you generating one from scratch.</a></li>
</ul>
<p>Don&#8217;t forget, if you&#8217;re going to be switching content onto platforms like Digg or Reddit, make sure you have their native vote button included in the post! You want to make it as easy as possible to grab all of the votes you can. Again, personally &#8211; I don&#8217;t bother with the generic social bookmarking plugins for Wordpress, as I find nobody actually seems to use them.</p>
<p>Oh, and before anyone chirps in trying to be clever saying <em>&#8220;(sniffle) won&#8217;t duplicate content be an issue?&#8221;</em> No! it won&#8217;t, fucktard! Get back in your hole. Aside from the dupe content filters being primarily built on shit, you&#8217;ll be posting mostly rich media. Google&#8217;s not too great at working out the exact content of  pictures and videos&#8230; Yet. Yes, it will probably change one day in the future, and we&#8217;ll all look back on this post and laugh..At the moment, it&#8217;s not something they do well, so, well&#8230;. Ching..Ching.</p>
<p><strong>Taking it one step further</strong><br />
This whole project should take you less than 30 minutes, from sitting down at your computer to having a fully automated blog posting and promotion system set up. If you like the idea, it would be an idea to package everything I&#8217;ve mentioned here together into your own custom install file, so you can deploy new sites in under 15minutes.</p>
<p>If you&#8217;re going to do this, you may as well make your cookie cutter solution as good as it can be. Hopefully, if you&#8217;re thinking down the right road you can come up with some of your own ideas to improve on these techniques (there are loads).</p>
<p>Why not look at only showing social voting buttons, from sites you know that your visitors actually use? <a target="_blank" href="http://code.google.com/p/aza/source/browse/trunk/SocialHistory/SocialHistory.js">Here&#8217;s some code</a>.</p>
<p>Enjoy.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+To+Make+Money+With+An+Automated+Blog+%26+AutoStumble+http://tinyurl.com/d5e82v" title="Post to Twitter"><img class="nothumb" src="http://www.digeratimarketing.co.uk/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=How+To+Make+Money+With+An+Automated+Blog+%26+AutoStumble+http://tinyurl.com/d5e82v" title="Post to Twitter">Go on - Tweet This Post!</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://www.digeratimarketing.co.uk/2008/08/13/how-to-make-money-with-an-automated-blog-autostumble/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
	</channel>
</rss>
