<?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>Weblog for Asbjorn &#187; Internet Marketing</title>
	<atom:link href="http://www.asbjornriedel.com/category/internet-marketing/feed" rel="self" type="application/rss+xml" />
	<link>http://www.asbjornriedel.com</link>
	<description>Not just another WordPress weblog</description>
	<lastBuildDate>Mon, 06 Sep 2010 10:38:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Silo Builder Plugin On Youtube</title>
		<link>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:02:33 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress silo builder]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=209</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/9ATDPzzXFjk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/9ATDPzzXFjk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nofollow or Follow</title>
		<link>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow#comments</comments>
		<pubDate>Thu, 08 Oct 2009 11:32:15 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress link cloaking]]></category>
		<category><![CDATA[wordpress silo]]></category>
		<category><![CDATA[wordpress theme bleeding]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=155</guid>
		<description><![CDATA[Couple of months ago Google changed part of their nofollow strategy. What they changed was the way they calculated page rank distribution to outgoing links. However the main goal of nofollow was to let Google know that a link out of a blog was not to be considered as relevant and should not be counted [...]]]></description>
			<content:encoded><![CDATA[<p>Couple of months ago Google changed part of their nofollow strategy.</p>
<p>What they changed was the way they calculated page rank distribution to outgoing links.</p>
<p>However the main goal of nofollow was to let Google know that a link out of a blog was not to be considered as relevant and should not be counted as such.</p>
<p>The &#8216;potential&#8217; problem with outgoing links to irrelevant sites is that our blog will be regarded as less focused, it would be a case of Theme Bleeding (*1). The theme loosing relevancy.</p>
<p>With Google&#8217;s change of the PR allocation many SEO experts suggested to abandon nofollow altogether, however I think this would cause the undesired effect above.</p>
<p>Still, there is be a better way to resolve the problem of Theme Bleeding (*1). And it would also be effective for any other searchengine that obey the rules in the robots.txt file.</p>
<p>The robots.txt file is a set of rules that tells the search engines what they can index of your site and what they can not.</p>
<p>With <strong>robots.txt </strong>we can instruct the search engines to skip directories, and that is what we can use for our improved nofollow strategy.</p>
<p>Normally when you write a blogpost and enter a link like &lt;<strong>a href = &#8221; http: / / somewhere.com &#8220;</strong>&gt; the searchengine will follow the link.</p>
<p>To prevent this from happening we will change our link to<br />
&lt;<strong>a href = &#8221; redirect/redirect.php?redirect=http : / / somewhere.com &#8220;</strong>&gt;</p>
<p>The content of redirect.php would be</p>
<p><strong>&lt;?php<br />
header(&#8220;location : $GET['redirect']&#8220;);<br />
?&gt;</strong></p>
<p>and the contents of our robot.txt would be</p>
<p><strong>User-agent: *<br />
Disallow: /r/</strong></p>
<p>You have now implemented a nofollow strategy that works for all search engines. An open question is does Google assign outgoing page rank different when you use robots.txt rather than when there are no rules in robots.txt. I have no idea. I guess it must be tested.</p>
<p>One benefit of the process could be that you are now cloaking your links to affiliate sites, though the fact that the destination url is in the redirect url, may be enough to give away the game.</p>
<p>And trouble with the whole process is that we need to remember to put in our link in the redirect form rather than in the normal form.</p>
<p>If you are using WordPress as your blogging platform and have a lot of existing posts, with affiliate links, then this process can become very boring.</p>
<p>And since I have a few of these blogs, I wrote a wordpress plugin to do the process automatically.</p>
<p>My requirements to the plugin are:</p>
<p>* Automatically change all external links in the blog to redirected ones<br />
* Cloak the links in the process, so the redirection destination is not shown.<br />
* Make it possible to exclude selected links (to pass outgoing PR to sites of choice)<br />
* Reorganize the internal linking in the blog so all postings in one category are linked together. Increase Theme Density (*1)<br />
* send an email with weekly and monthly click through stats in CSV format, so it can be imported into excell.</p>
<p>I have installed version 1 of my plugin on several of my blogs and will test over the next period how the ranking is improved in the search engines.</p>
<p>Does this have your interest?</p>
<p>I plan to package the plugin up and sell it eventually.</p>
<p>However, to do this I will need time to test it on different blogs, with different themes and layouts.</p>
<p>Unfortunately that takes time <img src='http://www.asbjornriedel.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  but I shall let you know when it is ready.</p>
<p><br>If you want to know when the plugin will be up for sale enter your name and email below, and I shall let you know.<br><!-- Web Form Generator 2.0 -->
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="118034868">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="wplib">
<input type="hidden" name="redirect" value="http://www.asbjornriedel.com/" id="redirect_f474fb0fac200212b7a83811be732a1b">
<input type="hidden" name="meta_redirect_onlist" value="http://www.asbjornriedel.com/">
<input type="hidden" name="meta_adtracking" value="">
<!-- Web Form Generator 2.0 -->
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="118034868">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="wplib">
<input type="hidden" name="redirect" value="http://www.asbjornriedel.com/?wplib=y" id="redirect_f474fb0fac200212b7a83811be732a1b">
<input type="hidden" name="meta_redirect_onlist" value="http://www.asbjornriedel.com/?wplib=y">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
<table>
<tr><td colspan=2><center></center></td></tr>
<tr><td>Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
<tr><td>Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
    <tr><td colspan=2><center></center></td></tr>
<tr><td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
</table>
<img src="http://forms.aweber.com/form/displays.htm?id=jIwcDMwsHGwc" border="0" />
</form>
</center></p>
<p>You can read more about Theme Bleeding here.</p>
<p>*1) http://www.seo2020.com/lsi/avoid-theme-bleeding.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Changing Existing WordPress Blogs Into Silo Structures</title>
		<link>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures#comments</comments>
		<pubDate>Fri, 06 Mar 2009 09:57:09 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[internal blog linking]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[silo site builder]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=110</guid>
		<description><![CDATA[The advantage of a blog is surely that it is easy to add content. You can optimise the blog a bit, using categories and titles in the url, but the linking inside a standard wordpress blog is, to say the least, a bit chaotic. The best way would be is postings were linked together on [...]]]></description>
			<content:encoded><![CDATA[<p>The advantage of a blog is surely that it is easy to add content.</p>
<p>You can optimise the blog a bit, using categories and titles in the url, but the linking inside a standard wordpress blog is, to say the least, a bit chaotic.</p>
<p>The best way would be is postings were linked together on the categories (topics) rather than on the date of publication.</p>
<p>To achieve this I wrote a <a title="Wordpress Silo Plugin" href="https://www.e-junkie.com/ecom/gb.php?ii=761434&amp;c=ib&amp;aff=24047&amp;cl=32148&quot; target=&quot;ejejcsingle&quot;" target="_blank">wordpress silo plugin</a> that will reorganise the linking between the posts dynamically. This means when I add a new post like the present it will automatically be inserted in the row of links for the categories.</p>
<p><a href="http://www.asbjornriedel.com/wp-content/uploads/2009/03/silomap1.png"><img class="aligncenter size-full wp-image-146" title="silo structure of blog" src="http://www.asbjornriedel.com/wp-content/uploads/2009/03/silo.png" border="0" alt="silo structure of blog" width="345" height="353" /></a></p>
<p>So now it is only to see how the search engines will react to this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What Can We Learn From The Infomillionaire Launch</title>
		<link>http://www.asbjornriedel.com/internet-marketing/what-can-we-learn-from-the-infomillionaire-launch</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/what-can-we-learn-from-the-infomillionaire-launch#comments</comments>
		<pubDate>Thu, 18 Dec 2008 20:50:03 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[jason moffatt infomillionaire]]></category>
		<category><![CDATA[Twitter Postings]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=92</guid>
		<description><![CDATA[Frank and Trey launched the Infomillionaire course Thursday 18th They started out with a dry run in the morning (here in Switzerland) and had some errors with the order cart.  Mainly international orders were causing problems so they had a few hours to get that fixed. But it was really Jason Moffatt that kept the [...]]]></description>
			<content:encoded><![CDATA[<p>Frank and Trey launched the Infomillionaire course Thursday 18th</p>
<p>They started out with a dry run in the morning (here in Switzerland) and had some errors with the order cart.  Mainly international orders were causing problems so they had a few hours to get that fixed.</p>
<p>But it was really Jason Moffatt that kept the news flowing on his <a href="http://www.profitmoffatt.tv">TV show</a></p>
<p><a href="http://www.asbjornriedel.com/wp-content/uploads/2008/12/profitmoffatt-ustreamtv_-i-teach-people-how-to-make-money-on-the-internet-simple-as-that-educationdiyhow-to.png"><img class="size-medium wp-image-93" title="profitmoffatt-ustreamtv_-i-teach-people-how-to-make-money-on-the-internet-simple-as-that-educationdiyhow-to" src="http://www.asbjornriedel.com/wp-content/uploads/2008/12/profitmoffatt-ustreamtv_-i-teach-people-how-to-make-money-on-the-internet-simple-as-that-educationdiyhow-to-300x135.png" alt="Screen Shot www.profitmoffatt.tv" width="300" height="135" /></a><br />
Screen Shot www.profitmoffatt.tv</p>
<p>And when Franks servers overheated, it was Jason that could keep customers informed and after the infomillionaire had been on sale for 30 minutes, Jason had sold over 100 products with 8 upsells.</p>
<p>Part of the show was Jason playing <a href="http://www.youtube.com/watch?v=iEZo84KNxKs">lil jon &#8211; dave chapelle (Yeah!)</a> when he made a sale.</p>
<p>Then Jason started teaching marketing, giving critique on Corey&#8217;s magic trick website. Really good.</p>
<p>Jason really knows his stuff and he is looking well after his affiliate sales, I mean the hour or two that Jason have invested this afternoon is probably going to pay his rent for all next year. (114 sales with 11 upsells right now)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/what-can-we-learn-from-the-infomillionaire-launch/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Latest report on #allisonbday</title>
		<link>http://www.asbjornriedel.com/internet-marketing/latest-report-on-allisonbday</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/latest-report-on-allisonbday#comments</comments>
		<pubDate>Mon, 01 Dec 2008 14:16:50 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[allison reynolds]]></category>
		<category><![CDATA[Twitter Postings]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=71</guid>
		<description><![CDATA[The tweets just kept coming. The whole story is found on search.twitter.com, look for #allisonbday Here are links from two other tweet from LisaHartwell This isn&#8217;t the final surprise &#8211; just a little extra for you to enjoy: http://wwork.com/music/hb_allison.mp3 #allisonbday Darn, wish could type properly &#8211; should have been #allisonbday &#8211; anyway not sure she&#8217;s ready for [...]]]></description>
			<content:encoded><![CDATA[<p>The tweets just kept coming. The whole story is found on search.twitter.com, look for #allisonbday</p>
<p>Here are links from two other tweet from <a onclick="pageTracker._trackPageview('/exit/to/LisaHartwell');" href="http://twitter.com/LisaHartwell" target="_blank">LisaHartwell</a></p>
<p><span id="msgtxt1032060325" class="msgtxt en">This isn&#8217;t the final surprise &#8211; just a little extra for you to enjoy: <a onclick="pageTracker._trackPageview('/exit/link/1032060325')" href="http://wwork.com/music/hb_allison.mp3" target="_blank">http://wwork.com/music/hb_allison.mp3</a> <a href="http://www.asbjornriedel.com/search?q=%23allisonbday"><strong>#allisonbday</strong></a></span></p>
<p><span id="msgtxt1032048907" class="msgtxt en">Darn, wish could type properly &#8211; should have been <a href="http://www.asbjornriedel.com/search?q=%23allisonbday"><strong>#allisonbday</strong></a> &#8211; anyway not sure she&#8217;s ready for next surprise after <a onclick="pageTracker._trackPageview('/exit/link/1032048907')" href="http://snurl.com/6zjqi" target="_blank">http://snurl.com/6zjqi</a></span></p>
<p><span class="msgtxt en">Well, nothing like birthday surprises &#8230;</span></p>
<p><span class="msgtxt en"><a onclick="pageTracker._trackPageview('/exit/to/SWBN');" href="http://twitter.com/SWBN" target="_blank">SWBN</a>: <span id="msgtxt1032065297" class="msgtxt en">Doh! <a onclick="pageTracker._trackPageview('/exit/to/AllisonR')" href="http://twitter.com/AllisonR" target="_blank">@AllisonR</a> Hope you&#8217;ve enjoyed your birthday surprises. Here&#8217;s one more &#8211; and this ones for keeps <a onclick="pageTracker._trackPageview('/exit/link/1032065297')" href="http://twurl.nl/dgbfr2" target="_blank">http://twurl.nl/dgbfr2</a></span></span></p>
<p><span class="msgtxt en"><span class="msgtxt en">And then &#8230;.</span></span></p>
<p><span class="msgtxt en"></span><span class="msgtxt en"></span></p>
<p><span class="msgtxt en"><span class="msgtxt en"><a title="Allison Reynolds" href="http://twurl.nl/ihc41u" target="_blank">Allison gets the last word</a>.</span></span></p>
<p><span class="msgtxt en"><span class="msgtxt en">Happy Birthday   Allison!!!!!!</span></span></p>
<p><span class="msgtxt en"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/latest-report-on-allisonbday/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://wwork.com/music/hb_allison.mp3" length="402875" type="audio/mpeg" />
		</item>
		<item>
		<title>Barb Strikes On Allisons Birthday #allisonbday</title>
		<link>http://www.asbjornriedel.com/internet-marketing/barb-strikes-on-allisons-birthday-allisonbday</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/barb-strikes-on-allisons-birthday-allisonbday#comments</comments>
		<pubDate>Mon, 01 Dec 2008 07:04:28 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[allison reynolds]]></category>
		<category><![CDATA[Twitter Postings]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=69</guid>
		<description><![CDATA[Just in from Karen Kramer Do we have contact with the evil twin? &#8220;@harmonicbarbie: No Girl Geek&#8217;s birthday celebration should go by without a truly &#8220;dream-worthy&#8221; IM Guru http://is.gd/9FXI #allisonbday&#8221; Oh, yeah, and a new clue &#8230; where will it take us ?]]></description>
			<content:encoded><![CDATA[<p><span class="entry-author-name">Just in from Karen Kramer</span></p>
<p>Do we have contact with the evil twin?</p>
<p>&#8220;@harmonicbarbie: No Girl Geek&#8217;s birthday celebration should go by without a truly &#8220;dream-worthy&#8221; IM Guru   <a href="http://is.gd/9FXI" target="_blank">http://is.gd/9FXI</a> <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday&#8221;</strong></a></p>
<p>Oh, yeah, and a new clue &#8230; where will it take us ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/barb-strikes-on-allisons-birthday-allisonbday/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Internet Never Sleeps (But I Did)</title>
		<link>http://www.asbjornriedel.com/internet-marketing/the-internet-never-sleeps-but-i-did</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/the-internet-never-sleeps-but-i-did#comments</comments>
		<pubDate>Mon, 01 Dec 2008 06:58:03 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[allison reynolds]]></category>
		<category><![CDATA[Twitter Postings]]></category>
		<category><![CDATA[twitter treasure hunt]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=66</guid>
		<description><![CDATA[Well, some hours ago I did have a look at Lisa Hartwell&#8217;s blog. I mean, the clue &#8230; But I did not find anything and then went to bed! A short night later and the Google reader is full of #allisonbday and the next link was there as well: retweet: @Susan_Smith @AllisonR Happy Birthday. Keep [...]]]></description>
			<content:encoded><![CDATA[<p>Well, some hours ago I did have a look at <a title="Lisa Hartwell" href="http://audiblemarketing.com/" target="_blank">Lisa Hartwell&#8217;s blog</a>. I mean, the clue &#8230;</p>
<p>But I did not find anything and then went to bed!</p>
<p>A short night later and the <a title="Google Reader" href="http://www.google.com/reader" target="_blank">Google reader </a>is full of #allisonbday and the next link was there as well:</p>
<p>retweet: <a href="http://twitter.com/Susan_Smith" target="_blank">@Susan_Smith</a> <a href="http://twitter.com/AllisonR" target="_blank">@AllisonR</a> Happy Birthday. Keep following the clues: <a href="http://audiblemarketing.net/allisonreynolds/" target="_blank">http://audiblemarketing.net/allisonreynolds/</a> <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a></p>
<p>And the next clue points to Canada, wonder who that could be <img src='http://www.asbjornriedel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>But wait there is more &#8230;</p>
<p>Another clue from <a title="Shannon Cole" href="http://twitter.com/ShannonCole" target="_blank">Shannon Cole</a></p>
<p>Birthday Wishes from Newfoundland to the only girl I know with a bald pussy&#8230;. cat.. that is&#8230; <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a> <a href="http://is.gd/9EDK" target="_blank">http://is.gd/9EDK</a></p>
<p>From Vegas &#8230;</p>
<p>And it is spreading, here is a tweet from <a title="Thirty Day Challenge Plus " href="http://www.thirtydaychallengeplus.com">Ed Dale</a></p>
<p>&#8220;I hope <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a> watchers read my last email carefully&#8230;&#8221;</p>
<p>Always read the PPS!</p>
<p>Oh and here is the link from <a title="Susan Smith" href="http://wwork.com/" target="_blank">Susan_Smith</a></p>
<div class="entry-body">
<div>
<div class="item-body">
<div><a href="http://twitter.com/allisonr" target="_blank">@allisonr</a> Happy, happy, happy birthday <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a> from the Mushroom Capital of the World (Kennett Square, PA)&#8230;really! <a href="http://is.gd/9EXz" target="_blank">http://is.gd/9EXz</a></div>
</div>
</div>
</div>
<p>And a tweet from <span class="entry-author-name"><a title="Sheryl Loch" href="http://sherylloch.com/" target="_blank">Sheryl Loch</a> sends ut to UK. (<strong>Watch it, it is hot</strong>)<br />
</span></p>
<p><a href="http://twitter.com/allisonr" target="_blank">@allisonr</a> Keep your tongue in your mouth &amp; your jaw off the floor! Happy Treasure Hunting! Muuhwaaa <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a></p>
<p><a title="Manchester Mob" href="http://www.manchestermob.com/" target="_blank">Vince and Nathan</a> what more can a woman wish for on her birthday</p>
<p>And now we present &#8230; the one and only <span class="entry-author-name"><a title="Ed Dale" href="http://twitter.com/ed_dale" target="_blank">Ed_Dale</a> ( Totally Plugged )</span></p>
<div class="entry-body">
<div>
<div class="item-body">
<div><a href="http://media.thirtydaychallenge.com/arbirthday.m4a" target="_blank">http://media.thirtydaychallenge.com/arbirthday.m4a</a> <a href="http://search.twitter.com/search?q=%23allisonbday" target="_blank"><strong>#allisonbday</strong></a> (and if your asking they do have photos)</div>
</div>
</div>
<div>To be contined &#8230;</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/the-internet-never-sleeps-but-i-did/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://is.gd/9EXz" length="402875" type="audio/mpeg" />
<enclosure url="http://media.thirtydaychallenge.com/arbirthday.m4a" length="556002" type="audio/x-m4a" />
		</item>
		<item>
		<title>Updates on the Treasure Hunt</title>
		<link>http://www.asbjornriedel.com/internet-marketing/updates-on-the-treasure-hunt</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/updates-on-the-treasure-hunt#comments</comments>
		<pubDate>Sun, 30 Nov 2008 20:58:16 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[allison reynolds]]></category>
		<category><![CDATA[Twitter Postings]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=64</guid>
		<description><![CDATA[To follow along I set up a twitter search for the tag used in the first post  ( go to search.twitter.com  and search for the tag: #allisonbday ) Here is first twitter post @AllisonR Happy Birthday! Have a great day! We have a surprise for you&#8230;visit http://swbn-likes.com/allisonreynolds/ #allisonbday And the site http://swbn-likes.com/allisonreynolds/ Scary picture of [...]]]></description>
			<content:encoded><![CDATA[<p>To follow along I set up a <a title="twitter search" href="http://search.twitter.com" target="_blank">twitter search</a> for the tag used in the first post  ( go to search.twitter.com  and search for the tag: #allisonbday )</p>
<p>Here is first twitter post</p>
<p>@AllisonR Happy Birthday! Have a great day! We have a surprise for you&#8230;visit http://swbn-likes.com/allisonreynolds/ #allisonbday</p>
<p>And the site <a title="http://swbn-likes.com/allisonreynolds/" href="http://swbn-likes.com/allisonreynolds/">http://swbn-likes.com/allisonreynolds/</a></p>
<p>Scary picture of Frank and a clue &#8230;</p>
<p>Now I didnt know that KarenKramer was from Alabama, but I saw a tweet from Karen</p>
<p><span class="entry-content">@<a href="http://twitter.com/johnreese">johnreese</a> Scare those flu germs with &#8220;revealing&#8221; pic of Frank Kern on this page. Protect your eyes as you scroll down <a style="background-color: #ff0000;" rel="nofollow" href="http://is.gd/9CQB" target="_blank">http://is.gd/9CQB</a></span></p>
<p>Frank Kern picture? Oh, yes and <a title="Karen Kramer Parenting Help" href="http://www.parentinghelpme.com/">Karen has a blog</a></p>
<p>And what do we find there&#8230;</p>
<p align="left"><span style="font-size: medium;">&#8220;Your next Clue….</span></p>
<p align="left"><strong><span style="color: #ff00ff;"><em>A woman’s work is never done Or so the saying goes. It’s women who mean business This lady really knows&#8221;</em></span></strong></p>
<p align="left">Well for now I am stuck, though there were some tags on that blog, maybe technorati &#8230;</p>
<p align="left">
<p align="left">Asbjorn</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/updates-on-the-treasure-hunt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Twitter Treasure Hunt and Happy Birthday to Allison Reynolds</title>
		<link>http://www.asbjornriedel.com/internet-marketing/a-twitter-treasure-hunt-and-happy-birthday-to-allison-reynolds</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/a-twitter-treasure-hunt-and-happy-birthday-to-allison-reynolds#comments</comments>
		<pubDate>Sun, 30 Nov 2008 20:33:50 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[allison reynolds]]></category>
		<category><![CDATA[Twitter Postings]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=62</guid>
		<description><![CDATA[Really some people have too much time on their hands. Today (well in Australia at least) it is Allison Reynolds from Secret Women&#8217;s Business Network who have birthday and what happend, well check out this link http://twurl.nl/e1aona which was posted on twitter, together with a tag  #allisonbday I hope Allison will work it out, there [...]]]></description>
			<content:encoded><![CDATA[<p>Really some people have too much time on their hands.</p>
<p>Today (well in Australia at least) it is Allison Reynolds from <a title="Secret Women's Business Network" href="http://www.swbnetwork.com" target="_blank">Secret Women&#8217;s Business Network</a> who have birthday and what happend, well check out this link <a title="http://twurl.nl/e1aona " href="http://twurl.nl/e1aona ">http://twurl.nl/e1aona</a> which was posted on twitter, together with a tag  #allisonbday</p>
<p>I hope Allison will work it out, there is little doubt who is behind it all and there is probably a lesson to be learned about marketing in this as well.</p>
<p>Asbjorn</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/a-twitter-treasure-hunt-and-happy-birthday-to-allison-reynolds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Market Samurai 0.50</title>
		<link>http://www.asbjornriedel.com/internet-marketing/testing-market-samurai-050</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/testing-market-samurai-050#comments</comments>
		<pubDate>Wed, 30 Jul 2008 10:14:21 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[immediate edge]]></category>
		<category><![CDATA[market samurai]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=49</guid>
		<description><![CDATA[Over the last 6 months I have had the privilege to work as intern on the Immediate Edge. A very interesting experience. As with all projects there are positive parts and negative parts. Right now it is however in the middle of the positive parts. Testing of the newest Market Samurai. Just for this tool [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last 6 months I have had the privilege to work as intern on the Immediate Edge.</p>
<p>A very interesting experience. As with all projects there are positive parts and negative parts.</p>
<p>Right now it is however in the middle of the positive parts. Testing of the newest Market Samurai.</p>
<p>Just for this tool alone I would become a paid subscriber of the <a title="Immediate Edge" href="http://asbjornriedel.com/ImmediateEdge.php" target="_blank">Immediate Edge</a>.</p>
<p><img class="aligncenter" src="http://farm4.static.flickr.com/3007/2716682460_c33398e350.jpg?v=0" alt="Market Samurai SEO Competition" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/testing-market-samurai-050/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
