Skip to content

Instantly share code, notes, and snippets.

View parker02311's full-sized avatar
🔨
developing (probably)

Parker parker02311

🔨
developing (probably)
View GitHub Profile
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 24, 2026 20:13
Conventional Commits Cheatsheet
@AbstractUmbra
AbstractUmbra / 00-deprecation.md
Last active July 24, 2026 12:13
discord.py 2.0+ slash command info and examples

This gist has now been 'deprecated' and has moved...

... to my blog style space for easier contribution by third parties and to provide what I believe to be an easier reading experience. Please field all enquiries and issues to the source repository.

@nomer888
nomer888 / AnsiHelper.luau
Created December 22, 2024 23:44
ANSI renderer
local ANSI_COLOR_MAP = {
["[30m"] = "rgb(0, 0, 0)",
["[31m"] = "rgb(254, 91, 86)",
["[32m"] = "rgb(89, 246, 141)",
["[33m"] = "rgb(255, 255, 164)",
["[34m"] = "rgb(87, 199, 255)",
["[35m"] = "rgb(254, 105, 192)",
["[36m"] = "rgb(153, 236, 254)",
["[37m"] = "rgb(240, 240, 239)",
}