Skip to content

Blog

Why Jetpack Stats Could Be Giving You a Skewed Picture of Your Visitors

As with many other websites these days, the number of page views for this blog has plummeted. The lower the numbers are, the more important it would be for the statistics tool to report the correct numbers. Unfortunately, Jetpack Stats is not up to the task. After collecting data for the last 12 months, I concluded that Jetpack misses up to 30% of the page views.

How to Start the HTTPS Port for Your ASP.NET MVC Application

When we run our ASP.NET application from the command line, we see that it only starts the HTTP port:

info: Microsoft.Hosting.Lifetime[14]       Now listening on: https://localhost:5155 info: Microsoft.Hosting.Lifetime[0]       Application started. Press Ctrl+C to shut down. info: Microsoft.Hosting.Lifetime[0]       Hosting environment: Development info: Microsoft.Hosting.Lifetime[0]       Content root path: C:\Users\jg\source\repos\WebApplication1\WebApplication1

How to Await an Octopus Task in Azure DevOps

Many tasks for Octopus Deploy in Azure DevOps work asynchronously. What is great in fire-and-forget scenarios, can be a problem when we need to finish a task before we go to the next one.

We had many failing BDD tests right at the beginning of the test run. After a long and cumbersome debugging session, we found the source of the problem: Our tests started before Octopus deployed our release to the server. But how can we delay our pipeline enough until Octopus finishes its work?