vote up 2 vote down star

I haven't found any pre-made scripts that would help me analyze my delicious bookmarks. I want to know if there are any websites that I tend to frequently bookmark. I know I can export my bookmarks and can go from there. Has anyone done this? How have you gone about it?

On a side note - are there any RSS readers that do something similar?

flag

3 Answers

vote up 0 vote down

What about using the Export / Download Your Delicious Bookmarks page for further analysis?

link|flag
vote up 0 vote down

Well, I'd suggest the easiest thing to do would be to export them all as XML (using the AJAX API) or HTML, then parse them all into an array, iterate through them and extract the domains and then sort the list and do value counting so you end up with a hash like {"example.org" => 1, "cnn.com", 50} etc. Then sort them so you can see your top ten.

How you do that would depend on which programming language and libraries you prefer to use. I'd probably use Nokogiri and Ruby. Basically, download the data using the API, parse it using the XML parsing library for your preferred programming language, use a URI library to extract the host part of the URI (or use a regular expression) and then just jiggle the array around until it does what you want.

link|flag
vote up 0 vote down

Not exactly what you want but check out xmarks.com

It has many features, plus "site suggestions" according to your bookmarks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.