Tips and Tricks

Convert a number range to another range

Today I will share with you one very cool tricks used in Graphics and visualization. The problem is you have given one range, for example, 0-10, and you have to convert this range to 0-100. Converting range from one scale to …

How to remove NuGet Package from server?

NuGet is a popular package manager for .NET projects, and it provides a convenient way to publish and manage packages. Sometimes, you may need to remove a package from a NuGet server. In this guide, we’ll walk you through the pr…

How to invoke REST endpoint from Visual Studio Code

VS Code (Visual Studio Code) is a free editor from Microsoft, which is very popular nowadays. Visual studio code supports almost all language from code compilation, IntelliSense to debugging. The best part of the VS Code is e…

How to find the Wi-Fi Password in Windows 10

Did you forgot your wifi password?. No worries you can recover your password without downloading any software. Follow the following steps to recover the password. STEP 1 Press Windows Key +R and type cmd It will show you…

JavaScript type checking without typescript

In this post, I will show you how to enable typescript type checking in in JavaScript file.` Let’s suppose you have the following file code in javascript. var a = 10 ; console . blog ( 'Hello World' ) ; You can see …

Load More
That is All