Highstock – Live Data Streaming

If you are working or doing research on any charting library, you might have heard about Highcharts. Highstock is nothing but an extension of the highcharts which is specifically built for the financial or time series data. So that you have more options to leverage on any time related actions. You might have seen any … Read more

Inheritance is Fun

Inheritance is one of the most important aspect of the Object Oriented Programing. When I conduct interview, I have observed that Just one right example of Inheritance is enough to confuse the developers – even experienced ones. Inheritance is like brain exercise. I always enjoy working on complex examples of inheritance. In today’s blog post, … Read more

A Guide to Use Configuration in .Net Core Console Application

When working with .NET Core console applications, you may often need to store settings such as connection strings, API keys, or custom values. In .Net framework, the app.config file gets included automatically. While in .Net core you need to perform couple of steps to use the application configurations. In this post, I’ll walk you through … Read more

Understanding Q.js and Promises

In this Single Page Application (SPA) era, JavaScript has become increasingly complex, and handling asynchronous operations has become more crucial than ever. To manage this complexity, developers started embracing Promises. Among the available solutions, Q.js became one of the most popular libraries that helped simplify and manage asynchronous JavaScript code effectively. In this blog post, … Read more

Nesting in LESS: Writing Cleaner, More Modular Styles

When your project start to grow, your stylesheet also starts to grow. At that time, keeping your stylesheet organized becomes very challenging. That’s where LESS nesting comes in picture. Nesting allows you to write CSS that mirrors your HTML structure cleaner, more readable, and far more modular than plain CSS. In this article, we’ll break … Read more

How to create nuget package – Step by Step Guide

If you’re building reusable components in .NET, one of the best ways to share them, across multiple projects or with the community, is by creating a NuGet package. Whether you want to publish your package to nuget.org or use it privately within your team, this guide will walk you through the complete process of creating … Read more

Configure Your own Nuget Server

If you work in a team or maintain multiple .NET projects, you might have come under situation where you have to write the same common code for each of your project. In such situation, the best option for you is to create your own nuget package and hosting it to your own private NuGet feed. … Read more