No more daily link posting
or follow me at Friendfeed
.
or follow me at Friendfeed
.
about O'Reilly's Connection
, a now defunct social network for geeks. Some days ago Brett Porter wrote about his experiences with social networks
, and I decided to start over with this blog post.
Being user of some social networks of different flavors, I noted that the number of connections I have in different network differs strongly. One reason is that some network have a larger user base, others make it very hard to add connections, others imply a closeness of relationships that I do not want to share with everyone. So, what level of social relationships does being connected in one network imply?
The most valuable network for me (apart from the address book synch of Plaxo) is del.icio.us, because it allows me to track and share ideas with people I find interesting and this is despite the poor network capabilities of del.icio.us. So if you would like to connect with me in del.icio.us, just leave a comment with your username,
I am using del.icio.us extensively. Not only for keeping my own bookmarks, also for discovering new links (by following my network) and of course, using the for:trieloff tag in del.icio.us is the way I prefer to get informed about interesting links.
When watching some of the links I get send using this method, I ask my self: "What do they (my friends, family and co-workers) think of me?". What do they think is interesting for me and worth tagging a for:trieloff?
In order to answer this question, I wrote a small ruby script that scrapes my personal del.icio.us link inbox, searches for tags and ranks them according to their popularity. This is the tag cloud the program came up with:
If you compare this to my own tag cloud of things I blog or bookmark, you will find a big overlap. It looks like they know me quite well.
and Goshaky Weblogs
use this software and this is the reason why so many great bloggers are on JRoller. But the standard Roller templates get one thing wrong: They fail to set the correct title for individual weblog permalink pages.
Take for example the Bile Blog
, which is one of the most popular blogs on JRoller. The title of the start page is "The Bile Blog", but if you turn to an individual entry's permalink page, you will see the title of this page, e.g. of Another googleturd
is again "The Bile Blog". Why is this bad? The top-5 reasons are:
, which means less visitors for the Bile Blog.
and find out whether a link is pointing to the start page or an entry,
All you have to do is to login to your JRoller weblog. Click on Preferences, click on Theme, click on Customize (if you are not already using a customized theme), click on Templates and edit the Weblog or _decorator template. You need to find the text between <title> and </title> and paste following code:
#macro( showEntryTitle $entries)
#foreach( $entry in $entries )
#if ( $velocityCount == 1)
$entry.title
#end
#if ( $velocityCount == 2)
and more
#end
#end
#end
#if ($pageModel.weblogEntry)
#set($entries = [$pageModel.weblogEntry])
#showWebsiteTitle():
#showEntryTitle( $entries )
#else
#showWebsiteTitle()
#end
This will show the title of your current post on permalink pages and leave the start page unchanged. And, most important it will make Google, del.icio.us and Firefox users happy.
, enter the value '0' for 'out_cat_id' and 'out_time' (I've found no other values to work) and the ID of your weblog, e.g. 'lars' as 'out_blog_id'.
Update, the URL has been changed from /xmlrpc to /roller-services/xmlrpc