top of page
Search
The Tech Platform
Jan 10, 2022
4 Major Benefits of Using AutoML over Hand Coding
Everywhere you look, companies are identifying ways to use data to improve or resolve business problems. Automated machine learning...
The Tech Platform
Dec 30, 2021
Entity Framework Performance Tips & Tricks
In this article we’ll go through simple things to keep in mind while using Entity Framework to improve the performance of our code....
The Tech Platform
Dec 28, 2021
3 Methods to Merge an Array in JavaScript
An array is a data structure representing an ordered collection of indexed items. A common operation performed on multiple arrays is...
The Tech Platform
Dec 24, 2021
The :empty and :blank CSS pseudo selectors
:empty The :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including...
The Tech Platform
Dec 22, 2021
A Generic Function to Update and Manipulate Object Arrays in TypeScript
While building my newest SaaS product, ReduxPlate, I realized a common pattern kept cropping up in my array manipulation functions. I was...
The Tech Platform
Dec 17, 2021
JavaScript One-Liner coding/ Programming
1. How to convert a string from snake_case to camelcase A string in snake_case uses the underscore character to separate each word. Each...
The Tech Platform
Dec 16, 2021
Program to Swap two Variables in Python
The most native approach is to store the value of one variable(say x) in a temporary variable, then assigning the variable x with the...
The Tech Platform
Dec 14, 2021
Program to Reverse a List in Python
This python program allows user to enter the length of a List. Code: NumList = [] Number = int(input("Total Number of List Elements: "))...
The Tech Platform
Dec 14, 2021
Program to Convert String from Snake_Case to CamelCase in JavaScript
Snake_Case: A string in snake_case uses the underscore character to separate each word. Each word in a snake_case string usually begins...
The Tech Platform
Dec 13, 2021
10 Python String Processing Tips & Tricks
In this article, we will learn about the string processing and tips & tricks used for string processing in python. What is String...
bottom of page