because adulthood is lonely

WallAboutListLeave

#96 — Sun 23 November 2025 by Evan Chen

Somethings comes over me when I'm coding. It's like I can't stop until everything is written and polished and perfect. Or it'll just bug me to the point I can't work on anything else.


#95 — Sat 22 November 2025 by Evan Chen

I think my mom is finally starting to remember that the puzzle hunt I go to every January is called "mystery hunt", not "treasure hunt".


#94 — Fri 21 November 2025 by Evan Chen

Now that I have 3 Django projects instead of 1, I feel like I'm trying my hardest to make sure the infrastructure is as similar as possible between them. The ideal case is .pre-commit-config.yaml and Makefile can just be copy-pasted between projects while ci.yml is project-agnostic:

name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  ci:
    name: ✨ Full CI Audit Workflow
    runs-on: ubuntu-latest

    steps:
      - name: 🧾 Checkout code
        uses: actions/checkout@v6

      - name: 🐍 Set up Python
        uses: actions/setup-python@v6
        with:
          python-version: "3.13"

      - name: 📦 Install uv
        uses: astral-sh/setup-uv@v7
        with:
          enable-cache: true

      - name: 📥 Install dependencies
        run: uv sync

      - name: 🧼 Check formatting
        run: make fmt

      - name: 🔍 Run checks
        run: make check

      - name: 🧪 Run tests
        run: make test

#93 — Fri 21 November 2025 by Evan Chen

Still amazed by uv.

I'm completely unqualified to take about programming, but something about uv just "feels right". I don't what I'm referring to, but it's a feeling I've had ever since I started using it.


#92 — Wed 19 November 2025 by Evan Chen

Turns out that it's not actually that useful to memorize your friend's birthdays if you don't know what the current date is.


(prev) Page 21 / 40 (next)