How to Improve the Security Headers for Your ASP.NET Application

At the user group meetup last week Damien Bod shared many valuable insights in how to protect your applications. Among the many tools he showed was securityheaders.com. Unfortunately for us, this test site calculated a very bad result for the user group site: We took this result as a challenge to improve it quickly and …

Read more

How to Work with JSON in .Net

Json.NET by Newtonsoft is the de-facto standard when it comes to work with JSON in .Net. The library is very popular, offers great flexibility and is easy to use. Let’s look on what you have to do to serialize and deserialize objects to JSON.   Installation Open the Package Management window in Visual Studio and …

Read more

How to Overcome the Annoying Obstacles with Let’s Encrypt on Azure

Let’s Encrypt offers free SSL certificates to protect the traffic between your website and the visitors. They are as good as the expensive commercial ones, but they need to be renewed every three months – thanks to automation, this is not a problem. I use Let’s Encrypt for all my sites and never had any …

Read more

5 Great Plugins for WordPress

The plugins for WordPress are uncountable. But not all are up-to-date and work with the newest version. The result are countless hours spent finding the right plugin for the job. Today I want to share 5 plugins that are a great help for me running this blog.   Akismet Anti-Spam Every blog with a comment …

Read more

A Quick Overview on Hangfire.io

Hangfire.io is a nice tool to perform background processing in .Net. Those background jobs can go from simple method calls you don’t want to block the user interface for up to recurring tasks for maintaining your application. It’s licensed under the LGPL v3 and can be used in closed source software. Should you need more …

Read more