ngfizzy.hashnode.devPostgresql Pseudo-columns; CTIDPostgres CTID is an internal table column identifying how Postgres stores table data physically on the disc. It comes as two comma-separated numbers, e.g. (0, 1), 0 here serving as the page number, and 1 is the row's location on the page. Let's estab...Oct 22, 2023·7 min read
ngfizzy.hashnode.devTip: Never Forget a console.log In Your Patch AgainTLDR; stage your changes git add . -p to slow down your personal code review process. Yes, we've all been there. You've spent the last 5 hours looking for a bug in your codebase and finally came up with a fix. You implemented the patch and removed al...Oct 21, 2023·3 min read