Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
user:pwdisswordfishz
created:June 9, 2024
karma:535
about:

    const links = Array.from(document.querySelectorAll(':link[href^="vote"][id^="up"]:not(.nosee)'));
    const timer = setInterval(() => {
      const link = links.pop();
      if (!link.matches('.nosee'))
        setTimeout(() => link.click(), Math.random() * 2000);
      if (links.length === 0)
        clearInterval(timer);
    }, 16000);
submissions
comments
favorites