For every occurrence of a target tag in the corpus (1.49M HiALU + all MidALU), extract a trigram window:
[prev_form] TARGET [next_form]
| #!/bin/bash | |
| V=1.26.1 | |
| if go version 2>/dev/null | grep -q go$V && test -x /root/go/bin/gonb; then | |
| echo "Go $V + GoNB already installed." | |
| exit 0 | |
| fi | |
| echo "Installing Go $V..." | |
| rm -rf /content/go && mkdir -p cache |
“That just sounds like slavery with extra steps.”
— Morty Smith, Rick and Morty, Season 2, Episode 6, The Ricks Must Be Crazy (2015)
Shelter is mandatory.
Payment is mandatory.
Everything else is noise.
We pay every month.
We pay or we leave.
| // unxor - XOR key recovery and decryption for encrypted assets | |
| // | |
| // Uses Kasiski examination to find key length, then known-plaintext attack | |
| // with common file headers to recover the full key. | |
| // | |
| // Usage: | |
| // | |
| // unxor analyze <file> # Find key length and recover key | |
| // unxor decrypt <file> -k <key> # Decrypt with known key | |
| // unxor decrypt <file> -a # Auto-detect key and decrypt |
| import org.ejml.simple.SimpleMatrix; | |
| import javax.crypto.Mac; | |
| import javax.crypto.spec.SecretKeySpec; | |
| import java.nio.ByteBuffer; | |
| import java.nio.ByteOrder; | |
| import java.security.MessageDigest; | |
| /** | |
| * Quantum Barista - Compact RHF solver using EJML |