Skip to content

Instantly share code, notes, and snippets.

Install Minikube with virtual-box VM driver

$ brew update && brew install kubectl && brew cask install docker minikube virtualbox
$ brew cask reinstall minikube
$ minikube delete
$ rm -fr ~/.minikube/
@kkasaei
kkasaei / README.md
Created January 3, 2018 23:33
Sequelize + Express + Migrations + Seed Starter
@kkasaei
kkasaei / postgres-cheatsheet.md
Created December 16, 2017 12:10 — forked from Kartones/postgres-cheatsheet.md
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h):

  • -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)
@kkasaei
kkasaei / sqlite3-cheat-sheet.md
Created February 16, 2016 08:01 — forked from vincent178/sqlite3-cheat-sheet.md
sqlite3 cheat sheet
@kkasaei
kkasaei / meta-tags.md
Created January 28, 2016 23:20 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>