Skip to content

Instantly share code, notes, and snippets.

View nobbele's full-sized avatar
🟢
Clicking circles to the beat

nobbele nobbele

🟢
Clicking circles to the beat
View GitHub Profile
This file is used to be tracked and identified by https://lrc-maker.github.io
@nobbele
nobbele / build_wasm.sh
Last active October 8, 2023 22:40 — forked from tgolsson/wasm-bindgen-macroquad.sh
Compatibility shim for combining macroquad with wasm-bindgen.
#!/usr/bin/env bash
set -e
HELP_STRING=$(cat <<- END
usage: build_wasm.sh
Build script for combining a Macroquad project with wasm-bindgen,
allowing integration with the greater wasm-ecosystem.
@nobbele
nobbele / DiscordMassDeleteMessages.js
Created December 12, 2018 16:36
Deletes all your messages you sent before the selected id in the current channel
function loadMoreMessages() {
console.log("loading more messages");
const buttons = document.querySelectorAll("button[type=button]");
for(let i = 0; i < buttons.length; i++) {
if(buttons[i].innerText == "LOAD MORE MESSAGES") {
buttons[i].click();
console.log("loaded more messages");
}
}
}