Skip to content

Instantly share code, notes, and snippets.

View kirilltobola's full-sized avatar
🔺

Kirill Tobola kirilltobola

🔺
View GitHub Profile
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active May 20, 2025 11:56
Vanilla JavaScript Quick Reference / Cheatsheet
@Kartones
Kartones / postgres-cheatsheet.md
Last active May 25, 2025 07:35
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)
@oieduardorabelo
oieduardorabelo / installing-postgresql.md
Last active January 4, 2023 10:19
Installing PostgreSQL on Ubuntu with UTF-8 database template

Para instalar a versão mais atualizada do PostgreSQL, adicione o Apt Repository oficial:

echo 'deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main' | sudo tee /etc/apt/sources.list.d/pgdg.list

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

sudo apt-get update