47 XML-RPC Ping Services
Update Services let other people know you’ve updated your website. These services are more commonly used in blogs, sending a XML-RPC ping to various services each time you create a blog post.
I have gathered a list of XML-RPC Ping Services and decided to post here.
You can set up Wordpress to send pings to these services automatically: Choose Options > Writing > Update Services > Paste the list below there and select update.
That’s all now every time you publish a new blog post all those services will be updated automatically.
http://api.feedster.com/ping
http://api.moreover.com/ping
http://api.my.yahoo.com/rss/ping
http://blogsearch.google.com/ping/RPC2
http://ping.amagle.com/
http://ping.bitacoras.com
http://ping.blo.gs/
http://ping.feedburner.com
http://ping.rootblog.com/rpc.php
http://ping.syndic8.com/xmlrpc.php
http://ping.weblogalot.com/rpc.php
http://rcs.datashed.net/RPC2/
http://rpc.blogbuzzmachine.com/RPC2
http://rpc.blogrolling.com/pinger/
http://rpc.icerocket.com:10080/
http://rpc.newsgator.com/
http://rpc.technorati.com/rpc/ping
http://rpc.weblogs.com/RPC2
http://topicexchange.com/RPC2
http://www.blogdigger.com/RPC2
http://www.blogoole.com/ping/
http://www.blogoon.net/ping/
http://www.blogsnow.com/ping
http://www.blogstreet.com/xrbin/xmlrpc.cgi
http://www.lasermemory.com/lsrpc/
http://www.newsisfree.com/RPCCloud
http://www.popdex.com/addsite.php
http://www.snipsnap.org/RPC2
http://www.wasalive.com/ping/
http://www.weblogues.com/RPC/
http://www.bitacoles.net/ping.php
http://rpc.wpkeys.com
http://rpc.technorati.com/rpc/ping
http://rpc.britblog.com
http://pingoat.com/goat/RPC2
http://bulkfeeds.net/rpc
http://rpc.weblogs.com/RPC2
http://api.moreover.com/RPC2
http://www.blogpeople.net/servlet/weblogUpdates
http://ping.fakapster.com/rpc
http://ping.bloggers.jp/rpc/
http://bblog.com/ping.php
http://rpc.tailrank.com/feedburner/RPC2
http://ping.myblog.jp
http://pinger.blogflux.com/rpc
http://blog.goo.ne.jp/XMLRPC
http://rpc.pingomatic.com
Popularity: 93%
What I´m listening to: Radiohead - OK Computer
This Post Was Brought To You By:
Recently on The16Art.com ...
Culterama TV Interview in Colombia with Adam Schofield
Adam Schofield is a friend of mine who is couch surfing around world and writing a book about his experience. He has been interviewed by a Colombian TV show called Culterama where he spoke about his experience so far and philosophy behind couch surfing and travelling.
Popularity: 76%
CSS: Automatically Marked and Accessible External Links
The guideline 13th from the Web Content Accessibility Guidelines 1.0 clearly states that a website should provide clear navigation mechanisms.
13.1 Clearly identify the target of each link. [Priority 2]
Link text should be meaningful enough to make sense when read out of context — either on its own or as part of a sequence of links. Link text should also be terse. For example, in HTML, write “Information about version 4.3″ instead of “click here”. In addition to clear link text, content developers may further clarify the target of a link with an informative link title (e.g., in HTML, the “title” attribute).
This guideline indicates that every external link should be clearly marked. I believe that is important to make websites that are accessible but on the other hand marking all external using classes or title attributes it is time consuming and prone to error. It would be very easy to overlook the odd link, well at least for a forgetful soul like me.
The method used in this tutorial addresses this issue effectively using only CSS.
The following CSS attribute selector selects any link with the href attribute that begins with “http://“, but does not contain the defined domain name (yourdomain.com for this example). It uses two separate attribute selectors so that it will match the URI whether or not uses the www.
a[href^="http://"]:not([href*="yourdomain.com"])::after {
content: "\2197";
}
The CSS code above matches:
<a href="http://www.yourdomain.com">Link with www</a>
and
<a href="http://yourdomain.com">Link without www</a>
Smashing Magazine has explored this technique before, the CSS code above simply places an north east arrow ( ↗) after any outgoing link. To make things a little prettier I have just tweaked it further:
1. To make the icon appearing different for each link state, I have created three variations of the same image in one file:
![]()
2. Added a CSS rule to add a background image to the normal state of the external link.
a[href^="http://"]:not([href*="yourdomain.com"]) {
background: url(images/external_link.png) no-repeat 100% 3px;
padding: 0 12px 0 0;
}
3. Added a CSS rule to add a background image to the hover state of the external link.
a:hover[href^="http://"]:not([href*="yourdomain.com"]) {
background: url(images/external_link.png) no-repeat 100% -97px;
padding: 0 12px 0 0;
}
4. Added a CSS rule to add a background image to the visted state of the external link.
a:visited[href^="http://"]:not([href*="yourdomain.com"]) {
background: url(images/external_link.png) no-repeat 100% -197px;
padding: 0 12px 0 0;
}
Note
Internet Explorer doesn’t seem to like this method very much. It is not a big deal though because it simply ignores the rule, not displaying the background image. But to be honest… Who cares! There are so many standard compliant rules that don’t work with IE anyway.
Let me know what you think if you encounter any problems with this method or if you feel that there are better ways to achieve this.
Tino
Popularity: 100%
Personal Challenge: Get Better Rankings For “Tino”
Over my web developer/SEO(er) career I have optimised many of my websites for a vast number of keywords.
A couple of months ago I have noticed through my web analytics stats that someone reached my website when searched for ‘Tino‘ on Google. When I checked the SERPs, this website were ranking for tino at the following positions:
SE Rankings for ‘tino’ on 03 November 2007
- Google.co.uk - 35th
- Google.com - N/A
- Yahoo.com - 153th
- Yahoo.co.uk - N/A
I have then decided to take on a little challenge of my own: to reach Google and Yahoo 1st page
and share my experience with you.
Please note: I’m not at all trying to foolish search engines with this experiment, seeing that Tino is my name it makes perfect sense ranking well for that keyword because friends and previous clients may try to find me using that keyword.
Well, as it stands now I have managed to improve my rankings a little bit:
SE Rankings for ‘tino’ on 17 December 2007
- Google.co.uk - 14th
- Google.com - N/A
- Yahoo.com - 58th
- Yahoo.co.uk - 217th
It’s not bad but not first page yet :-). I have achieved this mainly with on page optimisation, some reciprocal linking and other off page optimisation techniques.
Have you got any other suggestions?
Popularity: 83%
