Skip to content

Instantly share code, notes, and snippets.

@lightdiscord
Last active September 15, 2021 13:12
Show Gist options
  • Select an option

  • Save lightdiscord/425b35f59075c496c96019a4847d3c30 to your computer and use it in GitHub Desktop.

Select an option

Save lightdiscord/425b35f59075c496c96019a4847d3c30 to your computer and use it in GitHub Desktop.
Intra 42 videos achievements
(() => {
const videos = [...document.querySelectorAll("a.video-item")];
const links = videos.map(anchor => anchor.href);
const seenLinks = links.map(link => `${link}/seen`);
const requests = seenLinks.map(link => fetch(link));
return Promise.all(requests)
.then(() => console.log("You've seen a lot of videos today"));
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment