How to Shrink Docker Images: Six Practical Optimization Methods

docker

Docker makes packaging and deploying applications much easier — but if you aren’t careful, image sizes can balloon over time. Big images cost you more in storage, longer in deployment and CI/CD pipelines, worse in network time, and present larger attack surfaces. So optimizing images is not just “nice to have” — it has technical, … Read more

Python *args and **kwargs Explained (Beginner-Friendly Guide)

AI and Cyber Attack

If you’re learning Python, you’ve probably seen functions with *args and **kwargs. At first, they look strange — but actually, they’re just tools to make your functions more flexible and powerful. In this post, we’ll break them down in plain English, with examples and real-world use cases. 🔹 What is *args? *args allows a function … Read more

Docker Swarm Cheat Sheet: 20 Essential Commands Every Engineer Must Know

Susiloharjo

Introduction Looking for a quick reference to manage a Docker Swarm cluster? This cheat sheet gives you the 20 most used Docker Swarm commands, from initializing a manager node to scaling services, securing secrets, and troubleshooting. Keep it handy for fast, error‑free deployments. Getting Started with the Swarm Manager Command Purpose Sample Usage docker swarm … Read more

Go 1.25 New Features: Quick Overview & Hands‑On Guide to go doc ‑http and XOF Interface

Susiloharjo

Introduction Go 1.25 landed with a handful of under‑the‑hood improvements and two developer‑friendly additions that you can start using today: the go doc -http documentation server and the new hash.XOF interface for extendable‑output hashes. In this post we give you a concise release‑notes snapshot, then dive straight into hands‑on examples you can copy‑paste into your own … Read more

MLOps Guide 2025: Bringing DevOps Discipline to Machine Learning

Susiloharjo

Introduction Machine Learning has moved from research notebooks to mission‑critical services such as recommendation engines, fraud detectors, and predictive maintenance. Yet many teams still struggle to move models from experiment to production reliably. MLOps—the practice of applying DevOps rigor to the entire ML lifecycle—solves this problem by automating, versioning, and monitoring every step. This guide … Read more

How I Caught Node-RED Eating My Disk with ncdu

Susiloharjo

Ever had your server suddenly scream: Yeah, me too. And it wasn’t ransomware, it wasn’t a virus — it was my Node-RED logs quietly ballooning into gigabytes of digital fat. I could’ve gone into panic mode. Instead, I reached for my favorite weapon: ncdu. Meet ncdu: The Disk Usage Detective 🕵️‍♂️ ncdu stands for NCurses … Read more