Skip to content

Instantly share code, notes, and snippets.

View jeremybwilson's full-sized avatar

Jeremy Wilson jeremybwilson

View GitHub Profile
@jeremybwilson
jeremybwilson / github.css
Created March 21, 2019 18:01 — forked from theconektd/github.css
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {

Dev Setup for Mac (from fresh install)

Setting up a Mac for web development (from scratch)

  1. Homebrew/terminal/bash
    • xcode-select --install
    • Install Homebrew:
      • /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
      • which brew , brew update
      • Similar package management tool on Windows -> Chocolatey
  • brew is the install command, cask are the individual packages themselves, eg. iterm2, bash, git
@jeremybwilson
jeremybwilson / restful_routes.md
Created August 24, 2018 21:01 — forked from alexpchin/restful_routes.md
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
@jeremybwilson
jeremybwilson / README.md
Created August 13, 2018 23:58 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet