top of page
Search
The Tech Platform
Jul 29, 2021
What is difference between i++ and ++i?
++i and i++ both increment the value of i by 1 but in a different way. If ++ precedes the variable, it is called pre-increment operator...
The Tech Platform
Jul 28, 2021
TypeScript Enum Guide: Get Started in 5 Minutes
Enumerations (or enums) are a supported data type in TypeScript. Enums are used in most object-oriented programming languages like Java...
The Tech Platform
Jul 27, 2021
How to Print Emoji in Python
Everything in memory is stored in binary format. The same way emojis are. But it is difficult to identify the emojis in binary format....
The Tech Platform
Jul 27, 2021
Array Destructuring in JavaScript
Destructuring is an ECMAScript 6 (ES6/ECMAScript 2015) feature. When it comes to arrays, destructuring is basically a way to unpack...
The Tech Platform
Jul 21, 2021
Creating Specialized Charts with MATLAB Object-Oriented Programming
Developing advanced MATLAB® visualizations often involves managing multiple low-level graphics objects. This is especially the case for...
The Tech Platform
Jul 19, 2021
Benchmarking low-level I/O: C, C++, Rust, Golang, Java, Python
Benchmarking TCP Proxies is probably the simplest case. There is no data processing, only handling incoming/outgoing connections and...
The Tech Platform
Jul 17, 2021
Difference between C++, Java and Python.
C++ C++ is a general purpose programming language and widely used now a days for competitive programming. It has imperative,...
The Tech Platform
Jul 16, 2021
What is the JavaScript Map function?
JavaScript used to be limited in its collection capabilities. While other programming languages offered sets, associative maps, lists,...
The Tech Platform
Jul 12, 2021
5 Utility Types For Transforming Types in Typescript
One of the great things about typescript is its flexibility. You can transform, change, and create new types using existing types. In...
The Tech Platform
Jul 5, 2021
Golang vs Node.js : Which is better for backend Framework?
What is Go (Golang) ? Go is an Open-Source, Cross - Platform and compiled multithreaded programming language which was developed in 2007...
bottom of page