Last active
July 7, 2020 14:31
-
-
Save EntilZha/fc3e8c243e3c330454bc0a25f0f88705 to your computer and use it in GitHub Desktop.
Export a list of visited/favorited papers from virtual.acl2020.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// allpapers is stored in a cookie | |
for (p of allPapers) { | |
if (p.content.read) { | |
// Chop off the .pdf | |
console.log(p.content.pdf_url.slice(0, -4)) | |
} | |
} | |
// Improved version that doesn't have line numbers | |
console.log(allPapers.filter(p => p.content.read).map(p => p.content.pdf_url.slice(0, -4)).join('\n')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment