Skip to content

Instantly share code, notes, and snippets.

@DubyaDude
DubyaDude / DubyasCleanupOfDiscord.css
Last active September 3, 2025 23:43
My list of annoying stuff I hide/disable in Discord using Quick CSS
/* This css has been moved due to the Vencord development team not allowing gists for import urls.
* Source css: https://github.com/DubyaDude/DubyasCleanupOfDiscord/blob/main/DubyasCleanupOfDiscord.css
*/
@import url("https://raw.githubusercontent.com/DubyaDude/DubyasCleanupOfDiscord/main/DubyasCleanupOfDiscord.css");
@unglitched
unglitched / iterm2kitty.py
Created January 24, 2020 01:18
Convert .itermcolors file to kitty term theme colors
#!/usr/bin/env python3
#
# Convert .itermcolors files to kitty terminal color settings.
# Modded from https://gist.github.com/MSylvia/4e90860743f1a4de187d
# Might need to adjust dicts[i][NUMBER].text per your file.
import sys
import xml.etree.ElementTree as ET
def rgb_to_hex(rgb):
@CMCDragonkai
CMCDragonkai / functor_examples.md
Last active May 16, 2023 23:56
Haskell: Explanation of Functors & Natural Transformations

Functor Examples

Const

(not to be confused with the function const)

newtype Const a b = Const { getConst :: a }