Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xPomaHx/d0f0a1ebbbe5a6bc2495ed7e4954ad2c to your computer and use it in GitHub Desktop.
Save xPomaHx/d0f0a1ebbbe5a6bc2495ed7e4954ad2c to your computer and use it in GitHub Desktop.
pickabu plus combain
(async () => {
var story_id = 5007814;
while (story_id > 5000) {
await jQuery.ajax({
type: "post",
url: "https://old.pikabu.ru/ajax/vote_story.php",
data: {
story_id,
vote: 1,
}
})
story_id--;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment