Blog

Discover our latest posts

MistralAI.Client
MistralAI.Client
January 27, 2026 | C#
Features Complete API Coverage : Chat completions, embeddings, models, files, fine-tuning, batch jobs, and more Streaming Support ...
C# 14: Performance-Friendly Increment Operators!
C# 14: Performance-Friendly Increment Operators!
August 13, 2025 | C#
From time to time, custom classes with ++ and -- operators are necessary. The more or less big problem with this has been that it's somewhat... w...
The "Why-Doesn't-My-Scanner-Work" Drama
The "Why-Doesn't-My-Scanner-Work" Drama
July 20, 2025
That's exactly what happened to me while building my Buchmoment app ! I wanted to create a cool feature to scan books by barcode (because who wants ...
Enterprise SQL Server Index Maintenance: Multi-Database Automation with Email Reporting
Enterprise SQL Server Index Maintenance: Multi-Database Automation with Email Reporting
June 21, 2025 | SQL
Modern database environments require sophisticated maintenance strategies that can handle multiple databases efficiently while providing comprehensiv...
SQL Logging
SQL Logging
February 23, 2025 | SQL
A comprehensive logging solution for SQL Server stored procedures that provides structured logging with different severity levels, automatic calle...
.NET 9.0 - .NET Maui from Frame to Border
February 20, 2025 | C#
Since .NET 9 the compiler warns “Frame” is obsolete: “Frame is obsolete as of .NET 9. Please use Border instead.”. Well, u...
MSSQL Script: Move all LOG files in a DB
MSSQL Script: Move all LOG files in a DB
February 16, 2025 | SQL
-- First, create a temporary table to store the file move operations CREATE TABLE #LogFileChanges ( DatabaseName sysname, LogicalFi...
Rename MSSQL schema
Rename MSSQL schema
February 11, 2025 | SQL
Unfortunately, this is not so easy. But there is a way. First create the new schema: create schema {newschema}; go N...
Ionicons in .NET MAUI
Ionicons in .NET MAUI
July 13, 2024 | .NET MAUI
In .NET Maui, we can easily use TTF. Working with TTF in .NET Maui is a breeze. Just copy the True Type Font into the Fonts directory under...