Live data from Hacker News

Hey Yahoo, Can you please open source Delicious?

web.archive.org

71–80 of 92 posts

Re: Hey Yahoo, Can you please open source Delicious?

#72
post #24

For ppl who haven't exported their bookmarks yet, I wrote a quick webapp to help (for the command line skittish) http://mattcrampton.com/delicious

For non-command-line-skittish people (on Unix), you can say something like wget --quiet --http-user=`head -n 1 ~/.deliciousrc` --http-passwd=`tail -n 1 ~/.deliciousrc` -O ~/docs/delicious.xml http://del.icio.us/api/posts/all where ~/.deliciousrc is a text file with two lines: yourusername yourpassword (or something similar with curl) I run this out of cron nightly and back up my bookmarks in a git repo, along with my…

Using curl:

  curl -n -o ~/docs/delicious.xml https://api.del.icio.us/v1/posts/all
where `-n` flag forces curl to read ~/.netrc file:

  machine api.del.icio.us login yourusername password yourpassword

Re: Hey Yahoo, Can you please open source Delicious?

#75
post #7

joshu on Twitter: http://twitter.com/joshu/status/15492062459731968 "@cdixon open sourcing it would be an enormous pain in the ass. selling it not as bad but yahoo infrastructure and auth problematic." Besides that, open sourcing delicious wouldn't solve the problem - someone still has to host it, and maintain it, and import several million people's bookmark collections in to it. That takes significant time and money…

You have an opportunity to pick a license when you set up a Delicious account. Mine is set to CC-Atttribution-NonCommerical-ShareAlike. I'm not sure what the default is.

Re: Hey Yahoo, Can you please open source Delicious?

#76

We are also compiling stories about present use cases of Delicious. If you are a user, post them here and I'll update the question.

Delicious was one of the best resources for finding articles on niche interests, for surfacing articles that were especially good, and for finding others interested in the same topics as you. As for two specific examples: Learning Ruby on Rails has been a long, slow, struggle for me. A number of reasons for that, but one of the main ones being that I don't have many other programmers in my area that I can talk about…

Just a side note, but if you're still struggling with Rails, both Zails for Zombies[1] and RailsTutorial[2] are really good. And integrating jquery with Rails is now really easy, since they've moved to unobtrusive Javascrtipt. [3]

1: http://railsforzombies.org/

2: http://railstutorial.org/

3: https://github.com/rails/jquery-ujs

Re: Hey Yahoo, Can you please open source Delicious?

#78

There are many alternate services of the same type. Just export your bookmarks into the new service. I don't see what the fuss is about.

Because it's not just about my bookmarks -- it's about using the wisdom of Delicious' huge crowd to find quality links on any given topic.

Re: Hey Yahoo, Can you please open source Delicious?

#80

Why bother with the code? The value is with the existing links database, and since it belongs to the users, Yahoo shouldn't have the right to sell or distribute it freely. Since users can already import/export their bookmarks, the only support Yahoo needs to provide is keeping the import API open for a little longer after the site is shut down. Of course this assumes that users would want to migrate their data to a r…

Unless I am mistaken here (as far as copyright goes, if that's what you're talking about) the only data Delicious' users can claim any right to is the short descriptions they are able to add to each bookmark. The mere fact that they liked that page is data that can be freely distributed.

The individual links can't be copyrighted, but a person's collection of links probably can.

http://en.wikipedia.org/wiki/United_States_copyright_law#Com...

Post reply on HN