My Blog

Here you can find my private notes about programming that I wanted to share with you. Feel free to filter based on the topic you want or search for something specific.

    How to install Windows SSL certificates into your Docker Linux container

    When using web applications inside a Docker Container you might come across SSL certificates that have to be installed on the running Container. Things get a little bit more complicated when you want to install Windows certificates into a Linux Image. Following you can see the steps to achieve this task.

    Read the complete article

    A work-in-progress list of my favorite Git commands

    The following list is a reference to the Git commands I use the most. Beneath every command there is an explanation of its use.

    As of September 2024, I updated the list with more helpful Git commands.

    Read the complete article

    See the details of every Exception thrown when debugging in Visual Studio

    When debugging your .NET application with Visual Studio, you will come along Framework- or Application-Exceptions. In specific cases you see the line where the Exception was thrown (line 132 in the following screenshot) but you cannot see the content (message, stacktrace, etc.) of the Exception. To find this information simple type the following in the watch list area of Visual Studio:

    Read the complete article

    How to keep the IIS Application Pools always awake

    When working with “9 to 5” web applications you deal with idle time periods where the users submit few or no requests to specific services of your application. In that cases the first request landing to a service hosted on IIS will take much longer than usual because the service was in sleep mode for better management of resources.

    We can avoid this behavior and keep our services in an always-running mode by applying the following three configurations in IIS:

    Read the complete article

    Useful tips and tricks when writing unit tests with Moq (Part II)

    Some time ago I wrote an article about Moq with some tricks I used while unit testing my code.

    In this article you will find some more tips that I found very useful while using the framework.

    Read the complete article