top of page
Search
The Tech Platform
Jul 11, 2022
CI / CD with GitHub in .NET
GitHub uses GitHub Actions to launch CI / CD, the documentation for which can be found here and read in full. Here’s an example of how to...
The Tech Platform
Jul 4, 2022
Programming Languages: Types of Programming Language.
A programming language is any set of rules that converts strings, or graphical program elements in the case of visual programming...
The Tech Platform
Jun 26, 2022
Tools for good code
Code quality tools are automated tools/programs that would observe the code and point out any common issue/problem which could arise as a...
The Tech Platform
Jun 24, 2022
Best practice for Node.js Developer
Node. js developers deploy and maintain network applications. They manage the exchange of data between servers and users, develop...
The Tech Platform
Jun 20, 2022
The Factory Design Pattern
The Factory design pattern is a creational design pattern that provides an interface for creating objects in a superclass but allows...
The Tech Platform
Jun 17, 2022
Python program to Convert Hours to Seconds
Convert Hours to Seconds In this program, we need to multiply hours with 60 (1 hour = 60 minutes ) so that we get in minutes, and once we...
The Tech Platform
Jun 17, 2022
What is Memory Management in JavaScript? How to Improve Memory Management of your Application
Memory management in low-level languages like C involves manual control over memory allocation and deallocation using functions like...
The Tech Platform
Jun 16, 2022
How to Use Decorators in JavaScript?
JavaScript Decorators are a powerful design pattern that enables the addition of behavior to an individual object, whether in a static or...
The Tech Platform
Jun 16, 2022
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...
bottom of page