Skip to content

Instantly share code, notes, and snippets.

View EsEnZeT's full-sized avatar
🕷️
I mess with things and people

SnZ EsEnZeT

🕷️
I mess with things and people
View GitHub Profile
@EsEnZeT
EsEnZeT / nowhal.js
Last active August 10, 2022 20:56 — forked from jziggas/nowhal.js
JavaScript to delete all of your Reddit comments
// Go to https://old.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.');
}
@EsEnZeT
EsEnZeT / compal-decrypt.c
Created November 12, 2019 13:20 — forked from danielkucera/compal-decrypt.c
compal-decrypt.c
/*
Program for decrypting Compal CH7465LG private key
Compilation:
gcc -o compal-decrypt compal-decrypt.c -lcrypto
Running:
./compal-decrypt
usage: ./compal-decrypt <infile> <outfile>
@EsEnZeT
EsEnZeT / install-docker-deb9.sh
Last active February 23, 2020 20:29 — forked from upbeta01/install-docker-deb9.sh
Install Docker In Debian 9 (Stretch)
#!/bin/bash
#
# -----------------------
#
# This is a script that installs docker-ce (Docker Community Edition) on Debian 9
# Inspired by https://gist.github.com/frgomes/a6f889583860f5b330c06c8b46fa0f42
#
# -----------------------
# Pre-requesite