So I've been working on this project called CloudDev for a while now. It's basically a local AWS emulator — think LocalStack but free, open source, and a single Go binary with zero dependencies. I just shipped v0.6.0 and wanted to share what's new. Why I built this Honestly? LocalStack's free tier kept getting more and more limited. Every time I needed a service it was "pro only". I just wanted to test my AWS code locally without spinning up real infrastructure or paying for a subscription. So I started building CloudDev. The goal was simple — emulate the AWS services I actually use, make it work with the existing AWS CLI and SDKs without any config changes, and keep it as a single binary I can just run anywhere. What's new in v0.6.0 This release was focused on infrastructure completeness.…