Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices. It enables you to…
When starting playing with Service Fabric in Visual Studio, you may come to the following error when trying to debug your application: System.Fabric.FabricConnectionDeniedException: ‘Not authorized to…
A great tool, when starting learning Elixir, is Elixir’s Interactive Shell (IEx), which allows you to type any Elixir expression and get its result. To start using…
One thing you should always keep in mind is backing up your precious work. Bad things may happen sooner or later, so better be prepared for…
Visual Studio 2017 is now available to download, and one interesting feature thereof is connected services, which enable connections between your app and any service on-premises or…
To keep things tidy, in case you have multiple subscriptions associated with your Azure account, it’s a good practice to name them in a way that…
Azure App service provides an easy way to track your web app’s availability / health and to get details on when and why your app wasn’t available….
There are times when you might want to move an app from one App Service plan to another. This can be done easily through Azure Portal, provided…
IEx is Elixir’s interactive shell, where you can type any Elixir expressions and get its result. One issue you might come across when trying to use…
Some really easy ways to improve performance in your asp.net core web application are: response caching, which adds cache-related headers to responses, to reduce the…