Skip to content

Instantly share code, notes, and snippets.

View kimf's full-sized avatar
🏌️
Fore!

Kim Fransman kimf

🏌️
Fore!
View GitHub Profile
@kimf
kimf / psql-with-gzip-cheatsheet.sh
Created January 12, 2018 20:04 — forked from brock/psql-with-gzip-cheatsheet.sh
Exporting and Importing Postgres Databases using gzip
# This is just a cheat sheet:
# On production
sudo -u postgres pg_dump database | gzip -9 > database.sql.gz
# On local
scp -C production:~/database.sql.gz
dropdb database && createdb database
gunzip < database.sql.gz | psql database

Keybase proof

I hereby claim:

  • I am kimf on github.
  • I am kimfransman (https://keybase.io/kimfransman) on keybase.
  • I have a public key whose fingerprint is 1724 1DB8 B2D5 3F52 FB68 B5CC 9CCB 029C 4062 8DAD

To claim this, I am signing this object:

@kimf
kimf / aspect-ratio.html
Created February 10, 2021 07:21
Progressive Aspect Ratio (Found on CodyHouse)
<ul class="wrapper">
<li class="aspect-ratio-1:1"></li>
<li class="aspect-ratio-16:9"></li>
<li class="aspect-ratio-4:3"></li>
</ul>