Skip to content

Instantly share code, notes, and snippets.

View fuzzylimes's full-sized avatar

Zach Cochran fuzzylimes

View GitHub Profile
@fuzzylimes
fuzzylimes / notes.md
Last active May 9, 2018 21:19
Javascript Notes

Javascript Notes

Basics

Notes

  • No issue using either single ' or double " quotes, it's all preference/styling

Loging to console

console.log('hello world!');
@fuzzylimes
fuzzylimes / notes.md
Last active May 3, 2018 10:40
postgresql notes

Basic (baisc) postgres items

  • psql - start postgres terminal (logs into default database)
  • psql <dbname> - start postgres terminal in specific database
  • \l - list all databases
  • \q - exit the terminal
  • \d - list all tables in selected database
  • Make sure to end all commands with a ; character
  • You don't have to type commands in CAPSLOCK, lower case is fine
  • You cannot delete a database that you are currently viewing (\c out of it first)
  • Can use -- for comments
@fuzzylimes
fuzzylimes / notes.md
Last active April 15, 2018 19:10
Docker Notes
<div class="pulse red live"></div>
<h3 class="live">LIVE!</h3>