27 октября 2023 г.
Просмотров: 157
A friend reached out recently regarding the usage of Task Parallel Library (TPL) and ConcurrentBag in some .NET code. I inquired what the code was doing and it turns out that for each entry in some workload, it was performing some database operations and API calls.
I immediately wondered if using...
далее...
26 октября 2023 г.
Просмотров: 149
Entity Framework Core Features in 2023
EF Core 2023 has rolled out some pretty cool stuff, and I’m excited to share it with you. So, grab a cup of coffee, and let’s get started!
1. Cosmos DB Provider Improvements
Azure Cosmos DB and EF Core are like two peas in a pod, but...
далее...
26 октября 2023 г.
Просмотров: 114
How to implement CQRS in ASP.NET using MediatR. A guided example using CQRS with separate Read and Write models using Enity Framework Core for Commands and Dapper for Queries.
When people think about CQRS they often think about complex, event-driven, distributed architectures with separate Read and Write databases. Using different databases...
далее...
26 октября 2023 г.
Просмотров: 156
Key strategic and tactical considerations to take when building a new product with the domain-driven design concepts in mind
I have just finished reading Learning Domain-Driven Design by Vlad Khononov. It’s quite a short book (c. 300 pages) aiming to teach beginners all about domain-driven design.
I wanted to check I understood...
далее...
25 октября 2023 г.
Просмотров: 152
As a developer, which areas should we focus on for performance optimizations? How can we measure the impact? Read this post to learn the framework.
Performance optimization is any software or hardware modifications that make the platform faster and more scalable, improving latency or throughput or both.
You can spend a ton...
далее...
24 октября 2023 г.
Просмотров: 156
Want to switch to that high paying job? Or are you already been preparing hard to give interview the next weekend?
Do you know how many people get rejected in interviews by preparing only concepts but not focusing on actually which questions will be asked in the interview?
Don’t be that person...
далее...
24 октября 2023 г.
Просмотров: 158
Passion is both the reason and the reward
I entered the software industry about 2 decades ago. I was an engineering graduate, but I didn’t have a computer degree.
It was OK, not only because I knew the basics of software making (I was an Electronics engineer), but also because my country...
далее...
21 октября 2023 г.
Просмотров: 89
Background
Cut-and-Paste Programming is a very common, but degenerate form of software reuse which creates maintenance nightmares. It comes from the notion that it's easier to modify existing software than program from scratch. This is usually true and represents good software instincts. However, the technique can be easily over used.
General Form
This...
далее...
21 октября 2023 г.
Просмотров: 120
Background
This is one of the most common AntiPatterns in the industry. Frequently, a vendor, specifically a database vendor, will advocate using its growing product suite as a solution to most of the needs of an organization. Given the initial expense of adopting a specific database solution, such a vendor often...
далее...
21 октября 2023 г.
Просмотров: 118
AntiPattern Problem
A Boat Anchor is a piece of software or hardware that serves no useful purpose on the current project. Often, the Boat Anchor is a costly acquisition, which makes the purchase even more ironic.
The reasons for acquiring a Boat Anchor are usually compelling at the time. For example, a...
далее...