Writing on software development and new technologies.

All of my long-form thoughts on programming, leadership, product design, and more, collected in chronological order.

C# Data Concepts

Data concepts in C# form the backbone of programming in this language. From primitive data types to more complex structures like classes and generics, understanding how data is handled is crucial for writing efficient and readable C# programs.

Mastering React Concurrent Mode: The Future of React

React Concurrent Mode is a groundbreaking set of features designed to make React apps more responsive by rendering component trees without blocking the main thread. In this article, we'll dive deep into what Concurrent Mode is, why it's important, and how to use it effectively.

New Cloud Technologies - Kubernetes Basics

Kubernetes is an open-source container orchestration platform designed to automate the deployment, scaling, and management of containerized applications.

Introducing the Pipeline Pattern in C#

Design patterns are the backbone of effective software development, providing reusable solutions to common problems. Today, we introduce a new design pattern for C# developers: the Pipeline Pattern. This pattern simplifies the creation of complex workflows by allowing individual processing steps to be composed into a pipeline, where each step processes the output of the previous step.