Skip to content

Instantly share code, notes, and snippets.

@arlm
Created February 20, 2024 11:03
Show Gist options
  • Save arlm/03c208e00035dcd0a955e4847cde4312 to your computer and use it in GitHub Desktop.
Save arlm/03c208e00035dcd0a955e4847cde4312 to your computer and use it in GitHub Desktop.
Better algorithm to find all tracks from exercism from the page: https://exercism.org/tracks
var links = '';
[...Array.from(document.querySelectorAll('#page-tracks > div > div > section.lg-container.container > div > div.--tracks > div > a'), (a) => (/^https?:\/\/exercism\.org\/tracks\/((.*)$/g).exec(a.href)[1])];
console.log(links);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment