Skip to content

Instantly share code, notes, and snippets.

View hank-jk's full-sized avatar

Hank Radstar hank-jk

  • Portland, Oregon, USA
  • 01:35 (UTC -12:00)
View GitHub Profile
@evertrol
evertrol / Makefiles.md
Last active November 12, 2025 08:09
Makefile cheat sheet

Makefile cheat sheet

Mostly geared towards GNU make

I've used ->| to indicate a tab character, as it's clearer to read than

  • Set a target, its dependencies and the commands to execute in order
target: [dependencies]
->| 
@Kartones
Kartones / postgres-cheatsheet.md
Last active January 12, 2026 08:14
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)