Skip to content

Instantly share code, notes, and snippets.

View hank-jk's full-sized avatar

Hank Radstar hank-jk

  • Portland, Oregon, USA
  • 02:57 (UTC -12:00)
View GitHub Profile
@evertrol
evertrol / Makefiles.md
Last active May 14, 2026 01:19
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 September 17, 2026 17:07
PostgreSQL command line cheatsheet

PSQL Cheatsheet

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)