Daily Knowledge Drops

Today I Learned

Quick insights, code snippets, and "aha!" moments from my daily tinkering and chaos engineering.

8

Total TILs

8

Showing

22

Different topics

JA4's Split Format Saved Our Metrics Cardinality
October 14, 2025

# TIL: JA4's Split Format Saved Our Metrics Cardinality We had a service that rotated TLS ciphers on every connection. Our client classification metrics exploded to 50k unique fingerprints. Promethe...

Git Interactive Rebase: Clean Up Your Commit History
December 19, 2024

# TIL: Git Interactive Rebase: Clean Up Your Commit History Discovered `git rebase -i` today and it's a game-changer for cleaning up messy commit history before PR reviews. ## The Problem My commi...

Bash Parameter Expansion: String Manipulation Without External Commands
December 17, 2024

# TIL: Bash Parameter Expansion: String Manipulation Without External Commands Learned that Bash has built-in string manipulation that's way faster than calling `sed`, `awk`, or `cut`. ## The Old W...

Docker Volume Debugging: Finding Where Your Data Actually Lives
December 14, 2024

# TIL: Docker Volume Debugging: Finding Where Your Data Actually Lives Spent 2 hours debugging why data wasn't persisting. Turns out, understanding Docker volumes is crucial. ## The Problem I had ...

kubectl JSONPath: Extract Exactly What You Need
December 12, 2024

# TIL: kubectl JSONPath: Extract Exactly What You Need Stop piping kubectl output to `grep`, `awk`, and `sed`. JSONPath can get you exactly what you need in one command. ## The Basic Pattern ```ba...

kubectl neat - Remove Kubernetes YAML Clutter
December 10, 2024

# TIL: kubectl neat - Remove Kubernetes YAML Clutter Today I discovered `kubectl neat` - a plugin that removes all the clutter from Kubernetes YAML output. ## The Problem When you run `kubectl get...

jq Magic: Parse JSON Like a Pro
December 8, 2024

# TIL: jq Magic: Parse JSON Like a Pro `jq` is like `sed` for JSON. Once you learn it, you'll wonder how you ever lived without it. ## Installation ```bash # Mac brew install jq # Ubuntu/Debian a...

Docker Build Cache: The .dockerignore Gotcha
December 5, 2024

# TIL: Docker Build Cache: The .dockerignore Gotcha Spent 2 hours debugging why my Docker builds were slow despite using multi-stage builds and proper layer ordering. ## The Issue Every single bui...

Today I Learned | Harshit Luthra