Earlier quoted context omitted.
Notify the editors of the Oxford English Dictionary. The word 'many' has been redefined to mean 'one'.
'Few' can mean one or more so logically you got nothing. Although if you look up 'troll' you will find 'mfukar'.
Hey Yahoo, Can you please open source Delicious?
91–92 of 92 posts
Re: Hey Yahoo, Can you please open source Delicious?
#92Earlier quoted context omitted.
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
`curl https://user:passwd@api.del.icio.us/v1/posts/recent` works just fine.
`curl https://user:passwd@api.del.icio.us/v1/posts/all` does not.
Maybe a server-side problem?