Latest Posts

Traefik Fundamentals and How It Fits Into Kubernetes

7 min read

Traefik is a modern reverse proxy and ingress controller designed for dynamic environments like Kubernetes. This post explores its core concepts, how it integrates with Kubernetes, and how to deploy it using Helm.

traefikkubernetesdevopshelmingress

Setting Up Podman and Kind on macOS for Kubernetes Development

6 min read

Ditch Docker Desktop and move to Podman on macOS and Linux. Learn how to install, configure Podman resources, use podman-compose, and manage containers securely without a daemon.

podmanmacosdevopscontainersdocker-alternative

Traefik Setup and Dashboard Security on Kubernetes with Helm

3 min read

A comprehensive guide to deploying Traefik as an ingress controller in Kubernetes, securing the dashboard with Basic Authentication, and enabling TLS with Let's Encrypt.

kubernetestraefikhelmingresstlsletsencryptsecurity

Kubernetes Architecture 101: Core Components

4 min read

A comprehensive guide to understanding Kubernetes architecture, its core components, and how it compares to Docker Swarm for container orchestration.

kubernetesdockerdevopscontainersorchestrationarchitecturek8s

Merge Intervals

2 min read

Learn how to merge overlapping intervals efficiently

ds-algoleetcodearrayssorting

Valid Parentheses

2 min read

Learn how to validate a string of parentheses, brackets, and braces using a stack data structure

ds-algoleetcodestacksstrings

Design a Min Stack

4 min read

Learn how to implement a stack data structure that supports constant time push, pop, top, and getMin operations

ds-algoleetcodestacksdata-structures

FizzBuzz Solution

2 min read

Learn different approaches to solve the classic FizzBuzz problem

ds-algoleetcodemathstrings

Detect a Cycle in a Linked List

7 min read

Learn how to detect and find the starting point of a cycle in a linked list using Floyd's algorithm

ds-algoleetcodelinked-liststwo-pointers

Merge Two Sorted Lists

3 min read

Learn how to merge two sorted linked lists using recursive and iterative approaches

ds-algoleetcodelinked-listsrecursion

Two Sum

3 min read

Learn how to solve the classic Two Sum problem using hash maps

ds-algoleetcodearrayshash-maps