Software Engineering

Unit testing, documentation, and version control are the three pillars of software engineering. Unit testing serves as a zero-knowledge proof of code correctness, documentation serves as a lossy compression of the codebase’s knowledge, and version control makes iteration more efficient.

Unit Tests

Unit tests function like zero-knowledge proofs in cryptography - they verify truth without requiring understanding of implementation details. Just as a zero-knowledge proof demonstrates validity without revealing the underlying secret, unit tests provides proof of code correctness without revealing the underlying implementation.

Documentation

Documentation functions as lossy compression of the codebase’s knowledge. It compresses complex implementations into human-readable form, trading perfect accuracy for understanding speed. Good documentation reduces the cognitive load of understanding the codebase.

Version Control

Version control is the third pillar of software engineering. It is a version of evolution that experiments with code changes and iterates on them if they are successful, similar to how evolution experiments with genes and iterates on them if they are successful. Evolution usually has two versions of a species, one with stable genes and one with unstable genes. The unstable genes are used for experimentation, and if successful, the genes are added to the stable version.