Home:
/
:discord://-/
- friends:
discord://-/channels/@me/
- nitro:
discord://-/store
- shop:
discord://-/shop
- message requests:
discord://-/message-requests
- family centre:
discord://-/family-center
module.exports = { | |
mentions: { | |
userOrMember: /^(?:<@!?)?(\d{17,19})>?$/, | |
channel: /^(?:<#)?(\d{17,19})>?$/, | |
role: /^(?:<@&)?(\d{17,19})>?$/, | |
snowflake: /^(\d{17,19})$/, | |
}, | |
misc: { | |
emoji: /^(?:<a?:\w{2,32}:)?(\d{17,19})>?$/, | |
username: /.{2,32}/, |
let token = "your token"; | |
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
} |
ffmpeg -i input.mov -r 0.25 output_%04d.png | |
# -i followed by video file sets input stream | |
# -r set framerat. 1 = 1 frame per second. | |
# and then set the output file with the number replacement | |
# more info: https://ffmpeg.org/ffmpeg.html#Main-options | |
# https://superuser.com/questions/135117/how-to-convert-video-to-images |
// Discord all events! | |
// A quick and dirty fleshing out of the discord.js event listeners (not tested at all!) | |
// listed here -> https://discord.js.org/#/docs/main/stable/class/Client | |
// Learn from this, do not just copy it mofo! | |
// | |
// Saved to -> https://gist.github.com/koad/316b265a91d933fd1b62dddfcc3ff584 | |
// Last Updated -> Halloween 2022 | |
/* |