🗓 2026-01-03
Engineering notes, patterns, and quick wins.
A tiny blog built with Blazor + SQLite — clean, fast, and easy to back up.
🗓 2026-01-03
Lambdas in C#
🚀 Lambdas in C: What They Are, When to Use Them, and Real Examples Lambdas are one of those C features you use every day—sometimes without even thinking about them. They enable co…🗓 2026-01-02
New AggregateBy LINQ Method
🚀 What’s New in C: The New AggregateBy LINQ Method If you’ve ever written GroupBy(...).Select(g = ...) just to sum, count, or accumulate values by a key, the new AggregateBy LINQ…🗓 2026-01-02
Syntactic Sugar in C#
Clear and efficient code is a cornerstone of good software development. C, a flexible and popular programming language, offers several features to help developers write cleaner, mo…🗓 2026-01-02
C# 13 introduces params collections!
Until now, params was limited to arrays: void Print(params string[] values) { foreach (var v in values) Console.WriteLine(v); } Print("A", "B", "C"); Now in C 13, you can use param…🗓 2026-01-02