There could be many ways to set up CDN in Azure cloud. I used Storage and Front Door for this. This approach is cost-effective. As well known, CDN (Content Delivery Network)is very useful if your website needs to be fast when accessed from anywhere in the world. However, there is a limitation on CDN. The… Continue reading How to set up CDN using Azure
Author: rocker8942
How to create a resilient Web API using dotnet and Polly library
Polly is a useful dotnet library to make a web service call resilient by introducing retry, circuit breaker and fallback policy with ease. It is common to add retry logic when a web service call is failed. However, integrating retry, circuit breaker and fallback logic can be tricky. Polly makes it easy. The retry… Continue reading How to create a resilient Web API using dotnet and Polly library
How to use static config file in Vue JS
Why use a static config file in Vue If the config is inside Vue, the value in the config needs to be defined before the Vue compile. This means it’s not possible to change the config after the Vue site is deployed to a web server. To flexibly update config values, it can be helpful… Continue reading How to use static config file in Vue JS
A DotNet developer’s note on Technology Radar V29
As a new Technology Radar release with a bunch of interesting techs, a few drew my attention. Techniques Design Systems: a collection of design patterns, component libraries and good design and engineering practices that ensure consistent digital products. Consistency and shared components/design will help the team/organisation move fast. Lightweight approach to RFCs (Request for Comments):… Continue reading A DotNet developer’s note on Technology Radar V29
Why you still use Resharper in 2023
Features of Resharper I use most. Instant Search The first thing for me is the solution-wide instant search (Ctrl + T). VS provides search, of course, but it’s slow as it reads when query. But, the Resharper search responds instantly. It feels like using Elastic Search on Visual Studio. By adding “/” after the search… Continue reading Why you still use Resharper in 2023