@mariofusco Yes, it will be hard for Putin to deal with two very difficult fronts at the same time. But this could mean that, to close one, he might resort to extreme measures. There's nothing worse than a psychopath with nothing to lose, cornered.
Unpopular opinion:
Almost everything you can build in Rust can be built in Go.
Go is not an “exciting” language, it’s actually a boring language, which in a way a feature by itself, you don’t need to learn any complicated concepts to be able to write good Go code.
@stevenjfisher1 Ah! I still use make a lot, reason being I want to have the pipeline available in my local development shell.
Have you made sure that the images you are using are stored in the GitLab repository? Gitlab does a pretty **** job at caching non-GitLab images.
Disgraceful treatment of a political leader who has made world history by achieving Brexit and leading the. Conservatives to a landslide General Election victory.
The project is serverless: 🥳
But we need a static IP for the Lambda: 😱
Hello VPC, my old friend. Good that CDK creates you with 1 Construct.
But AWS, please. 65 USD/month for 2 NAT Gateways with barely no traffic? Can we get pay-as-you-go option? Even call it serverless 🤷♂️
The reason smartphones became so mainstream like the TV was their price tag.
The Apple VR device costs as much as 10 entry level smartphones. Or nearly 8 iPhone SE latest gen.
This device is dead on arrival due to its price.
@stevenjfisher1 You probably want to use a bigger runner? I had the same problem, the local build took a handful of seconds which turns into minutes in GitHub.
@VaughnVernon Even more, you have data coupling too. A expects some data from B, ergo you have data coupling. Sometimes we want to hide that in an interface and pretend that DTO does not mean coupling. This is mostly why microservices have issues as we did not reduce data coupling.
"Decoupling" is way overused. Coupling is unavailable.
If A uses B, A is coupled to B. If B changes its interface used by A, A will have to change: A->B
You might alleviate the direct dependency: A->B1->B
Yet, A is still coupled to B, and now B1 too. A->B is just less obvious.