Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Finding pdf paper from CiteULike (See related posts)

I use CiteULike (http://citeulike.org) to manage papers a lot.
Unfortunately, I don't have access to paid site. But some authors
are generous enough to put pdf on his own site, which I find
using google search.
javascript:(function(){
var title = document.title.substring(11);
var query = '%22' + title + '%22 ' + 'filetype:pdf';
var url = 'http://www.google.com/search?q=' + encodeURI(query);
window.open(url);
})();


It simply takes the paper title from windows title. Then it searches the title(enclosed in quotation) for pdf files of the same name.

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts