Json Schema Validation using NJsonSchema
Json (JavaScript Object Notation ) is a lightweight, self-describing markup, which has become a universal notation for data exchange. Json is now everywhere ...
Json (JavaScript Object Notation ) is a lightweight, self-describing markup, which has become a universal notation for data exchange. Json is now everywhere ...
If you’d have an actorsystem within an web application, you would have faced the problem of creating an actor with a unique id. Since web is by default state...
One good thing i liked about Service Fabric is the actor systems, which led me a Java port of Akka/Scala called Akka.Net. You must have a look at it, actors ...
Azure service fabric deployment has loads of issues, whether you are trying to deploy using Visual studio or PowerShell one common error you would hit (esp. ...
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
Once an application is deployed to a service fabric cluster, you have two options to deploy your existing code.
A Reliable actor service is partitioned across the service fabric cluster. Partitioning in the context of service fabric is process of determining the partic...
Visual Studio code is a simple code editor from Microsoft which is multi-platform, light weight and supports multiple languages such as NodeJs, C#, Python et...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
“The fundamental idea of Event Sourcing is that of ensuring every change to the state of an application is captured in an event object, and that these eve...
We faced a scenario where we had a dataset (EF Linq query) which needs to be sorted based on the user selection (user was given the selection option with the...
What I have noticed in most of the projects that I have been part of is that the Performance is considered as a least priority feature. Well its definitely n...
.Net has a very useful class called “Random” which generates a random number between a range. You can read about the Random class here.
Singleton pattern is the first pattern one would learn in the GOF patterns. It simply states that only one instance of the class should be created and no mor...
As part of MVC4 Microsoft released new authentication provider(WebMatrix.WebData.ExtendedMembershipProvider) support open authentication and new entity frame...
“Without valid unit tests any code that’s written has no value as its not verifiable. And if your code isn’t testable (unit) there is a major design flaw ...
As the name itself suggests “Adapter” pattern allows an interface to ‘adapt’ to another interface. Similar to the universal adapter we all carry when we go o...
“Internal” in C# is used to make the members /methods /classes to be accessible only within that assembly.
The SOLID principles is the basic set of guidelines for any working software design. Its an acronym for 5 rules each represented by a letter in word solid (g...
You probably would have heard each interviewer asking this question to you in each and every interview you would have attended. I have asked it many million ...
In my previous blog, i mentioned the basics and the usage of the repository pattern with the TableStorage (only CRUD operations without the ‘R’ reading and q...
Repository Pattern Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. -by Edward Hieatt a...
In the previous blog we just went through with the advantages of using TableStorage, in this one we would consider the most important Class to be used to sav...
Few of the methods to debug a windows service project are
There are many scenarios where one would have to create dynamic controls based on the logged in user, request etc. Main challenges with the dynamic controls ...
There are many scenarios where the programmer would need to add “custom data” in the configuration file other than the connection strings.
I have been building applications on .Net platforms for about 5 years now and dint understand how it actually happens underneath in the CLR, curse Microsoft ...
There are scenarios when we initialize innumerable objects into the .Net memory before the user code has even used them.
One of the article in Visual Studio Magazine, 5 Traps to Avoid in C# mentions the pitfalls of using “Optional Parameters”
When we need to implement a state diagram, the first thing we would look to implement is a switch case or a multiple if else statement. This kind of implemen...
In this pattern an abstract class contains a template method which provides a skeleton for the algorithm, one or more steps of the algorithm are made virtual...
Its very common to import data from a csv file (flat file) into RDBMS or any such destination. When someone calls it a CSV file it need not be just a comma s...
Decorator pattern provides a way of attaching a new state and behaviour to the existing objects. Key implementation point for a “Decorator” is that it contai...
Twitter has exposed a new set of APIs to stream the tweets from the users worldwide just as we stream a video from any website. This can be used from an appl...
Recently my colleague enlightened us about a pattern which can be used to hop the inheritance hierarchy.
In Abstract factory method there are 4 types of players Abstract Factory – Which is understood by the client and contains a function to create a abstract...
Visual studio code is the most preferred IDE amongst the frontend developers, its opensource and supports a wide variety of plugins. In this blog I will list...
I recently cleared the Google Certified Professional Cloud Architect exam and hereby I am sharing the list of study materials and the concepts of the GCP tha...
What is Terraform?
I have been given Azure Champ status by The-MAPA. What is THE-MAPA MAPA, an acronym for Microsoft Association of Practising Architects, is a global communit...
Azure app service provides a publicly accessible endpoint for the application you deploy in it. One can restrict the access by configuring an Isolated tier a...
Azure functions with Storage Queue trigger has a built in retry logic based on the dequeue count of the message in the queue. You can configure the frequency...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Azure Application Insights is a powerful logging/monitoring service provided by Azure. It can be used to live-stream your application logs, analyze the perfo...
I completed AZ-301 Microsoft Azure Architect Design exam successfully, which earned me Azure Solution Architect Expert certification.
Azure Storage Accounts (GPV2 sku), allows users to host static websites using the blob storage. This feature was recently GA’ed. Jekyll is a static website g...
I took AZ-300 exam today and cleared it , this was my first-ever official certification ever. Not that I didn’t value them earlier, was never motivat...
Azure table storage is one of the cheapest No-SQL (Key value store) datastore amongst other services. Table storage can be used for multiple scenarios such a...
Azure CLI is a powerful cross-platform command line tool for managing Azure resources, this has become my go-to command line utility for doing so. It’s writt...
I have been lately working on Infrastructure as Code project to deploy reference architectures on Microsoft Azure, which provided me with an opportunity to d...
Azure Site Recovery (ASR) service contributes for the backup and disaster recovery service. It provides features like backup service and disaster recovery se...
There are number of reasons one would want to load a certificate (*.pfx, *.p12) with private key, mine was to sign a JWT token. Requirement was to sign JWT w...
One good thing i liked about Service Fabric is the actor systems, which led me a Java port of Akka/Scala called Akka.Net. You must have a look at it, actors ...
Azure service fabric deployment has loads of issues, whether you are trying to deploy using Visual studio or PowerShell one common error you would hit (esp. ...
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
Once an application is deployed to a service fabric cluster, you have two options to deploy your existing code.
A Reliable actor service is partitioned across the service fabric cluster. Partitioning in the context of service fabric is process of determining the partic...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Proget is a universal package manager used to deploy and access private code packages within a company or publicly outside. It is a very useful deployment to...
Postman is arguably the best tool for developers to test/debug their APIs. If you haven’t heard about it or used it I recommend to go download it ASAP.
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
“Without valid unit tests any code that’s written has no value as its not verifiable. And if your code isn’t testable (unit) there is a major design flaw ...
In my previous blog, i mentioned the basics and the usage of the repository pattern with the TableStorage (only CRUD operations without the ‘R’ reading and q...
Repository Pattern Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. -by Edward Hieatt a...
In the previous blog we just went through with the advantages of using TableStorage, in this one we would consider the most important Class to be used to sav...
Windows Azure Storage account provides access to Blob, Queue and Table Storage services. By default we get up to 100 TB storage (all 3 types of storage inclu...
Visual studio code is the most preferred IDE amongst the frontend developers, its opensource and supports a wide variety of plugins. In this blog I will list...
I have been given Azure Champ status by The-MAPA. What is THE-MAPA MAPA, an acronym for Microsoft Association of Practising Architects, is a global communit...
Azure app service provides a publicly accessible endpoint for the application you deploy in it. One can restrict the access by configuring an Isolated tier a...
Azure functions with Storage Queue trigger has a built in retry logic based on the dequeue count of the message in the queue. You can configure the frequency...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Azure Application Insights is a powerful logging/monitoring service provided by Azure. It can be used to live-stream your application logs, analyze the perfo...
I completed AZ-301 Microsoft Azure Architect Design exam successfully, which earned me Azure Solution Architect Expert certification.
Azure Storage Accounts (GPV2 sku), allows users to host static websites using the blob storage. This feature was recently GA’ed. Jekyll is a static website g...
I took AZ-300 exam today and cleared it , this was my first-ever official certification ever. Not that I didn’t value them earlier, was never motivat...
Azure table storage is one of the cheapest No-SQL (Key value store) datastore amongst other services. Table storage can be used for multiple scenarios such a...
Azure CLI is a powerful cross-platform command line tool for managing Azure resources, this has become my go-to command line utility for doing so. It’s writt...
I have been lately working on Infrastructure as Code project to deploy reference architectures on Microsoft Azure, which provided me with an opportunity to d...
Azure Site Recovery (ASR) service contributes for the backup and disaster recovery service. It provides features like backup service and disaster recovery se...
There are number of reasons one would want to load a certificate (*.pfx, *.p12) with private key, mine was to sign a JWT token. Requirement was to sign JWT w...
One good thing i liked about Service Fabric is the actor systems, which led me a Java port of Akka/Scala called Akka.Net. You must have a look at it, actors ...
Azure service fabric deployment has loads of issues, whether you are trying to deploy using Visual studio or PowerShell one common error you would hit (esp. ...
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
Once an application is deployed to a service fabric cluster, you have two options to deploy your existing code.
A Reliable actor service is partitioned across the service fabric cluster. Partitioning in the context of service fabric is process of determining the partic...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Proget is a universal package manager used to deploy and access private code packages within a company or publicly outside. It is a very useful deployment to...
Postman is arguably the best tool for developers to test/debug their APIs. If you haven’t heard about it or used it I recommend to go download it ASAP.
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
“Without valid unit tests any code that’s written has no value as its not verifiable. And if your code isn’t testable (unit) there is a major design flaw ...
In my previous blog, i mentioned the basics and the usage of the repository pattern with the TableStorage (only CRUD operations without the ‘R’ reading and q...
Repository Pattern Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. -by Edward Hieatt a...
In the previous blog we just went through with the advantages of using TableStorage, in this one we would consider the most important Class to be used to sav...
Windows Azure Storage account provides access to Blob, Queue and Table Storage services. By default we get up to 100 TB storage (all 3 types of storage inclu...
Json (JavaScript Object Notation ) is a lightweight, self-describing markup, which has become a universal notation for data exchange. Json is now everywhere ...
If you’d have an actorsystem within an web application, you would have faced the problem of creating an actor with a unique id. Since web is by default state...
One good thing i liked about Service Fabric is the actor systems, which led me a Java port of Akka/Scala called Akka.Net. You must have a look at it, actors ...
Azure service fabric deployment has loads of issues, whether you are trying to deploy using Visual studio or PowerShell one common error you would hit (esp. ...
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
Once an application is deployed to a service fabric cluster, you have two options to deploy your existing code.
A Reliable actor service is partitioned across the service fabric cluster. Partitioning in the context of service fabric is process of determining the partic...
Visual Studio code is a simple code editor from Microsoft which is multi-platform, light weight and supports multiple languages such as NodeJs, C#, Python et...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
What I have noticed in most of the projects that I have been part of is that the Performance is considered as a least priority feature. Well its definitely n...
Singleton pattern is the first pattern one would learn in the GOF patterns. It simply states that only one instance of the class should be created and no mor...
As part of MVC4 Microsoft released new authentication provider(WebMatrix.WebData.ExtendedMembershipProvider) support open authentication and new entity frame...
“Without valid unit tests any code that’s written has no value as its not verifiable. And if your code isn’t testable (unit) there is a major design flaw ...
“Internal” in C# is used to make the members /methods /classes to be accessible only within that assembly.
You probably would have heard each interviewer asking this question to you in each and every interview you would have attended. I have asked it many million ...
In my previous blog, i mentioned the basics and the usage of the repository pattern with the TableStorage (only CRUD operations without the ‘R’ reading and q...
Repository Pattern Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. -by Edward Hieatt a...
In the previous blog we just went through with the advantages of using TableStorage, in this one we would consider the most important Class to be used to sav...
Few of the methods to debug a windows service project are
There are many scenarios where one would have to create dynamic controls based on the logged in user, request etc. Main challenges with the dynamic controls ...
There are many scenarios where the programmer would need to add “custom data” in the configuration file other than the connection strings.
Logging is a very important feature that one would desire for a data/performance intensive applications. Logging helps us in debugging, giving vital and exte...
I have been building applications on .Net platforms for about 5 years now and dint understand how it actually happens underneath in the CLR, curse Microsoft ...
There are scenarios when we initialize innumerable objects into the .Net memory before the user code has even used them.
One of the article in Visual Studio Magazine, 5 Traps to Avoid in C# mentions the pitfalls of using “Optional Parameters”
Inversion of control is a pattern where the creating and life time of the objects is passed from the client to another layer.
Docker desktop is now available with WSL integration, provided that you are on windows 10 1909 build, it brings in a lot of performance improvements to the e...
I have been an afficianado of whatever Microsoft builds, since I was introduced to the computers. I have used windows on personal computer since win’98 days,...
I have been using Conemu as my goto terminal, i.e. till Micrsoft released the beta version of Windows Terminal. Windows terminal has a tabbed window which al...
Visual studio code is the most preferred IDE amongst the frontend developers, its opensource and supports a wide variety of plugins. In this blog I will list...
Microsoft recently shipped their new monospaced font called ‘Cascadia’, and this is the same font that MS ships with its new Terminal. If you haven’t used th...
Azure CLI is a powerful cross-platform command line tool for managing Azure resources, this has become my go-to command line utility for doing so. It’s writt...
As I was creating Akka.Persistence.DocumentDb project I started looking for some CI tools available for open source projects for free. I came across this won...
Proget is a universal package manager used to deploy and access private code packages within a company or publicly outside. It is a very useful deployment to...
Postman is arguably the best tool for developers to test/debug their APIs. If you haven’t heard about it or used it I recommend to go download it ASAP.
“OData is a standardized protocol for creating and consuming data APIs. OData builds on core protocols like HTTP and commonly accepted methodologies like ...
Html developers might already know that chrome is the best for web-development. If you don’t then check it out.
The latest version of Live Essentials 2011 is out and it’s a single gateway to social networking. They have integrated MSN messenger with Facebook, LinkedIn ...
Finally, much hyped windows phone 7 OS mobile phones is available to the market. So is the RTMed version of the windows phone developer tools.
Logging is a very important feature that one would desire for a data/performance intensive applications. Logging helps us in debugging, giving vital and exte...
Much awaited IE 9 Beta version is out for Download .
Visual Studio 2010 has hit the market, with its new look and the user experience its the best IDE Microsoft has brought out to the market. Add to the fact th...
Twitter has exposed a new set of APIs to stream the tweets from the users worldwide just as we stream a video from any website. This can be used from an appl...
As the name itself suggests “Adapter” pattern allows an interface to ‘adapt’ to another interface. Similar to the universal adapter we all carry when we go o...
The SOLID principles is the basic set of guidelines for any working software design. Its an acronym for 5 rules each represented by a letter in word solid (g...
In my previous blog, i mentioned the basics and the usage of the repository pattern with the TableStorage (only CRUD operations without the ‘R’ reading and q...
Repository Pattern Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. -by Edward Hieatt a...
When we need to implement a state diagram, the first thing we would look to implement is a switch case or a multiple if else statement. This kind of implemen...
In this pattern an abstract class contains a template method which provides a skeleton for the algorithm, one or more steps of the algorithm are made virtual...
Inversion of control is a pattern where the creating and life time of the objects is passed from the client to another layer.
Decorator pattern provides a way of attaching a new state and behaviour to the existing objects. Key implementation point for a “Decorator” is that it contai...
Recently my colleague enlightened us about a pattern which can be used to hop the inheritance hierarchy.
In Abstract factory method there are 4 types of players Abstract Factory – Which is understood by the client and contains a function to create a abstract...
Azure Application Insights is a powerful logging/monitoring service provided by Azure. It can be used to live-stream your application logs, analyze the perfo...
Visual Studio code is a simple code editor from Microsoft which is multi-platform, light weight and supports multiple languages such as NodeJs, C#, Python et...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
Few of the methods to debug a windows service project are
Problem: Need a dataset containing all the duplicate records based on a particular criteria selected by the user.
Logging is a very important feature that one would desire for a data/performance intensive applications. Logging helps us in debugging, giving vital and exte...
Question: How to fetch the automatically incremented primary key after an insert without selecting that particular column?
Problem: To fetch the youngest and oldest of the family based on the last name from the “Person” table whose design is as given below in a single query
Twitter has exposed a new set of APIs to stream the tweets from the users worldwide just as we stream a video from any website. This can be used from an appl...
As I was creating Akka.Persistence.DocumentDb project I started looking for some CI tools available for open source projects for free. I came across this won...
“OData is a standardized protocol for creating and consuming data APIs. OData builds on core protocols like HTTP and commonly accepted methodologies like ...
Html developers might already know that chrome is the best for web-development. If you don’t then check it out.
The latest version of Live Essentials 2011 is out and it’s a single gateway to social networking. They have integrated MSN messenger with Facebook, LinkedIn ...
Finally, much hyped windows phone 7 OS mobile phones is available to the market. So is the RTMed version of the windows phone developer tools.
Much awaited IE 9 Beta version is out for Download .
Azure service fabric deployment has loads of issues, whether you are trying to deploy using Visual studio or PowerShell one common error you would hit (esp. ...
Once an application is deployed to a service fabric cluster, you have two options to deploy your existing code.
A Reliable actor service is partitioned across the service fabric cluster. Partitioning in the context of service fabric is process of determining the partic...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Service fabric is a Mircoservices platform by Microsoft. It can be run on private cluster running on Windows or Linux , It can also be hosted on Azure.
What I have noticed in most of the projects that I have been part of is that the Performance is considered as a least priority feature. Well its definitely n...
As part of MVC4 Microsoft released new authentication provider(WebMatrix.WebData.ExtendedMembershipProvider) support open authentication and new entity frame...
There are many scenarios where one would have to create dynamic controls based on the logged in user, request etc. Main challenges with the dynamic controls ...
There are many scenarios where the programmer would need to add “custom data” in the configuration file other than the connection strings.
What I have noticed in most of the projects that I have been part of is that the Performance is considered as a least priority feature. Well its definitely n...
As part of MVC4 Microsoft released new authentication provider(WebMatrix.WebData.ExtendedMembershipProvider) support open authentication and new entity frame...
There are many scenarios where one would have to create dynamic controls based on the logged in user, request etc. Main challenges with the dynamic controls ...
There are many scenarios where the programmer would need to add “custom data” in the configuration file other than the connection strings.
I recently cleared the Google Certified Professional Cloud Architect exam and hereby I am sharing the list of study materials and the concepts of the GCP tha...
I have been given Azure Champ status by The-MAPA. What is THE-MAPA MAPA, an acronym for Microsoft Association of Practising Architects, is a global communit...
I completed AZ-301 Microsoft Azure Architect Design exam successfully, which earned me Azure Solution Architect Expert certification.
I took AZ-300 exam today and cleared it , this was my first-ever official certification ever. Not that I didn’t value them earlier, was never motivat...
We faced a scenario where we had a dataset (EF Linq query) which needs to be sorted based on the user selection (user was given the selection option with the...
.Net has a very useful class called “Random” which generates a random number between a range. You can read about the Random class here.
Its very common to import data from a csv file (flat file) into RDBMS or any such destination. When someone calls it a CSV file it need not be just a comma s...
Problem: Need a dataset containing all the duplicate records based on a particular criteria selected by the user.
Question: How to fetch the automatically incremented primary key after an insert without selecting that particular column?
Problem: To fetch the youngest and oldest of the family based on the last name from the “Person” table whose design is as given below in a single query
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
There are scenarios where one might have to provision a Azure resource on the fly and use the connection string or SAS key or credentials of those deployed r...
Azure Resource Manager (ARM) templates are quite handy when it comes to automating the provisioning of azure resources. Almost 99% of the azure resources can...
I just published a github repository containing .Net core web application to authenticate Azure Resource Manager APIs and gain access to resources in other s...
Azure app service provides a publicly accessible endpoint for the application you deploy in it. One can restrict the access by configuring an Isolated tier a...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
There are number of reasons one would want to load a certificate (*.pfx, *.p12) with private key, mine was to sign a JWT token. Requirement was to sign JWT w...
Docker desktop is now available with WSL integration, provided that you are on windows 10 1909 build, it brings in a lot of performance improvements to the e...
We have been managing a multi-tenant kuberentes cluster with more than 100 nodes, hosting multiple ingress services exposed to the public domain. I will cove...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Agile (SCRUM) is a very good process for software development, not only i say it but most of the companies worldwide say it and have adopted it. But everythi...
I just was part of a team which completed one of the most complex products at least I had worked in my short career of 5 years as a software developer. Brief...
“The fundamental idea of Event Sourcing is that of ensuring every change to the state of an application is captured in an event object, and that these eve...
Singleton pattern is the first pattern one would learn in the GOF patterns. It simply states that only one instance of the class should be created and no mor...
Proget is a universal package manager used to deploy and access private code packages within a company or publicly outside. It is a very useful deployment to...
Postman is arguably the best tool for developers to test/debug their APIs. If you haven’t heard about it or used it I recommend to go download it ASAP.
Proget is a universal package manager used to deploy and access private code packages within a company or publicly outside. It is a very useful deployment to...
Postman is arguably the best tool for developers to test/debug their APIs. If you haven’t heard about it or used it I recommend to go download it ASAP.
Visual Studio code is a simple code editor from Microsoft which is multi-platform, light weight and supports multiple languages such as NodeJs, C#, Python et...
Once you create a Service Fabric Application and notice the base class “Actor” has no public constructor
Azure Storage Accounts (GPV2 sku), allows users to host static websites using the blob storage. This feature was recently GA’ed. Jekyll is a static website g...
I have been blogging on WordPress platform since 2010 (even though I wish to write more), I had always found it very difficult to share code, considering mos...
Azure functions with Storage Queue trigger has a built in retry logic based on the dequeue count of the message in the queue. You can configure the frequency...
Azure table storage is one of the cheapest No-SQL (Key value store) datastore amongst other services. Table storage can be used for multiple scenarios such a...
Azure Application Insights is a powerful logging/monitoring service provided by Azure. It can be used to live-stream your application logs, analyze the perfo...
Azure table storage is one of the cheapest No-SQL (Key value store) datastore amongst other services. Table storage can be used for multiple scenarios such a...
Docker desktop is now available with WSL integration, provided that you are on windows 10 1909 build, it brings in a lot of performance improvements to the e...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
I recently cleared the Google Certified Professional Cloud Architect exam and hereby I am sharing the list of study materials and the concepts of the GCP tha...
What is Terraform?
I have been using Conemu as my goto terminal, i.e. till Micrsoft released the beta version of Windows Terminal. Windows terminal has a tabbed window which al...
Visual studio code is the most preferred IDE amongst the frontend developers, its opensource and supports a wide variety of plugins. In this blog I will list...
I have been an afficianado of whatever Microsoft builds, since I was introduced to the computers. I have used windows on personal computer since win’98 days,...
I have been using Conemu as my goto terminal, i.e. till Micrsoft released the beta version of Windows Terminal. Windows terminal has a tabbed window which al...
Visual Studio 2010 has hit the market, with its new look and the user experience its the best IDE Microsoft has brought out to the market. Add to the fact th...
Much awaited IE 9 Beta version is out for Download .
Logging is a very important feature that one would desire for a data/performance intensive applications. Logging helps us in debugging, giving vital and exte...
“Without valid unit tests any code that’s written has no value as its not verifiable. And if your code isn’t testable (unit) there is a major design flaw ...
“OData is a standardized protocol for creating and consuming data APIs. OData builds on core protocols like HTTP and commonly accepted methodologies like ...
One good thing i liked about Service Fabric is the actor systems, which led me a Java port of Akka/Scala called Akka.Net. You must have a look at it, actors ...
As I was creating Akka.Persistence.DocumentDb project I started looking for some CI tools available for open source projects for free. I came across this won...
If you’d have an actorsystem within an web application, you would have faced the problem of creating an actor with a unique id. Since web is by default state...
Azure Site Recovery (ASR) service contributes for the backup and disaster recovery service. It provides features like backup service and disaster recovery se...
Azure Site Recovery (ASR) service contributes for the backup and disaster recovery service. It provides features like backup service and disaster recovery se...
Azure Site Recovery (ASR) service contributes for the backup and disaster recovery service. It provides features like backup service and disaster recovery se...
I have been lately working on Infrastructure as Code project to deploy reference architectures on Microsoft Azure, which provided me with an opportunity to d...
Azure CLI is a powerful cross-platform command line tool for managing Azure resources, this has become my go-to command line utility for doing so. It’s writt...
I have been blogging on WordPress platform since 2010 (even though I wish to write more), I had always found it very difficult to share code, considering mos...
I have been blogging on WordPress platform since 2010 (even though I wish to write more), I had always found it very difficult to share code, considering mos...
I have been blogging on WordPress platform since 2010 (even though I wish to write more), I had always found it very difficult to share code, considering mos...
Azure table storage is one of the cheapest No-SQL (Key value store) datastore amongst other services. Table storage can be used for multiple scenarios such a...
Azure Storage Accounts (GPV2 sku), allows users to host static websites using the blob storage. This feature was recently GA’ed. Jekyll is a static website g...
Azure Storage Accounts (GPV2 sku), allows users to host static websites using the blob storage. This feature was recently GA’ed. Jekyll is a static website g...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Sonarqube is an open source tool which provides continuous inspection of the code quality. It integrates seamlessly with all the CI/CD tools such as Jenkins,...
Json (JavaScript Object Notation ) is a lightweight, self-describing markup, which has become a universal notation for data exchange. Json is now everywhere ...
Azure functions with Storage Queue trigger has a built in retry logic based on the dequeue count of the message in the queue. You can configure the frequency...
Azure functions with Storage Queue trigger has a built in retry logic based on the dequeue count of the message in the queue. You can configure the frequency...
Azure app service provides a publicly accessible endpoint for the application you deploy in it. One can restrict the access by configuring an Isolated tier a...
I have been given Azure Champ status by The-MAPA. What is THE-MAPA MAPA, an acronym for Microsoft Association of Practising Architects, is a global communit...
What is Terraform?
What is Terraform?
Microsoft recently shipped their new monospaced font called ‘Cascadia’, and this is the same font that MS ships with its new Terminal. If you haven’t used th...
Microsoft recently shipped their new monospaced font called ‘Cascadia’, and this is the same font that MS ships with its new Terminal. If you haven’t used th...
I have been an afficianado of whatever Microsoft builds, since I was introduced to the computers. I have used windows on personal computer since win’98 days,...
We have been managing a multi-tenant kuberentes cluster with more than 100 nodes, hosting multiple ingress services exposed to the public domain. I will cove...
We have been managing a multi-tenant kuberentes cluster with more than 100 nodes, hosting multiple ingress services exposed to the public domain. I will cove...
We have been managing a multi-tenant kuberentes cluster with more than 100 nodes, hosting multiple ingress services exposed to the public domain. I will cove...
We have been managing a multi-tenant kuberentes cluster with more than 100 nodes, hosting multiple ingress services exposed to the public domain. I will cove...
socialmedia
Streaming tweets at real time using .Net
1 minute read
Twitter has exposed a new set of APIs to stream the tweets from the users worldwide just as we stream a video from any website. This can be used from an appl...