Skip to content

Instantly share code, notes, and snippets.

View wanikhawar's full-sized avatar
🎯
Focusing

Khawar Zamman Wani wanikhawar

🎯
Focusing
  • Srinagar
View GitHub Profile
@jziggas
jziggas / nowhal.js
Last active February 21, 2025 13:02
JavaScript to delete all of your Reddit comments
// Go to https://www.reddit.com/user/<username>/ and paste into your console.
// Reddit throttles these actions, hence the 1s timer.
let interval = setInterval(() => {
let deleteButtons = $('a.togglebutton[data-event-action="delete"]');
if (deleteButtons.length === 0) {
clearInterval(interval);
if ($('.next-button > a')[0]) {
$('.next-button > a')[0].click();
alert('Restart script.');
}