🏗️ Software Architectures, Part V: Vertical Slice
5 Years ago Jimmy Bogard launches Vertical Slice architecture as an alternative to traditional Clean Architecture. So let’s take a look:
5 Years ago Jimmy Bogard launches Vertical Slice architecture as an alternative to traditional Clean Architecture. So let’s take a look:
This is an awesome book by Jeff Patton published in 2014. It feels to me like a mandatory step in the product engineer path. It has been an interesting process to digest this book and to put this technique and new thoughts in practice.
This weekend I had the opportunity to test GitHub Copilot and to play a little bit with it. And, yeah, it blew my mind.
In our team we where used to configure multiple Application Insights in our ASPNET Core applications, but some times it was not easy to find the resource name related to an instrumentation key. We where losing thime searching for the names manualy. In order to avoid this waste, we decided to generate an script based in the Azure Cli.
Some people feel anxiety or stress when many other professionals share a lot of content. Hours and hours of books, posts, videos, courses, and a lot of stuff that you can simply no digest. I would like to share some tips about my “method” about this topic and interesting things that I had found.
I wrote my first hello world in Java in 2012, at the university. And I want to share few thoughts that I have changed over these years.
In the last few months, I have been learning about the minimalism movement for a while and I will like to share some thoughts about this.
Sometimes we deal with well-secured scenarios where there are no many ways to check HTTP traffic. And in these cases, common tracing tools are not enough.
Consider the next communication:
In our society, we could say that money is equal to power. Because with money you have the power to buy things or services. But that is not actually all.
What does really money means nowadays? In essence, since the fall of the gold standard, caused by the Nixon shock in 1971, money now is just a portion of debt. That’s it, for the last 50 years, a paper that means that you have a representation of a debt.
There are some scenarios where we don’t need to wait for fast feedback when executing tasks. In some cases, we can just request the computation of that a task, a command, and at some moment in the future, we can receive a callback notification with the execution result.
To explore a solution for this posibilities, I decided to build this example by applying an asynchronous command queue.