Skip to content

Instantly share code, notes, and snippets.

@stettix
stettix / things-i-believe.md
Last active May 28, 2026 06:06
Things I believe

Things I believe

This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.

Agree? Disagree? Feel free to let me know at @JanStette.

Fundamentals

Keep it simple, stupid. You ain't gonna need it.

@christophermark
christophermark / rebase-onto
Last active February 10, 2026 20:48
Git Rebase --onto
https://stackoverflow.com/questions/29914052/how-to-git-rebase-a-branch-with-the-onto-command/29916361#29916361
git rebase --onto <newparent> <oldparent>
// Most frequent usage, after base branch is squashed and merged into main
git rebase --onto main [SHA before first commit on your branch]
@christophermark
christophermark / set_mac_screeenshot_location.md
Last active February 20, 2026 01:13
Set Mac Screenshot Folder

Change the directory where screenshots are saved on Mac

mkdir ~/Screenshots
defaults write com.apple.screencapture location ~/Screenshots