<?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/"
xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Yoast &#187; Technorati</title> <atom:link href="http://yoast.com/tag/technorati/feed/" rel="self" type="application/rss+xml" /><link>http://yoast.com</link> <description>Tweaking Websites</description> <lastBuildDate>Fri, 10 Feb 2012 15:02:50 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.4-alpha-19827</generator> <image><title>Yoast</title> <url>http://yoast.com/wp-content/themes/yoast-v2/images/yoast-logo-rss.png</url><link>http://yoast.com</link> <width>144</width> <height>103</height> <description>Tweaking Websites</description> </image><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Using the Technorati API on your blog</title><link>http://yoast.com/technorati-api-wordpress/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technorati-api-wordpress</link> <comments>http://yoast.com/technorati-api-wordpress/#comments</comments> <pubDate>Tue, 28 Oct 2008 17:34:00 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://yoast.com/?p=1277</guid> <description><![CDATA[<p>In my effort to remove all badges from my front page and decrease the load time, I have now moved to using the Technorati API to display Technorati info. It looks like this: The code is almost as easy as the code to display your FeedBurner subscribers or your last tweet. You'll need to create [...]</p><p><a
href="http://yoast.com/technorati-api-wordpress/">Using the Technorati API on your blog</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>In my effort to remove all badges from my front page and decrease the load time, I have now moved to using the Technorati API to display Technorati info. It looks like this:</p><p><img
class="aligncenter" src="http://cdn.yoast.com/wp-content/uploads/2008/10/technorati-api.png" alt="Technorati API" width="199" height="102" /></p><p>The code is almost as easy as the code to <a
href="http://yoast.com/feedburner-subscriber-count/">display your FeedBurner subscribers</a> or <a
href="http://yoast.com/display-latest-tweet/">your last tweet</a>. You'll need to create an account with Technorati and then <a
href="http://technorati.com/developers/apikey.html">get your API key</a>. That page will also tell you how much queries you've made that day, and what your daily allowance is.</p><p>This is the code, including caching:</p><pre class="brush: php; title: ; notranslate">$technorati = get_option(&quot;technorati&quot;);
if ($technorati['lastcheck'] &amp;lt; ( mktime() - 600 ) ) {
	$apikey 	= &quot;apikey&quot;;
	$endpoint 	= &quot;http://api.technorati.com/cosmos?key=&quot;.$apikey;
	$request 	= $endpoint.&quot;&amp;amp;url=yoast.com&amp;amp;limit=10&quot;;
	$snoopy 	= new Snoopy;
	$result 	= $snoopy-&amp;gt;fetch($request);
	if ($result) {
		$pattern1 = '/&amp;lt;inboundblogs&amp;gt;([0-9]+)&amp;lt;\/inboundblogs&amp;gt;/';
		$pattern2 = '/&amp;lt;inboundlinks&amp;gt;([0-9]+)&amp;lt;\/inboundlinks&amp;gt;/';
		$pattern3 = '/&amp;lt;rank&amp;gt;([0-9]+)&amp;lt;\/rank&amp;gt;/';
		preg_match($pattern1, $snoopy-&amp;gt;results, $matches);
		preg_match($pattern2, $snoopy-&amp;gt;results, $matches2);
		preg_match($pattern3, $snoopy-&amp;gt;results, $matches3);
		$technorati['inboundblogs'] = number_format($matches[1]);
		$technorati['inboundlinks'] = number_format($matches2[1]);
		$technorati['rank'] 	= number_format($matches3[1]);
		$technorati['lastcheck']= mktime();
		update_option(&quot;technorati&quot;,$technorati);
	}
}
echo &quot;&amp;lt;h3&amp;gt;Technorati&amp;lt;/h3&amp;gt;&quot;;
echo &quot;&amp;lt;p&amp;gt;&quot;.$technorati['inboundblogs'].&quot; blogs linked
	&quot;.$technorati['inboundlinks'].&quot; times in the last 6 months,
	ranking it as &quot;.$technorati['rank'].&quot; among all blogs.&amp;lt;/p&amp;gt;&quot;;</pre><p>That's it! Let me know if you've got any questions!</p><p><a
