The Dev Digest Newsletter #007
Articles focused on improving your software development skills. Have an excellent read!
Open Source Highlight!
For this edition, I'll highlight some interesting Open Source repositories on GitHub!
Infracost shows cloud cost estimates for Terraform. It enables DevOps, SRE and engineers to see a cost breakdown and understand costs?before making changes, either in the terminal or pull requests. This provides your team with a safety net as people can discuss costs as part of the workflow.
I found it interesting for anyone using Terraform, which makes more Dev in DevOps concept, to develop applications, deploy them and know how your changes impact the costs of infrastructure and for free! - Read more >
领英推荐
Keeping your system up to date usually involves invoking multiple package managers. This results in big, non-portable shell one-liners saved in your shell. To remedy this,?topgrade?detects which tools you use and runs the appropriate commands to update them.
Another very useful tool, it was written in Rust Lang and you can install Topgrade via Releases page, or you have Cargo installed (which is the package manager for Rust programming language) you can just run `cargo install topgrade` . Then, if you're using `asdf` you need to run `asdf reshim rust`, to make it available. Now you're ready to run `topgrade`.
It will automatically detect which tools you're using and update them. For instance:
And a lot more! If you want it to also update your cargo packages, you should install `cargo-update` package. - Read more >
No, it isn't a Code of Conduct for Hackers, it's a list of Laws, Theories, Principles and Patterns that developers will find useful with explanations for each one. If you know Moore's Law , you already know one (even that is not really a law ). - Read more >