top of page
Search
The Tech Platform
Jan 9, 2022
Hex() function in Python
hex() function is one of the built-in functions in Python3, which is used to convert an integer number into it’s corresponding...
The Tech Platform
Dec 16, 2021
Program to Print Factorial of a Number in Python
Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that number you ask for factorial....
The Tech Platform
Dec 10, 2021
Write a program to Multiply the List in Python
This program allows user to define the size of list, then further ask to enter all the numbers of given size. For example, if user enters...
The Tech Platform
Nov 2, 2021
How to create a simple logger in C#
It’s easy to create a custom logging framework to log your .Net application’s errors and events to a flat file, a database, or the event...
The Tech Platform
Sep 25, 2021
Constructors in C#
In C#, a constructor is a special type of method that is automatically executed when an object of a class is created. It is used to...
The Tech Platform
Aug 18, 2021
A scratch guide to API versioning in ASP.NET Core
If I call an API with a URL of https://mybandapi.com/api/bands/4, I’ll get the following response: { "id": 4, "name": "The Eagles, man" }...
The Tech Platform
Aug 10, 2021
Create an animated landing page with Tailwind CSS
In this project we are going to build a beautiful tailwind CSS site. This site again will be created using only HTML and CSS and no...
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
Jul 8, 2021
How to Add Youtube Video in HTML
You can use this id to add videos directly from the Youtube. You can let your video start playing automatically when a user visits the...
The Tech Platform
Mar 5, 2021
6 Different Star Pattern Programs in C#
Patterns are the repeated decorative design. There is a simple code to write patterns in C#. We can write code to print different types...
bottom of page