Here is a simple footnote1.
A footnote can also have multiple lines2.
When you merge branches, you can be confused by the output git log gives you sometimes.
The main issue is that by default git log use chronological order and not topological order --topo-order, which is
the order of the commits when they appeared on their respective branch. This is disturbing to me.
Look at it by youself:
The idea is to replace your daily use of git log with git l that use the --topo-order option.
As D1, a sqlite-compatible DB from Cloudflare, is limited to a maximum of 10GB, I needed to migrate my database to one that is famously capable of handling a numerous number of rows.
To export it I used the wrangler CLI:
npx wrangler d1 export my-db --remote --output="db.sql"