Skip to content

Instantly share code, notes, and snippets.

@junebug12851
junebug12851 / readme.md
Last active March 21, 2025 01:26
Extract all Discord emojis and stickers from all servers

Important Note!

Doing this requires running a script inside Discord, historically Discord has allowed these perfectly fine but it was for advanced people only and Discod discovered non-advanced users were copying and pasting random scripts people gave them which ended up being malicious and harmful to their account.

Discord has since blocked access to scripts unless you enable a hidden setting. The script below is open source and commented. Anyone is welcome to verify the legitimacy of it. It's very simple in how it works. However if you proceed further and enable custom scripts, I highly reccomend to disable it afterwards unless you know what you are doing. There's a reason Discord disabled this feature, don't even run scripts without knowing what they do first.

@wareya
wareya / kino.glsl
Last active August 27, 2023 20:05
mpv user shader that gets rid of the scanline filter applied to Kino No Tabi
// pass to add a second frame area
//!HOOK MAINPRESUB
//!BIND HOOKED
//!HEIGHT HOOKED.h 2 *
vec4 hook()
{
if(HOOKED_pos.y < 0.5)
return HOOKED_tex(vec2(HOOKED_pos.x,HOOKED_pos.y*2.0));