Skip to content

Instantly share code, notes, and snippets.

@natrim
natrim / filters.txt
Last active September 16, 2025 06:30
! Title: Natrim filter list
||t.cncenter.cz
||cerebroad.com
||consensu.org
##b-lackhole
reddit.com##.promotedlink
zive.cz##body > div.fs-os
@natrim
natrim / convert.sh
Last active September 22, 2025 17:23
Simple conversion script that converts Godot html5 export to gzipped version, with decompressing wasm and pck files using pako
#!/bin/bash
### usage ./convert.sh game
## where game is baseName of the export
if [ ! "$1" ]; then
read -p 'Game name: ' game
else
game="$1"
fi