Recent posts

Shallow Copy vs Deep Copy in Python

2 minute read

In Python, shallow copy and deep copy are ways of copying objects, but they differ in how they handle nested objects like lists or dictionaries within the co...

Message Queues: RabbitMQ, Redis and Kafka

5 minute read

What Are Message Queues? Layman Terms A message queue is like a post office or delivery service. When one part of a system wants to send information to anoth...

Monolithic vs Microservices

3 minute read

What Are Microservices? In layman’s terms: Microservices are like building blocks of a house, each performing its own job. Instead of building one big piece ...