top of page
Search
The Tech Platform
Apr 7, 2022
What is Java Programming Language?
Java is a widely recognized and versatile programming language that has gained immense popularity since its introduction in the...
The Tech Platform
Apr 6, 2022
LRU Cache in JavaScript: How it Works?
The Least Recently Used (LRU) algorithm is a cache replacement algorithm commonly used to manage a cache when its space is limited. The...
The Tech Platform
Apr 5, 2022
C# Delegates: Func Delegate, Action Delegate and Predicate Delegate
A delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference to the methods....
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
Apr 4, 2022
Introduction to Dependency Injection(DI)
Dependency Injection (DI) is a widely adopted design pattern that effectively reduces tight coupling between software components,...
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 1, 2022
Active-Passive Background Service In .Net 6
We should be able to run multiple instances on the same background service on multiple servers. At the same time, only one instance...
The Tech Platform
Feb 24, 2022
Using RabbitMQ with multiple consumers from one .NET executable
RabbitMQ is a popular message broker that uses AMQP protocol. Helps creating and working with queues of data messages. Queues are needed...
bottom of page