lol. This is over the top. :)
Category Archives: Software
Git Commands to Run Before Reading Any Code
Via Hacker News today was The Git Commands I Run Before Reading Any Code. I made a git-rep.sh script based on these:
#!/bin/bash
# 2026-04-09 jj5 - SEE: https://piechowski.io/post/git-commands-before-reading-code/
main() {
set -euo pipefail;
report 'What Changes the Most';
git log --format=format: --name-only --since="1 year ago" | sort | uniq -c | sort -nr | head -20;
report 'Who Built This';
git shortlog -sn --no-merges;
report 'Where Do Bugs Cluster';
git log -i -E --grep="fix|bug|broken" --name-only --format='' | sort | uniq -c | sort -nr | head -20;
report 'Is This Project Accelerating or Dying';
git log --format='%ad' --date=format:'%Y-%m' | sort | uniq -c;
report 'How Often Is the Team Firefighting';
git log --oneline --since="1 year ago" | grep -iE 'revert|hotfix|emergency|rollback';
}
report() {
echo;
echo "$1":
echo;
}
main "$@";
Space Drop – Solder Project
You can buy the kit here: Space Drop Solder Kit and the build guide is here: Space Drop Handheld Game.
Falsehoods programmers believe about time
In my feed today: Falsehoods programmers believe about time.
How Boris Tane Uses Claude Code (hint: it’s Waterfall!)
In my feed today: How Boris Tane Uses Claude Code. He separates research, planning, and implementation phases, as he says: “Read deeply, write a plan, annotate the plan until it’s right, then let Claude execute the whole thing without stopping, checking types along the way.”
I might be the first to point out: this is Waterfall! Micro-waterfall?
Hackable Desk Robot
Here’s something fun: Your Next Desk Toy Should Be a Hackable Robot. This “DeskBuddy” is basically a ESP32-C3 Super Mini microcontroller with a 1.3-inch OLED display. I tried to order one, just for fun, but it seems they only ship to India.
KDE Plasma 6.6 is here
Here is a visual guide to the best desktop in the known universe. I am still back on KDE Plasma 5.27.5 on Debian 12, but look forward to upgrading some time soon…
CSS Clicker
Here’s something fun. It’s a computer game based around building a web site and making it popular. It’s built entirely from CSS and HTML, no JavaScript needed! See: CSS Clicker.
Semantic Compression
Casey Muratori explains his approach to not-so-object-oriented design (he calls it procedurally-oriented) and refactoring (he calls it compression): Semantic Compression.
Today I added procedurally-oriented to my spell check.
Software Estimation
In my feed today: How I estimate work as a staff software engineer.