top of page
Search


map() vs filter() vs reduce() in JavaScript.
Map, reduce, and filter are all array methods in JavaScript. Each one will iterate over an array and perform a transformation or...

The Tech Platform
Jul 28, 2022


Program to make Calculator in Python
Create a simple calculator which can perform basic arithmetic operations like addition, subtraction, multiplication, or division...

The Tech Platform
Jul 28, 2022


How to implement rate limiting in ASP.NET Core
What is Rate Limiting? Rate limiting is a technique used to limit the number of requests that a client can make to a web application or...

The Tech Platform
Jul 27, 2022


Introduction to Program Execution Cycle
In computers, to execute a program is to run the program in the computer, and, by implication, to start it to run. In usage, people run...

The Tech Platform
Jul 27, 2022


Blazor vs Flutter: The Difference
What is Blazor? Blazor is a Single Page Application development framework. The name Blazor is a combination/mutation of the words Browser...

The Tech Platform
Jul 26, 2022


Implementing Digest Authentication in .NET
TL;DR: You can read the code in GitHub repository here, the README provides an example usage. For one request we generate two requests...

The Tech Platform
Jul 25, 2022


How to read User Input from Console in Java?
Let's see a complete code example of reading user input using the Scanner class. In this Java program, we are reading User Input in form...

The Tech Platform
Jul 25, 2022


Architectural Microservices Patterns: SAGA, Outbox and CQRS with Kafka
The Microservices architecture leads to clearly separated individual services, that are independently developed and deployed. Due to the...

The Tech Platform
Jul 25, 2022


Create a web API using minimal API ASP.NET Core
Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to...

The Tech Platform
Jul 22, 2022


How to write a production-ready dockerfile?
What is DockerFile? A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an...

The Tech Platform
Jul 22, 2022
bottom of page