top of page
Search


Introduction to C# comments
In this article, we explore how to write comments. Comments are simply human-readable pieces of text that are not compiled nor...

The Tech Platform
Aug 31, 2021


Python 3.10: Top 6 Useful Features of Python
Python 3.10 boasts of being one of the most stable versions available for users to download, and will be released later this year. The...

The Tech Platform
Aug 13, 2021


Angular Preloading Strategies
Angular modules are chunks of code that can be imported into various parts of your application. A module can contain grouped pieces of...

The Tech Platform
Aug 9, 2021


Recursion in SQL Explained Visually
It’s common to store hierarchical data in SQL and recursive queries are a convenient way to extract information from such graphs....

The Tech Platform
Aug 4, 2021


Pure Components in React
Pure Components in React are the components which do not re-renders when the value of state and props has been updated with the same...

The Tech Platform
Aug 2, 2021


Namespacing in Python
Namespacing As with many programming languages, Python isolates code through the concept of namespaces. As a program runs, it keeps track...

The Tech Platform
Aug 2, 2021


While vs Do While Structure
While loop While loop allows a part of the code to be executed multiple times depending upon a given condition. It can be viewed as...

The Tech Platform
Aug 2, 2021


What is Cache Busting in .NET?
When a browser requests the server to get a static file, the browser will download this file, and then it will cache them to improve &...

The Tech Platform
Aug 2, 2021


How to query with GraphQL?
Getting too much data than what is needed, getting less data than we want, querying multiple endpoints for required data. These are some...

The Tech Platform
Jul 30, 2021


Throttling and Debouncing in JavaScript
Throttling Throttling is also called throttle function which is used in websites. Throttling is used to call a function. Then the number...

The Tech Platform
Jul 29, 2021
bottom of page