Skip to content

Instantly share code, notes, and snippets.

View Rfirsov's full-sized avatar

Roman Firsov Rfirsov

  • Ukraine
View GitHub Profile
@Rfirsov
Rfirsov / postgres-cheatsheet.md
Created January 9, 2020 12:22 — 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)
/*
Cross-browser (including IE8-10)
Más info: http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/
*/
.absolute-center {
/* height: must be declared */
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
@Rfirsov
Rfirsov / js-task-1.md
Created April 28, 2016 14:09 — forked from codedokode/js-task-1.md
Задания на яваскрипт (простые)