Angular – Signals

By | 20/05/2026

In this post, we will see what Signals are and how we can use them in our Angular projects.But first of all, what is a Signal?“A Signal is a wrapper around a value that can notify interested consumers when that value changes. It sits at the core of Angular’s modern reactivity model and gives us… Read More: Angular – Signals »

C# – MassTransit

By | 18/03/2026

In this post, we will see what MassTransit is and when and how we can use it in our projects. When building modern distributed systems, one of the most critical challenges we face is reliable communication between services. While we could implement ‘message based’ communication manually, managing message serialization, retry logic, error handling, and distributed… Read More: C# – MassTransit »

Category: C#

AI – Claude Skill

By | 04/03/2026

In this post we will see what a Claude Skill is, how to create one and how to use it.A Skill in Claude is a specialized capability that enhances Claude’s performance in specific domains by providing detailed instructions, best practices, and context-specific guidelines. Think of it as a expert-level instruction manual that Claude consults before… Read More: AI – Claude Skill »

Category: AI

C# – Webhooks

By | 18/02/2026

In this post, we will see what Webhooks are and how we can use them in our .NET projects.Based on the post I created for SignalR, it is important to distinguish between different types of real-time communication. While SignalR handles complex, persistent connections, Webhooks solve a different problem entirely.A Webhook is not a library or… Read More: C# – Webhooks »

Category: C#