Nodist – Node.Js Version Manager

If you are working on multiple Javascript projects, you may require different versions of Node.Js for different projects and managing different versions of Node.js across multiple projects becomes very challenging especially for the Windows Developers. Nodist is one of the most reliable and lightweight node.js version manager built for the windows. If you are working … Read more

React Hooks

React hooks completetly changed the way we build react applications. It is now a default way to implement the components as it simplifies the code, improves the resuability and remove the limitations of your class component. In this blog post, we’ll see most common hooks used in react application. Please take a note that, this … Read more

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