Feb 10 · 2 min read · What is Microservices? Microservices architecture is a way of building an application as a collection of small, independent services, where: Each service does one specific job Each service runs independently Services communicate using HTTP / REST ...
Join discussion
Jan 9 · 3 min read · Microservices is an architectural concept where we divide a big application into multiple small, independent services instead of keeping everything inside one single codebase. This approach helps solve many challenges that appear when our application...
Join discussionNov 4, 2025 · 5 min read · Firstly, what are environment variables and why do we use them? Environment variables are similar to the variables we use in our code — they store data that we can access later — but the main difference is they live outside your code. They are part o...
Join discussionSep 3, 2025 · 4 min read · You heard of microservices. You heard of operating systems. Let’s fuse them together. When we think about OS, the picture hasn’t changed much in decades: Linux, Windows, macOS. Big, monolithic beasts to manage processes, memory, and I/O. But a new id...
Join discussion
Sep 1, 2025 · 1 min read · Microservices - What does it mean? Googling microservices will present you with many definitions. All of them essentially point to the same basic idea. However, we shall attempt at coming to a more holistic understanding of what the term really mean...
Join discussionAug 25, 2025 · 8 min read · GitHub Repo: https://github.com/marco13-moo/ludotheca-share-mesh Application Patterns Decomposition by Sub-domain Pattern The decomposition by sub-domain pattern provided the framework needed to define the bounded-contexts of the system. Through th...
Join discussionAug 12, 2025 · 3 min read · Author: Taranpreet SInghSpecial thanks: Cloud Champ 🙌 Introduction This blog documents my journey of deploying a microservices-based video-to-audio converter application using Kubernetes and Helm — but more importantly, the challenges I faced along ...
Join discussionAug 9, 2025 · 3 min read · 1. Understanding the Core Architectures Monolithic Architecture (The All-in-One Approach) What it is:A single, tightly-coupled codebase where all components (UI, business logic, database access) are interconnected. Key Characteristics: Single codeba...
Join discussion