My journey into software and infrastructure engineering started in a physics research lab, where I discovered the merits of loose coupling and adherence to standards the hard way. I like automated testing, concise documentation, and hunting complex bugs.
Nothing here yet.
By convention, Python packages expose their version through a __version__ variable: >>> import package >>> package.__version__ 0.4.2 Ideally, the package version should be defined in one place only. Typical approaches include hardcoding it in the pa...

Pulumi's Amazon EKS package provides high-level component resources for Amazon's Elastic Kubernetes Service, simplifying the setup of clusters and node groups compared to the lower-level EKS resources available as part of the AWS Classic package. The...

When working with AWS Step Functions, it's sometimes useful to have access to variable values that you can set when launching a state machine execution, are available to all states, but are not part of the JSON data that is passed between states. Som...
