2022

Hands-On Data Structures and Algorithms with TypeScript

This book is intended for those who do not have the time to read a lengthy book or tutorial. This book is a collection of algorithms and d...

santosh 31 Dec, 2022

Docker ENTRYPOINT and CMD : Differences & Real world Examples

Docker, a powerful containerization platform, provides flexibility in defining how your containers should behave. Two key instructions, CMD...

santosh 29 Dec, 2022

Run the Docker daemon as a non-root user

Docker containers are powerful tools for isolating and running applications, but they often run as the root user by default. Security best ...

santosh 28 Dec, 2022

What is Docker and How Does It Work?

Docker has revolutionized the way we build, ship, and run applications. Its lightweight containers and portability have made it a cornersto...

santosh 27 Dec, 2022

Advanced Docker Concepts

Advanced Docker Concepts 1. What is Docker and How Does It Work? Learn about Docker, a containerization platform revolutionizing applicat...

santosh 26 Dec, 2022

Find the middle of a given linked list

The Tortoise and Hare Algorithm is a popular algorithm used to find the median of a linked list. It derives its name from the fable of the t...

santosh 17 Dec, 2022

Two-Pointer Algorithm in JavaScript

The two-pointer technique is a powerful approach to solving certain problems with optimal time and space complexity. One common application...

santosh 17 Dec, 2022

Why Do We Use SOLID Principles in C#?

The goal of the SOLID principles is to make our code more maintainable and extensible. While this is the ultimate goal, it’s not always the ...

santosh 17 Dec, 2022

Which One Should You Choose TypeScript vs JavaScript

When it comes to choosing between JavaScript and TypeScript, there are a few factors that should be considered. One of the biggest differen...

santosh 17 Dec, 2022

How To Implement Own Random Number Generator In JavaScript Using LCG

The Linear Congruential Generator is a pseudo-random number generator. It is one of the simplest and most widely used algorithms of this typ...

santosh 17 Dec, 2022

How to Generate Prime Number Using JavaScript

Prime number is a natural number that has exactly two distinct natural number divisors: 1 and itself. The first 30 prime numbers are 2, 3, ...

santosh 17 Dec, 2022

How to Implement DoublyLinkedList in TypeScript

DoublyLinkedList is a data structure that contains a head, tail and length property. Linked Lists consist of nodes, and each node has a v...

santosh 17 Dec, 2022