Z̜̹̱̹̙̻͚̯̺̳̒̃̃̌̐̆̅́̔͋́̕ą̱͖̘̳̻̻̭̓̿̒͂̆̌͋͆̌́̔̈́̊ļ̛̖̖̻͍̗̼͔̹̪̦͎̩̊̽̾̋̏̏̃͢ģ̵̢̡̠̼̱̰̭̝̄̒́͊́̀̂͌͆͝ö̷̰̙͍̦͕̯̱̭̝͖̼̑̀̔̀̅͜͡ text generation. Mirror of https://github.com/spenserblack/zal-go spenserblack.github.io/zal-go/
golang zalgo
0

Configure Feed

Select the types of activity you want to include in your feed.

Add build script

authored by

Spenser Black and committed by
GitHub
(May 19, 2026, 7:10 PM UTC) 4e6b72d5 31b60580

+24
+4
.gitignore
··· 33 33 34 34 # Executable 35 35 /zalgo 36 + 37 + # Built assets 38 + dist/* 39 + !dist/.gitkeep
+20
_scripts/build.sh
··· 1 + #!/bin/sh 2 + SCRIPT_DIR="$(dirname "$0")" 3 + BASE_DIR="$(dirname "$SCRIPT_DIR")" 4 + DIST_DIR="$BASE_DIR/dist" 5 + echo "Building to $DIST_DIR" 6 + PLATFORMS="darwin-arm64 linux-amd64 windows-amd64" 7 + for platform in $PLATFORMS; do 8 + echo "Building for $platform" 9 + goos="$(echo "$platform" | cut -d - -f 1)" 10 + goarch="$(echo "$platform" | cut -d - -f 2)" 11 + exe_name="zalgo-$platform" 12 + filename="$exe_name" 13 + if [ "$goos" = "windows" ]; then 14 + exe_name="$exe_name.exe" 15 + fi 16 + target="$DIST_DIR/$exe_name" 17 + GOOS="$goos" GOARCH="$goarch" go build -o "$target" "$BASE_DIR/zal.go" 18 + 19 + tar -C "$DIST_DIR" --remove-files -czf "$DIST_DIR/$filename.tar.gz" "$exe_name" 20 + done
dist/.gitkeep

This is a binary file and will not be displayed.