Skip to content

Instantly share code, notes, and snippets.

@HomerJSimpson
Created May 31, 2017 04:07
Show Gist options
  • Save HomerJSimpson/b73bae0fd26006e6ff25798177d43dde to your computer and use it in GitHub Desktop.
Save HomerJSimpson/b73bae0fd26006e6ff25798177d43dde to your computer and use it in GitHub Desktop.
scrape cory doctorow's down and out in the magic kingdom audio book
// http://voicesinthedark.com/content.php?iContent=186
copy($$('img[src*="chapter"]').filter(x => x.parentNode.nextSibling.querySelector('span.listen>a')).map(x => `curl -Lo '${x.nextSibling.innerHTML}'.mp3 '${x.parentNode.nextSibling.querySelector('.listen>a:nth-child(1)')}'`).join('\n'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment