Skip to content

Instantly share code, notes, and snippets.

View ZStrikeGit's full-sized avatar

ZStrikeGit

View GitHub Profile
@ZStrikeGit
ZStrikeGit / profanity_filter.wlist
Created March 4, 2025 17:30
Profanity filter decoded
1488
8=D
A55hole
abortion
ahole
AIDS
AIDs
ainujin
ainuzin
akimekura
@ZStrikeGit
ZStrikeGit / itcnv
Created October 13, 2023 19:31
ffmpeg FLAC to ALAC batch converter script
for i in *.flac; do ffmpeg -i "$i" -i cover.jpg -map 0 -map 1 -c copy -disposition:v:1 attached_pic -acodec alac "${i%.*}.m4a"; done