Field Notes
Here is the archive of my engineering logs:
- Exception Mechanics: EAFP vs LBYL β Contrasting Python's event-driven exception model (stack unwinding) with Go's explicit value-based errors. Covers EAFP patterns, hierarchy strategies, and proper exception chaining.
- PowerShell String Interpolation & Quoting Guide (For Linux Users π ) β One of the biggest friction points when moving from Bash to PowerShell is how strings are handled. While the logic is similar (single vs. double quotes), the syntax for escaping and handling objects is different.
- Provisioning Paradigms: Terraform, SDKs, & K8s Operators β A comparative analysis of state engines (File vs. Etcd) and reconciliation models (Edge vs. Level Triggered). Covers the engineering costs of custom operators, including Finalizers and dependency graphs.
- Exploring Match-Object in PowerShell β A introductory guide to Match-Object for Linux Users
- Injection Mechanics: Shell & SQL β Why mixing data and control planes is fatal. Secure implementation patterns for Python subprocess and Go os/exec.