.NET Aspire Made Easy

.NET Aspire is a technology that completely revolutionized the .NET ecosystem. Nobody expected it, but it took the software engineering community by storm when it

TDD: How to Do it Properly and Why It’s Easy

A short practical guide you can apply right away If you are a software developer, you have probably heard of test-driven development (TDD). Some people

The easiest way to learn design patterns: with C# 12 code samples on .NET 8

By Fiodar Sazanavets Design patterns are something that you will need to get familiar with as a programmer who works with object-oriented languages. This is

Implementing C# 11 and .NET 7.0: Learn how to build cross-platform apps with .NET Core

By Fiodar Sazanavets Leverage the latest features of C# and .NET to optimize the development of cross-platform appsKey Features● Use the .NET MAUI (Multi-platform App

The easiest way to become a software developer

By Fiodar Sazanavets From the best-selling author of "The battle hardened developer" comes a book that will teach you how to get your first job

The Battle Hardened Developer

Unaware of the battle… …the secret enemy destroys careers. Do you know the biggest threat to your job? Fiodar is a lead software engineer, technical

The best books to learn Docker easy

Docker is a very popular containerization technology. It makes deployment of complex distributed applications easy. This is achieved by running each individual service inside an isolated environment. This isolated environment has it’s own operating system, but it’s really lightweight. Unlike a virtual machine, it only has those components that a Continue Reading

Taking advantage of manipulative social media mechanisms as a user

Social media is built upon powerful manipulative algorithms that can influence behavior of its users. However, it is also a very powerful tool that can greatly aid you in education, building your business, developing your career and exerting your influence in other ways. Even though most of the mechanisms that Continue Reading

Liskov substitution principle in C#

Every programmer who works with object-oriented programming languages absolutely must know SOLID principles, which are the following: Single responsibility principle Open-closed principle Liskov substitution principle Interface segregation principle Dependency inversion principle In this article, we will cover Liskov substitution principle. I will explain why this principle is important and will Continue Reading