Monthly Archives: June 2026

Software development and AI

This is a bit of rambling from me and what I believe is a good setup for developing software together with AI tools. I believe the AI tools are good, which will help good developers produce better software for our end clients. What is the aim of creating software? This is a super hard question […]

ASP.NET Core background tasks with NCronJob and SignalR

I was recommended NCronJob for implementing a background worker in ASP.NET Core and so I decided to give it a try, read the docs and learn this. This NuGet package is open source and works great. I implemented two simple jobs, one concurrent and one not concurrent which sends messages via SignalR. Code: https://github.com/damienbod/AspNetCoreNCronJob To […]