Awesome git command of the day: `git tag --list | sort --version-sort`. Sort is clever.
miniblog.
Related Posts
If you have a value that can be any type (the 'top type'), what operations should your language support on that value?
Equality is very common, but it's debatable. I increasingly feel that every value in a language should have some sort of debug print available.
Suppose you set up a repository that accepts any PR that passes CI. You forbid CI changes, but the rest of the codebase is fair game.
What sort of testing, linting etc would you configure for CI?
pdqsort ("pattern defeating quicksort") is an incredibly fast sort that even outperforms timsort and std::sort in C++!