Skip to content

Instantly share code, notes, and snippets.

@amortka
amortka / .treehouse
Last active January 16, 2020 14:35 — forked from ErikGartner/.treehouse
dTree Demo
1.3.1
@amortka
amortka / app.js
Created November 19, 2015 14:23 — forked from sogko/app.js
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');
@amortka
amortka / 0_reuse_code.js
Last active September 18, 2015 09:33
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console