href="http://yoast.com/technorati-api-wordpress/">Using the Technorati API on your blog</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technorati-api-wordpress/feed/</wfw:commentRss> <slash:comments>26</slash:comments> <media:thumbnail url="http://cdn.yoast.com/wp-content/uploads/2008/10/technorati-api.png" /> <media:content url="http://cdn.yoast.com/wp-content/uploads/2008/10/technorati-api.png" medium="image"> <media:title type="html">Technorati API</media:title> </media:content> </item> <item><title>Technorati Authority: why it sucks</title><link>http://yoast.com/technoraty-authority-sucks/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technoraty-authority-sucks</link> <comments>http://yoast.com/technoraty-authority-sucks/#comments</comments> <pubDate>Tue, 12 Aug 2008 09:38:24 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://yoast.com/?p=873</guid> <description><![CDATA[<p>When I moved from joostdevalk.nl to yoast.com, I committed what someone described as "Technorati suicide". Why? Let me explain how Technorati Authority works. Your Technorati Authority is simply the number of unique blogs linking to your blog over the last 6 months. In my case, yoast.com hasn't been around for 6 months yet, and before [...]</p><p><a
href="http://yoast.com/technoraty-authority-sucks/">Technorati Authority: why it sucks</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.yoast.com/images/technorati.gif" alt="technorati" class="alignright"/>When I moved from joostdevalk.nl to yoast.com, I committed what someone described as "Technorati suicide". Why? Let me explain how Technorati Authority works.</p><p>Your Technorati Authority is simply the number of unique blogs linking to your blog over the last 6 months. In my case, yoast.com hasn't been around for 6 months yet, and before that, it was joostdevalk.nl. Of course, joostdevalk.nl has been properly 301 redirected to yoast.com, and has thus taken over all those rankings in all search engines. But not in Technorati.</p><p>Technorati choses not to follow 301 redirects, and because of that, I'm now stuck with two different authority scores. At this point, <a
rel="nofollow" href="http://technorati.com/blogs/yoast.com?reactions">joostdevalk.nl</a> has an authority of 1,520, ranking # 1,271 in Technorati. <a
rel="nofollow" href="http://technorati.com/blogs/yoast.com?reactions">Yoast.com</a> has an authority of 590, ranking # 5,548. This <em>should</em> be combined of course, in which case I'd have an authority of 2,110, and would almost rank in the top 500!</p><p>The stupidest thing? Technorati <em>has</em> followed the redirect, because the page for joostdevalk.nl reflects my <em>new</em> title, and calls it yoast.</p><p>Why I even bother? Well because I like the bragging rights associated with having a Technorati top 1,000 blog, and because all sorts of "top blog listings" like the <a
href="http://adage.com/power150/">AdAge 150</a>, use Technorati in their calculation of your ranking, and this caused me to drop rapidly.</p><p>So, I call upon thee, Technorati, to FIX THIS!</p><p><a
href="http://yoast.com/technoraty-authority-sucks/">Technorati Authority: why it sucks</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technoraty-authority-sucks/feed/</wfw:commentRss> <slash:comments>11</slash:comments> <media:thumbnail url="http://cdn.yoast.com/images/technorati.gif" /> <media:content url="http://cdn.yoast.com/images/technorati.gif" medium="image"> <media:title type="html">technorati</media:title> </media:content> </item> <item><title>Technorati Ping Bookmarklet</title><link>http://yoast.com/technorati-ping-bookmarklet/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technorati-ping-bookmarklet</link> <comments>http://yoast.com/technorati-ping-bookmarklet/#comments</comments> <pubDate>Fri, 11 Jan 2008 14:00:53 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO tools]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/technorati-ping-bookmarklet/</guid> <description><![CDATA[<p>Sometimes I don't want to run my growing set of tools to ping Technorati, but simply want to ping one or a few posts, without having to go to the manual ping form. So I've created a small simple bookmarklet which let's you ping the current page: Now you can easily ping those blogs linking [...]</p><p><a
href="http://yoast.com/technorati-ping-bookmarklet/">Technorati Ping Bookmarklet</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Sometimes I don't want to run my growing set of tools to ping Technorati, but simply want to ping one or a few posts, without having to go to the manual ping form. So I've created a small <a
href="javascript:(function(){var%20r=escape(window.location);document.location='http://technorati.com/ping/?url='+r;})();">simple bookmarklet</a> which let's you ping the current page:</p><pre class="brush: jscript; title: ; notranslate">javascript:(function(){var%20r=escape(window.location);document.location='http://technorati.com/ping/?url='+r;})();</pre><p>Now you can easily ping those blogs linking to you, and <a
href="http://yoast.com/technorati-authority-booster/">increase your Technorati ranking</a>!</p><p><a
href="http://yoast.com/technorati-ping-bookmarklet/">Technorati Ping Bookmarklet</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technorati-ping-bookmarklet/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Technorati Authority Booster</title><link>http://yoast.com/technorati-authority-booster/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technorati-authority-booster</link> <comments>http://yoast.com/technorati-authority-booster/#comments</comments> <pubDate>Tue, 01 Jan 2008 21:56:00 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[SEO tools]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/technorati-authority-booster/</guid> <description><![CDATA[<p>I was reading a post on Sebastian's Pamphlets about increasing your Technorati Authority, which was based on an another blog post. The idea is simple: compile a list of blogs that link to you, and that aren't indexed by Technorati. Then ping Technorati with all those pages. The first post wanted you to do a [...]</p><p><a
href="http://yoast.com/technorati-authority-booster/">Technorati Authority Booster</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>I was reading a post on <a
href="http://sebastians-pamphlets.com/">Sebastian's Pamphlets</a> about <a
href="http://sebastians-pamphlets.com/increase-your-technorati-reputation/">increasing your Technorati Authority</a>, which was based on an <a
href="http://www.hybrid6.com/webgeek/2007/12/technorati-tip-improve-your-authority.php">another blog post</a>.</p><p><span
id="more-498"></span>The idea is simple: compile a list of blogs that link to you, and that aren't indexed by Technorati. Then ping Technorati with all those pages. The first post wanted you to do a <a
href="http://www.technorati.com/ping/">manual ping</a> on all of them, which is way too much work.</p><p>Sebastian created a tool with which you can ping multiple URL's at once, making the process a lot faster. Now the next step is obvious: if you can automate pinging, all you have to do is scrape other search engines, and ping Technorati with all the content it's unaware of. That gives you a pretty big advantage.</p><p>You've guessed it: I've done that. It will be available within a few weeks. Something will be different though: this will be a <em>for pay</em> tool part of a kit called the Blog Marketer's Toolkit. Why? Because if <em>everybody</em> has this plugin, there's no advantage to the people using it anymore, which is why I will only be making it available to a limited number of people. And of course, I like to make a bit of money as well sometimes :)</p><p><a
href="http://yoast.com/technorati-authority-booster/">Technorati Authority Booster</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technorati-authority-booster/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> <item><title>Technorati Greasemonkey script removed</title><link>http://yoast.com/technorati-greasemonkey-script-removed/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technorati-greasemonkey-script-removed</link> <comments>http://yoast.com/technorati-greasemonkey-script-removed/#comments</comments> <pubDate>Wed, 06 Dec 2006 09:24:04 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Greasemonkey]]></category> <category><![CDATA[SEO tools]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/technorati-greasemonkey-script-removed/</guid> <description><![CDATA[<p>In response to my previous post about unlimited API queries, I was urged by David Sifry, CEO of Technorati, to contact the Technorati developers and work out a way to get my script working through the API. I then contacted the developer team and got a great fast response from Ian Kallen, and we've been [...]</p><p><a
href="http://yoast.com/technorati-greasemonkey-script-removed/">Technorati Greasemonkey script removed</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>In response to my previous post about <a
href="http://yoast.com/web-20-and-api%e2%80%99s-the-case-for-unlimited-queries/">unlimited API queries</a>, I was urged by David Sifry, CEO of Technorati, to contact the Technorati developers and work out a way to get my script working through the API.</p><p>I then contacted the developer team and got a great fast response from Ian Kallen, and we've been looking together at a way to get this to work without bashing the hell (my words) out of their servers. Up till now that didn't work, and they have asked me to remove the script for now.</p><p>The official statement: "<em>The query pattern and absence of caching exhibits an operational pattern that we can't presently support. However, we're happy to work with you in the days ahead to provide a scalable interface to support this functionality.</em>"</p><p>Let's see what comes of that! For now, I'm taking the script down.</p><p><a
href="http://yoast.com/technorati-greasemonkey-script-removed/">Technorati Greasemonkey script removed</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technorati-greasemonkey-script-removed/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Web 2.0 and APIs: the case for Unlimited queries</title><link>http://yoast.com/web-20-apis-unlimited-queries/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-20-apis-unlimited-queries</link> <comments>http://yoast.com/web-20-apis-unlimited-queries/#comments</comments> <pubDate>Tue, 05 Dec 2006 13:18:33 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Webdesign & development]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/web-20-and-api%e2%80%99s-the-case-for-unlimited-queries/</guid> <description><![CDATA[<p>Every self respecting search engine has one, loads of other sites have one, and lots of people are using them to make great new stuff: Application Programming Interfaces or API's. There's a big 'but' on some of them though... Wikipedia describes an API as: 'An application programming interface (API) is the interface that a computer [...]</p><p><a
href="http://yoast.com/web-20-apis-unlimited-queries/">Web 2.0 and APIs: the case for Unlimited queries</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Every self respecting search engine has one, loads of other sites have one, and lots of people are using them to make great new stuff: Application Programming Interfaces or API's. There's a big '<em>but</em>' on some of them though...<span
id="more-118"></span></p><p><a
href="http://en.wikipedia.org">Wikipedia</a> describes an <a
href="http://en.wikipedia.org/wiki/API">API</a> as: '<em>An application programming interface (API) is the interface that a computer system, library or application provides in order to allow requests for services to be made of it by other computer programs, and/or to allow data to be exchanged between them.</em>'</p><p>Now these API's are super useful, I use them in several of my scripts and have great fun with them. I used the <a
href="http://www.technorati.com/developers/api/">Technorati API</a>, for instance, in the first version of the <a
href="http://yoast.com/code/technorati-rank/">Technorati rank and link count Greasemonkey script</a> I wrote. This was fast, and worked quite well for a while, so I was very happy. After a few hours of browsing though, it stopped working. The error I got was '<em>You have used up your daily allotment of Technorati API queries.</em>'</p><p>Now I can't understand why they'd want to limit use of the API like that. Why not? Well, now that I have decided to not use the API (after all how much is 500 queries when you distribute this script to 100+ people?), I'm left with no other choice but to scrape the content of their normal site. This costs them way and way more bandwidth, and it's significantly slower. That's not much of a service is it? Remember: I do want to use their services! I want to know the Technorati rank for each page I'm visiting, that's a good sign for them, isn't it?</p><p>So, please <a
href="http://www.technorati.com">Technorati</a>: get rid of that maximum number of queries. Oh and <a
href="http://www.google.com">Google</a> and <a
href="http://www.yahoo.com">Yahoo!</a>, if you're listening? Do the same, please!</p><p><a
href="http://yoast.com/web-20-apis-unlimited-queries/">Web 2.0 and APIs: the case for Unlimited queries</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/web-20-apis-unlimited-queries/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Technorati Greasemonkey script</title><link>http://yoast.com/technorati-greasemonkey-script/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=technorati-greasemonkey-script</link> <comments>http://yoast.com/technorati-greasemonkey-script/#comments</comments> <pubDate>Mon, 04 Dec 2006 18:44:36 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Greasemonkey]]></category> <category><![CDATA[SEO tools]]></category> <category><![CDATA[Technorati]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/technorati-greasemonkey-script/</guid> <description><![CDATA[<p>Want to see the Technorati rank and the number of inbound links for a page? I wrote a Greasemonkey script that shows you just that, it does that by opening the search page for the current URL on Technorati and finding those values on it. The first implementation I did used a script on my [...]</p><p><a
href="http://yoast.com/technorati-greasemonkey-script/">Technorati Greasemonkey script</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.yoast.com/wp-content/uploads/images/technorati.gif" alt="Technorati" class="alignright" />Want to see the <a
href="http://www.technorati.com">Technorati</a> rank and the number of inbound links for a page? I wrote a <a
href="http://greasemonkey.mozdev.org/">Greasemonkey</a> script that shows you just that, it does that by opening the search page for the current URL on Technorati and finding those values on it.</p><p>The first implementation I did used a script on my server, this version does it completely client side, using the wonderful <code>GM_xmlhttpRequest</code> function and some regexes.</p><p>So, check it out: <del>Technorati rank and link count script</del> (<a
href="http://yoast.com/technorati-greasemonkey-script-removed/">script removed at the behest of Technorati</a>).</p><p><a
href="http://yoast.com/technorati-greasemonkey-script/">Technorati Greasemonkey script</a> is a post by <a
rel="author" href="http://yoast.com/author/admin/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/technorati-greasemonkey-script/feed/</wfw:commentRss> <slash:comments>6</slash:comments> <media:thumbnail url="http://cdn.yoast.com/wp-content/uploads/images/technorati.gif" /> <media:content url="http://cdn.yoast.com/wp-content/uploads/images/technorati.gif" medium="image"> <media:title type="html">Technorati</media:title> </media:content> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/21 queries in 0.007 seconds using apc
Object Caching 1248/1281 objects using apc
Content Delivery Network via cdn.yoast.com

Served from: yoast.com @ 2012-02-11 08:35:07 -->
