Microservices Architecture: Building the Digital Future, One Service at a Time

In the fast-paced world of software development, adaptability, scalability, and efficiency are paramount. As businesses strive to meet the ever-evolving demands of their customers, they are increasingly turning to microservices architecture as a solution to their complex problems. In this blog post, we will explore the fascinating world of microservices architecture, its benefits, challenges, and why it's becoming the go-to approach...
Read more...

How to read App Settings values from Config.json or appsettings.json file in ASP.NET Core

In this article we are going to learn how can we get/read values from config.json or appsettings.json file in Asp.Net core. Assume you have following settings in your config file {   "MySettings": {         "key": "12345"     } } Now, in order to read values from above config file, you need the...
Read more...

How to remove old and unused Docker images or stop Docker Containers or remove Docker Volumes

This post explains how to remove old or unused docker images, how to remove stopped containers, how to remove unused volumes, how to remove unused networks or a single command to run all prunes at a time Note: These command works for Docker with version 1.13 or higher Command to remove unused Images docker image prune Command to removed stopped Containers docker container prune Command to remove unused Volumes docker...
Read more...

angular ng grid not displaying data when there is a special character in column name

In this post am going to explain how to show data in ng-grid when there is a special character in column name. Assume you have following columnDefs in gridOptions columnDefs: [{       name: "parent.name",       displayName: 'Name',       type:'string'     }, {       name: 'lastName',       displayName: 'Surname'     }]   }; As...
Read more...

how to merge a specific commit in Git

In this article am going to explain how to merge(cherry pick) specific commit in Git When you are working on two different branches you often merge code from one branch to another. But if you want to merge specific changes to another branch you can do it by cherry picking specific commit. Using Git Extensions you can easily merge a specific...
Read more...