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 build and manage scalable and…
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 connect’ Inner Exception COMException: Exception…
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 IEx, open a terminal of your choice…
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 the “unexpected”, than sorry. In…
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 in the cloud. In this post…
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 makes sense to you. For…
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. This kind of info is…
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 that the app service plans…
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 `iex` in Powershell, through a…
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 number of requests a client…