Top 8 books on how to learn C# (even for beginners) - 2022
Instead of rolling with my own list of what I think are the eight greatest books to learn or improve your skills at C#, I decided »
Instead of rolling with my own list of what I think are the eight greatest books to learn or improve your skills at C#, I decided »
For some reason I can never remember how to do this, therefore I have decided to make a post on this. In order to see and »
I recently stumbled upon some code which looked something like the following: var ct = new CancellationToken(); Task.Run(async () => { while (!ct.IsCancellationRequested) { CallToMethodThatMightThrowAnException(); await Task. »
I recently updated a project from .Net core 3.1 to .Net 5. When I tried to upgrade a nuget package I got the following error: »
In this post I will describe the different ways of redirecting using the HTTP protocol. It is a shorter version of a previous blog post of »
In a series of recent posts I have optimised my site as Google lighthouse / Pagespeed has shown some performance issues. This post is on how to »
Every year Google Lighthouse and pagespeed gives me more to do. This time my site was slowed down because of background images not being lazy loaded. »
Most developers I meet use Visual Studio for making .Net applications and in November this year Visual Studio will have a new release. For over two »
Today my disqus recommendations suddenly looked like the following on my pages: As you can see, in the above the recommendations are a lot wider than »
For some reason I can never remember how to do this, so I decided to write this post about it. Often you want to freeze the »