LangChain Output Parsers ExplainedIntroduction While working with LangChain, I learned that getting clean and predictable output from LLMs is just as important as writing good prompts. That’s where Output Parsers come in. This post is based on my hands-on practice while exploring Lan...Jan 22, 2026·3 min read
Dockerizing a Multi-Container Application with Docker ComposeWhat is a Multi-Container Application? A multi-container application is an app made of multiple services (or parts), where each service runs in its own container. For example, a web app may have a frontend container (React, Angular) and a backend con...Apr 17, 2025·3 min read
Building and Running a Dockerized PHP "Hello World" ApplicationAs a Computer Science student exploring web development and DevOps, I recently built and containerized a simple PHP application using Docker. Although the application simply prints "Hello, World!", this exercise provided practical experience in Docke...Apr 14, 2025·4 min read