top of page
Search
The Tech Platform
Apr 12, 2022
How to Add JavaScript to HTML?
You can add JavaScript code in an HTML document by employing the dedicated HTML tag <script> that wraps around JavaScript code. The...
The Tech Platform
Apr 8, 2022
How to use String.matches() with Regular Expression in Java?
The string matches method in Java can be used to test String against regular expressions in Java. The string matches() method is one of...
The Tech Platform
Apr 5, 2022
Different Ways to Inject Dependencies in .NET Core
It is impossible nowadays to design classes/controllers which don’t depend on other objects. Rather than instantiating those objects...
The Tech Platform
Apr 4, 2022
Switch Statement in C#
In C#, Switch statement is a multiway branch statement. It provides an efficient way to transfer the execution to different parts of a...
The Tech Platform
Apr 4, 2022
Trigger C# functions on specific intervals
Introduction Sometimes we need to perform some action on specified intervals. For example I was working on an application where I needed...
The Tech Platform
Mar 10, 2022
Develop an Hotel-management-system-with Django.
To develop a website with Django framework, a basic knowledge of python is important since django is a web development framework written...
The Tech Platform
Mar 7, 2022
The Secrets of JSON.stringify()
What is JSON.stringify()? JSON.stringify() is a function commonly used to convert a JavaScript object or value to a JSON-formatted...
The Tech Platform
Feb 23, 2022
How to Call Event-Stream APIs in Angular
In this post, we will tell you how this API was called in Angular (to refresh inbox when a new mail arrives or a mail is sent to trash in...
The Tech Platform
Feb 18, 2022
IndexOf() in JavaScript
In JavaScript, indexOf() is a string method that is used to find the location of a substring in a string. Because the indexOf() method is...
The Tech Platform
Feb 16, 2022
Create Neat Technical Diagrams using Python
Documenting a project well is one of the most important aspects of the development lifecycle of any project as at the end of the day this...
bottom of page