A DotNet developer’s note on Technology Radar V30

As a new Technology Radar release with many interesting techs, a few drew my attention. Techniques Retrieval-augmented generation (RAG): Useful pattern to improve LLM result. A search result from the vector database is combined with the prompt to be sent to LLM, resulting in better quality than just using LLM. Automatically generate Backstage entity descriptors.… Continue reading A DotNet developer’s note on Technology Radar V30

How to set up CDN for a web application using Azure

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 for a web application using Azure

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

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