Skip to main content

Audible Library — Final 11-Credit Canon

· 2 min read

Stoic Core (orientation & internal discipline)

  1. Meditations — Marcus Aurelius (Hammond / Penguin Classics)
    Why: Private field notes of a man carrying absolute responsibility; moral calibration without preaching.
    Listen profile: 🔁 Re-listen for life (short, dense, different book each decade).

  2. The Enchiridion & Discourses — Epictetus
    Why: The operating system of Stoicism; control, responsibility, agency, no metaphysics fluff.
    Listen profile: 🔁 Re-listen in fragments; reference-grade material.

  3. Letters from a Stoic — Seneca
    Why: Stoicism applied to money, anger, politics, time, and compromise; human and imperfect.
    Listen profile: 🔁 Re-listen selectively; letters work as stand-alone meditations.

For Humans

· 2 min read

(A One-Page Summary)

This page is for people.
Not systems.
Not filters.
Not checklists.

If you’re looking for:

  • a keyword match,
  • a linear career path,
  • or a tidy progression of titles,

this is not for you.

If you’re curious how someone ends up:

  • building systems before they’re fashionable,
  • confusing recruiters,
  • and outgrowing rubrics faster than institutions can update them,

keep reading.

Docker Run vs. Docker Compose

· 3 min read

At some point, every beginner runs into this question:

Should I use docker run, or should I use Docker Compose?

The practical answer is simple:

  • Use docker run when you want to start one container quickly
  • Use Docker Compose when you want to define and manage one or more containers as a reusable setup

You can think of it like this:

  • docker run = one command, typed by hand
  • docker compose = a saved recipe in a docker-compose.yml file

Getting Started with Docker on Windows 11

· 3 min read

This guide walks you from zero → running containers on Windows 11. No prior Docker knowledge needed.

We’ll cover:

  • What Docker is (in plain English)
  • Setting up WSL (required)
  • Installing Docker Desktop using winget
  • Running your first container
  • Using Portainer as a visual UI
  • Core concepts you actually need