Skip to content

Instantly share code, notes, and snippets.

@s0kil
Created July 6, 2021 17:30
Show Gist options
  • Save s0kil/d25bdbfeeffff2bf3a4acdf60e81731a to your computer and use it in GitHub Desktop.
Save s0kil/d25bdbfeeffff2bf3a4acdf60e81731a to your computer and use it in GitHub Desktop.
Get Miner Names From ASIC Miner Value
[...document.querySelectorAll("#datatable_profitability > tbody > tr > td:nth-child(1) > div > div:nth-child(2) > a > span:nth-child(2)")].reduce((all, item) => {
let a = `<li><a href='${item.parentNode.href}'>${item.textContent}</a></li>`
return `${all}${a}`
}, "")
@s0kil
Copy link
Author

s0kil commented Jul 6, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment