top of page
Search
The Tech Platform
Dec 16, 2021
Program to Swap two Variables in Python
The most native approach is to store the value of one variable(say x) in a temporary variable, then assigning the variable x with the...
The Tech Platform
Dec 16, 2021
Online Payment Gateway Integration With ASP.NET Core
A step-by-step guide on how to implement payment gateways in ASP.NET Core apps using popular payment services: Braintree Overview A...
The Tech Platform
Dec 14, 2021
Program to Convert String from Snake_Case to CamelCase in JavaScript
Snake_Case: A string in snake_case uses the underscore character to separate each word. Each word in a snake_case string usually begins...
The Tech Platform
Dec 13, 2021
How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...
The Tech Platform
Dec 10, 2021
Write a Python Program to Print the Fibonacci Series of a Given Number
A Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8.... The first two terms are 0 and 1. All other terms are obtained by...
The Tech Platform
Dec 10, 2021
Write a program to Find the Sum of the list in Python
See the flowchart below to understand how the code will work. Code: ListSum = [] #crate a empty list in Python #takes input for number...
The Tech Platform
Dec 9, 2021
Top 3 Text Editors vs Top 3 IDE’s | Which Bests Suits You?
If you are a developer and like to code a lot you might have heard about the 2 different coding environments, the Text Editors and the...
The Tech Platform
Dec 9, 2021
what is Stack and Queue in C#?
Stack Stack class represents a last-in, first out collection of object. It is used when you need a last-in, first-out access of items....
The Tech Platform
Dec 9, 2021
How to write URL shortener in .NET5?
In this series we will try to show you how easy it is to write a service that shortens URLs with .NET5. On top of that, we will add an...
The Tech Platform
Nov 30, 2021
Angular dynamic large-scale forms
Angular library to generate forms dynamically by having the ability to customize, manipulate and scale it easy. Formify model generate...
bottom of page