-
Automated Dependency Management
Aug 19th, 2020
Managing dependency versions for your applications and modules can be a time consuming pain in the bum. Not only must you keep tabs on the release cycles of all of your dependencies, but you must then assess each release invidually, manually update the versions in all the consuming applications you own, and make any changes required to support these latest versions - every. single. time.
-
Why Not Both?
Binary choices seldom are
Apr 30th, 2020
Its an old meme from a TV commercial where a family is fighting about whether or not to eat hard shell or soft shell tacos; the young girl asks "why don't we have both?" and is celebrated for being a productive mediator
-
Fargate vs. Lambda
What is the right serverless solution for you?
Jul 22nd, 2019
With serverless architectures being all the rage these days, you're probably wondering what options exist for your application in this brave new world.
-
Implicit vs Explicit Tests
How should we use stubs?
Jul 19th, 2018
When writing unit tests, a developer will often find themselves needing to override internal functionality that is consumed by the code under test. This is achieved by using stubs.