Skip to content

Instantly share code, notes, and snippets.

@hassanshaikley
Created September 18, 2025 09:17
Show Gist options
  • Select an option

  • Save hassanshaikley/309f3ed9fe3d4b4907a5e33c3d02ffbe to your computer and use it in GitHub Desktop.

Select an option

Save hassanshaikley/309f3ed9fe3d4b4907a5e33c3d02ffbe to your computer and use it in GitHub Desktop.
delete reddit post like https://old.reddit.com/user/Your-Username
I got rate limited pretty quick using 200
const deleteThing = () => {
document.getElementsByClassName("option main")[0].children[0].click()
setTimeout(() => {
document.getElementsByClassName("yes")[0].click()
}, 100)
}
setInterval(() => {
deleteThing()
}, 200)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment