Delicious Bookmarks - Frequently Asked URLs

I have not found any ready-made scripts that would help me analyze my tasty bookmarks. I want to know if there are any websites that I usually bookmark. I know that I can export my bookmarks and can navigate from there. Has anyone done this? How did you do that?

On the side of the note - are there any RSS readers out there doing something like this?

+2


source to share


2 answers


Okay, I would suggest that the easiest way would be to export them all as XML (using the AJAX API) or HTML, and then parse them all into an array, loop over them and extract the domains, and then sort the list and count the value so you get a hash. eg {"example.org" => 1, "cnn.com", 50}, etc. Then sort them so you can see your top ten.



How you do this depends on which programming language and libraries you prefer to use. I would probably use Nokogiri and Ruby. Basically, load the data using the API, parse it with an XML parsing library for your preferred programming language, use the URI library to extract the host portion of the URI (or use a regex), and then just traverse the array as long as will not do what you want.

+1


source


How about using Export / Load your nested bookmarks for further analysis?



0


source







All Articles