Today I Learned

Bite-sized things I pick up day to day — tools, tricks, and tidbits worth remembering.

Hello World my first TIL!

Mar 18, 2026

testing
other
test test...

Git stash can have a message

Mar 17, 2026

git
You can add a descriptive message when stashing changes with git stash push -m "your message". This makes it much easier to find the right stash later when you have multiple stashes, instead of trying to decipher the auto-generated messages.
git stash push -m "WIP: refactoring auth middleware"
git stash list
# stash@{0}: On main: WIP: refactoring auth middleware