Skip to content

Instantly share code, notes, and snippets.

View vlntsolo's full-sized avatar
:octocat:
Full stack web developer from Ukraine

Valentyn Solonechnyi vlntsolo

:octocat:
Full stack web developer from Ukraine
View GitHub Profile
@vlntsolo
vlntsolo / svelte-summit-2020-summary.md
Created May 15, 2021 19:03 — forked from vedam/svelte-summit-2020-summary.md
links and ressources from the svelte-summit-2020 talks

You'll find the talks here


Morgan Williams @mrgnw

The Zen of Svelte

Approaching frontend as a backend developer, Svelte feels surprisingly pythonic. Let's take a quick look at what's familiar, what's foreign, and how to explore the gap.

@vlntsolo
vlntsolo / postgres-cheatsheet.md
Created September 22, 2021 13:49 — forked from Kartones/postgres-cheatsheet.md
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)