Skip to content

Instantly share code, notes, and snippets.

View dogederp's full-sized avatar
👽
Bogos binted?

Karlo Poljančić dogederp

👽
Bogos binted?
View GitHub Profile
@1fairyfox
1fairyfox / readme.md
Last active May 28, 2026 14:42
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.

@dcts
dcts / workbench.colorCustomizations.json
Created April 14, 2020 16:51 — forked from jacklorusso/workbench.colorCustomizations.json
A list of all Visual Studio Code customizable colors, grouped by UI region. Copy and paste into User Settings (comments are allowed) to tweak an existing theme or work on your own.
"workbench.colorCustomizations": {
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast.
"contrastActiveBorder": "",
"contrastBorder": "",
// Base Colors
"focusBorder": "",
"foreground": "",
"widget.shadow": "",
"selection.background": "",
"descriptionForeground": "",
@jakerieger
jakerieger / Haskell Cheatsheet.hs
Last active February 1, 2025 07:34
A cheat sheet for the Haskell programming language. Roughly commented.
import Data.List
import System.IO
-- Int: -2^63 to 2^63
minInt = minBound :: Int
maxInt = maxBound :: Int
-- Integer: no range
-- Double: up to 11 points of precision