Content about golang
- •8 min read•reverse engineeringc programming
Why C still matters for Reverse Engineering
C is still the GOAT of reverse engineering
- •2 min read•golangscripting
The Go Shebang: Scripting Without the Compile-Run Friction
In traditional Unix Scripting, the `#!` (shebang) tells the kernel which interpreter to use for the file. For Go, which is a compiled language, this is technically a lie. By using a wrapper, you can treat `.go` files as executable scripts that compile and run on the fly.