Skip to content

Instantly share code, notes, and snippets.

@andrew-rayco
andrew-rayco / betmakers-logo-250.svg
Last active August 24, 2020 06:08
Betmakers logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@andrew-rayco
andrew-rayco / flightplan-deploy.md
Created February 25, 2018 21:22 — forked from learncodeacademy/flightplan-deploy.md
Deploy Node.js Apps with Flightplan

##Setup your server (this would ideally be done with automated provisioning)

  • add a deploy user with password-less ssh see this gist
  • install forever npm install -g forever

##Install flightplan

  • npm install -g flightplan
  • in your project folder npm install flightplan --save-dev
  • create a flightplan.js file
@andrew-rayco
andrew-rayco / add-remote-repo.md
Last active December 1, 2017 00:07
If you have a new git project with no existing remotes, create the remote at github.com and link it with the following:
  1. git remote add origin [new repo URL] to link this project with the new remote repo
  2. git remote -v to verify new remote url has been added
@andrew-rayco
andrew-rayco / digital-ocean.md
Last active October 12, 2017 23:38
Digital Ocean access and operation
@andrew-rayco
andrew-rayco / watch-sass.md
Last active March 8, 2023 12:53
Watch CSS setup with node-sass and nodemon

Watch CSS setup with node-sass and nodemon

npm install --save-dev node-sass nodemon

Add the following scripts to package.json

Build CSS

"build-css": "node-sass -o css css" 
@andrew-rayco
andrew-rayco / interviewing.md
Created August 4, 2017 03:39 — forked from don-smith/interviewing.md
Considerations for EDA grads

Technical interviews

Perspectives

  • Passion speaks volumes!
  • Tell me about your current side-project.
  • Skill of the interviewer - have empathy - this is a partnership
  • Whiteboarding. Try to use your PC.
    • Use Yeoman generators for quickly creating a test harness.
  • Scope the problem!!!!! (by asking questions)