top of page
Search


How to review your code?
Code review happens when another developer goes through you or your team's code line-by-line and provides constructive, helpful feedback....

The Tech Platform
Jun 16, 2022


Detecting Idle Users in Your Angular App
Occasionally the applications we work on need to react in a particular way if the user is inactive for a certain amount of time. For...

The Tech Platform
Jun 16, 2022


Fastest Loop in JavaScript?
In programming, loops are used to repeat a block of code. For example, if you want to show a message 100 times, then you can use a loop....

The Tech Platform
Jun 14, 2022


Write a Program to Convert Number to Words in Python
Example 1, we are going to convert a number to its wording. For instance, if the number is 12, the wordings will be “one-two”. A similar...

The Tech Platform
Jun 14, 2022


Program to check if a variable is undefined or null in JavaScript
You can easily check if a variable Is Null or Undefined in JavaScript by applying if-else condition to the given variable. Syntax:...

The Tech Platform
Jun 14, 2022


What is "__Name__" in Python?
"__name__" is a built-in variable in python that stores the name of the current module/script being executed. If the current module is...

The Tech Platform
Jun 13, 2022


Why to Choose Golang Programming Language?
Go is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched...

The Tech Platform
Jun 13, 2022


C# Optimization: Tips and Tricks
What is Optimization? Optimization is a program transformation technique, which tries to improve the code by making it consume less...

The Tech Platform
Jun 11, 2022


How to make your VS Code faster?
Visual Studio Code (VS Code) is designed to be lightweight. It has a tight set of core features, and you can add extra features through...

The Tech Platform
Jun 11, 2022


How to export data to Excel in ASP.NET Core
When needing to export data to Excel, you have a couple of different options. If you need simple tabular data, generating a CSV file may...

The Tech Platform
Jun 10, 2022
bottom of page