Step by step Installation of C# Extension in Visual Studio Code

C# Extension for Visual Studio Code provides lightweight development tools for .NET Core. By default it includes C# editing support, Syntax Highlighting, IntelliSense, Go to Definition feature etc. You need this extension if you are working with .net core in visual studio. Continue reading “Step by step Installation of C# Extension in Visual Studio Code”

Memory management- Optimize performance of GIMP

GIMP is a popular cross-platform image editor available for Windows, GNU/Linux, OS X and more operating systems. It is open source and available as free software. In this article I will introduce you about some options to optimize your GIMP according to you. However GIMP is already optimized. Continue reading “Memory management- Optimize performance of GIMP”

How to add text inside the doughnut chart using Chart.js

There are different JavaScript charting frameworks available. The chart.js is one of them. The chart.js is the canvas based and has the Great rendering performance across all modern browsers (IE9+). It provides 8 type of different chart style you can find all the help and documentation on the chartJS documentation. Continue reading “How to add text inside the doughnut chart using Chart.js”

How to store and retrieve multiple Boolean values using single integer value

There are situations when we need to store multiple Boolean values related to the properties of an object in our project. For example, I am going to create a project related to a client having multiple services to offer to the end user. To be more specific say we have a telecom operator having multiple services like SMS, Calling , Roaming, internet packs to be offered to their end user. Now for every customer record we need to store the information which services the user is having at any point of time. Here we are just covering the Boolean information like whether user is having SMS pack or not(instead of details of services) and similar information for other packs. Continue reading “How to store and retrieve multiple Boolean values using single integer value”