top of page
Search
The Tech Platform
Aug 26, 2022
MVC vs MVP vs MVVM: The Difference
Model View Controller - MVC The Model-View-Controller (MVC) is an architectural pattern that separates an application into three main...
The Tech Platform
Aug 25, 2022
10 Console Methods in Javascript
In JavaScript, the console is an object which provides access to the browser debugging console. We can open a console in web browser by...
The Tech Platform
Aug 23, 2022
Using Quartz.NET with ASP.NET Core and worker services
Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems....
The Tech Platform
Aug 19, 2022
Running JavaScript in WebAssembly with WasmEdge
JavaScript WebAssembly WebAssembly was initially conceived as a "JavaScript alternative for browsers" with the aim of enabling the...
The Tech Platform
Aug 11, 2022
Program to Count the Number of Vowels in String in Python
Program to Count the Number of vowels we’re going to check how many vowels are present in a given String . There are five vowels– a, e,...
The Tech Platform
Aug 11, 2022
Clean Code Principles in Django
Cleaning is probably not your favorite pastime activity, and it’s certainly not mine. Whether it’s cleaning your room or cleaning your...
The Tech Platform
Aug 10, 2022
Introduction to Channels in .NET
What are Channels? Channel is a concept for passing data between producers and consumers. More specifically, a channel has a queue where...
The Tech Platform
Aug 10, 2022
Coding : Principles, Types and Concepts
Coding is a list of step-by-step instructions that get computers to do what you want them to do. Coding makes it possible for us to...
The Tech Platform
Aug 10, 2022
C# Classes and Objects
A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the fields and...
The Tech Platform
Aug 8, 2022
Tips for writing Clean C# Code
Clean code is the art of writing the code that humans can understand easily. Writing code is not easy task, but when it comes to writing...
bottom of page