Blog

Discover our latest posts

Exiting single-user mode in MSSQL
July 07, 2026 | MSSQL Scripts
USE master; GO DECLARE @sql nvarchar(max) = N''; SELECT @sql += CAST(N'KILL ' + CAST(session_id AS nvarchar(10)) + N';' AS nvarchar(max)) FROM ...
I Won an Argument With a Local LLM. I Just Had to Make It Say One Sentence.
July 06, 2026 | Local AI
I Won an Argument With a Local LLM. I Just Had to Make It Say One Sentence. Me: "You can watch ships vanish hull-first over the horizon. That...
The longest day, a heatwave, and a message from Alan Turing
June 21, 2026 | Miscellaneous
It was one of those June days where the air just sits there. The longest day of the year, the sun refusing to clock out, the kind of heat that makes ...
.NET MAUI ScrollView Tutorial – Making Content Scrollable
June 10, 2026 | .NET MAUI
When building applications with .NET MAUI, you will quickly run into situations where your content does not fit on the screen. That is exactly where ...
T-SQL: Cursors vs. WHILE Loops – When to Use Which?
June 09, 2026 | SQL
In the world of T-SQL (Microsoft SQL Server), the unwritten law is:  "Think in sets, not in rows."  However, there are scenarios where row-...
How Typing "Ö" Teleported Me to Greenland (and Why I Want to Stay There)
May 29, 2026 | .NET MAUI
It was a perfectly ordinary Saturday. The sun was beating down mercilessly. The 24 Hours of Nürburgring had just started. I was sitting in front...
SQL Plan Advice: Now with a Share Feature
May 29, 2026 | SQL
SQL Plan Advice: Now with a Share Feature We’ve all been there: You’re stuck with a slow SQL query, have the execution plan in front o...
Asynchronous email delivery via Service Broker
May 24, 2026 | SQL
Classic scenario: you have a stored procedure that does something (creates an order, registers a user, whatever) and at the end an email needs to go ...
MSSQL Performance Skript
May 24, 2026 | SQL
  A short script to test the performance of an SQL Server.    /* =========================================================...