Skip to content

Instantly share code, notes, and snippets.

View MPMoughan's full-sized avatar

Matthew P MPMoughan

  • San Francisco, CA
View GitHub Profile
@MPMoughan
MPMoughan / event.js
Created January 15, 2018 19:07 — forked from wildlyinaccurate/event.js
Really simple Javascript custom event system
var Event = function() {
var self = this;
self.queue = {};
self.fired = [];
return {
fire: function(event) {

##Command Line Basics

What are the terminal commands to:

  • Create a new folder called "Blah"
mkdir Blah
  • Move into the newly created "Blah" folder