The IDE Wars Are Over: How Visual Studio 2025 and Modern Developer Tools Changed Everything

๐ŸŽ“ AUTHORITY NOTE Based on 20+ years using every major IDE from Visual Studio .NET 2003 to today’s AI-powered tools. This represents hands-on experience leading teams through multiple IDE migrations and tool standardizations. Executive Summary Remember when developers would argue passionately about whether Visual Studio, VS Code, JetBrains, or Vim was the “right” choice? Those […]

Read more โ†’

C# 8.0 New Feature–Interface Default Implementation for Methods

With upcoming C# 8.0, there is an interesting feature called default implementation body for methods within an interface definition. That means if you have few methods signatures defined and you want make implementation classes to implement these methods optionally (remember, previously all interface methods needs to be implemented in implementation classes) , with C# 8.0, […]

Read more โ†’

Global Office 365 Developer Bootcamp–Letterkenny-Nov’10 2018–Register Now

We have got the opportunity to host Global Office 365 Developer Bootcamp in Letterkenny as part of Letterkenny DotNet Azure User Group (LK-MUG). Global Office 365 Developer Bootcamp โ€“ Overview? Following the success of last year, Global Office 365 Developer Bootcamp now becomes an annual event. It is a free, one-day, hands-on training event led […]

Read more โ†’

Azure Cosmos DB – TTL (Time to Live) – Reference Usecase

TTL capability within Azure Cosmos DB is a live saver, as it would take necessary steps to purge redudent data based on the configurations you may.  Let us think in terms of an Industrial IoT scenario, devices can produce vast amounts of telemetry information, logs and user session information that is only useful until we […]

Read more โ†’

Azure Cosmos DB – 429 Too Many Requests

Recently while I was doing Performance Testing in one of the APIs interacting with Cosmos DB, I encountered a problem as Azure Cosmos DB APIโ€™s started returning Http Code 429.ย  Http Status Code 429 indicates that too many request been received or request rate is very large. This error would happen when we have concurrent […]

Read more โ†’

Introduction to NDepend : Static Code Analysis Tool

As a developer, you always have to take the pain of getting adapted to the best practices and coding guidelines to be followed as per the organizational or industrial standards.  Easy way to ensure your coding style follows certain standard is to manually analyze your code or use a static code analyzer like FxCop, StyleCop […]

Read more โ†’