Skip to content

Instantly share code, notes, and snippets.

View itsmhuang's full-sized avatar

Michelle Huang itsmhuang

View GitHub Profile
@sojeri
sojeri / on-getting-into-ada.md
Last active April 9, 2018 05:50
On Applying & Getting Into Ada Developers Academy

On Applying & Getting Into Ada Developers Academy

Updated Oct 5th 2015 to add fifth cohort / cohort[4] application window details:

Quick facts:

  • The [application][adaapp] window will be open
    from Wednesday, October 7
    until Monday, October 26 at 5pm PST.
  • The fifth cohort will start Monday, January 25, 2016.
@sogko
sogko / app.js
Last active November 8, 2022 12:31
gulp + expressjs + nodemon + browser-sync
'use strict';
// simple express server
var express = require('express');
var app = express();
var router = express.Router();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendfile('./public/index.html');