Skip to content

Instantly share code, notes, and snippets.

@kimschles
kimschles / installing-node-with-nvm.md
Created June 4, 2018 19:32 — forked from d2s/installing-node-with-nvm.md
Installing Node.js for Linux & macOS with nvm

What do we do?

  • Outcomes and standards-based education
  • Not a curriculum company

Who is this for?

  • Turning juniors/mids into mids/seniors
  • Turning seniors into leads, principles, VPs
  • Not necessarily with career alignment- they don't have to go all-in
@kimschles
kimschles / node-multiple-calls-render.js
Created March 27, 2018 02:31 — forked from magalhini/node-multiple-calls-render.js
Example on how to render multiple responses into a route in node.js
const express = require('express')
const app = express()
const path = require('path')
const fetch = require('node-fetch')
const PORT = process.env.PORT || 3000
app.get('/api/user', (req, res) => {
res.json({ name: 'Richard' });
});
@kimschles
kimschles / README-Template.md
Created March 17, 2017 15:58 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites