This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ___ / / / / / .== | |
| .-` / / / / / / / / / / / | |
| | x |=|=|=|=|=|=|=|=|= < | |
| > | \ \ \ \ \ \ \ \ \ \ | |
| ``-.__\ \ \ \ \ \ `== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from base64 import b32decode, b32encode | |
| from sys import argv | |
| print(b32encode(bytearray([byte ^ 255 for byte in b32decode(argv[1])])).decode("utf-8")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| find . -type f -name "*.go" -not -name "*.pb.go" -exec cat {} \; | grep -v "^ *//" | grep -v "^ *$" | wc -l |