Database
- How I format SQL before reviewing a query
SQL is easier to review when clauses and joins are on separate lines instead of one long string. The SQL Prettify tool helps me inspect the input and output without writing a one-off script first.
- How I use ULIDs when sortable IDs help
A ULID is an identifier that includes a timestamp part, so generated IDs sort roughly by creation time. The ULID Generator tool helps with the mechanical part, but I still check the result before using it somewhere real.