Skip to content

Instantly share code, notes, and snippets.

View not-william's full-sized avatar

Will Harris not-william

View GitHub Profile

Keybase proof

I hereby claim:

  • I am hgat on github.
  • I am hgat (https://keybase.io/hgat) on keybase.
  • I have a public key ASCnAWz5ly8BK748OBKtO-SceKaSH7I5sqzTGj38aiSpWAo

To claim this, I am signing this object:

@not-william
not-william / gimage_scrape.js
Created October 23, 2019 07:17
Obtains list of image paths from the google images results page.
urls = Array.from(document.querySelectorAll('.rg_di .rg_meta')).map(el=>JSON.parse(el.textContent).ou);
window.open('data:text/csv;charset=utf-8,' + escape(urls.join('\n')));