Skip to main content

The AI Terminal Takeover: Why CLI Coder Helpers Are Your New Essential Tool

Code_AI_CLI

The CLI is the new frontier for AI coding. This post dives into the best CLI AI coder helpers, comparing established tools like Claude Code CLI and Gemini CLI against the innovative Claude Code Router. Learn how the Router, powered by OpenRouter, gives you ultimate model flexibility to switch between models like Kimi, Sonnet, and Gemini based on cost and task—achieving a truly cost-optimized and agentic workflow right from your terminal.

GUID vs LUUID: How to handle GUIDs in MongoDB with C#

LUUID vs GUID

Introduction In this blog post, we will discuss the differences between GUID and LUUID in MongoDB when working with C#. We will explore the default behavior of the MongoDB serializer and provide solutions to ensure compatibility between GUIDs and LUUIDs. Understanding the Issue When a C# GUID is saved in a MongoDB collection, it is […]

Options Pattern in ASP.NET Core

option-pattern

Introduction This post is about the Options Pattern in ASP.NET Core and how to use it to retrieve values from the AppSettings.json file. I will also explain how to inject the options into your classes and provides an example of using the Options Pattern in unit tests. What is the Options Pattern? The Options Pattern […]

How to Improve Testability and Mockability of NServiceBus

nservicebus_logo

Introduction In this blog post, we will address the challenge of testing and mocking the IMessageSession interface when using NServiceBus to send messages. We will explore a solution that involves creating a wrapper class, NServiceBusHelper, which can be injected into the constructor instead of the IMessageSession interface, making it mockable in integration tests. The problem […]

RabbitMQ – Change the timeout value for a queue

RabbitMQ

Introduction In this blog post, we will explore how to create a new queue in RabbitMQ and specify a timeout value. RabbitMQ, a widely-used message broker, allows for efficient communication between various components of a system. By setting a timeout for a queue, we can control how long messages are retained in the queue before […]

C# – Newtonsoft JSON serialization – String containing a DateTime

string serialization

Newtonsoft is known for their JSON library. Very useful and used everywhere, even for serialization of complex object in REST, NServicebus, … But in some specific cases, the behavior of this serializer / deserializer can be weird. My case here is about passing a String containing a DateTime, like: “2023-10-03T10:00:00Z”. Which is a UTC DateTime […]

How to fix RDP freezing on “Please Wait” screen

rdp please wait

Having to work on a remote machine every day, I’ve encountered a few times a really annoying issue: when you launch the MSTSC application and once connected to the remote machine, it says “Please Wait” forever. Especially when you don’t have admin rights on the machine you are on, there is not a lot you […]