- http://www.perf-tooling.today/tools (huge list of tools)
- https://www.dareboost.com/ (has compare)
// | |
// Circle.prototype = Object.create(Shape.prototype) | |
// Circle.prototype.constructor = Circle | |
// | |
// shape constructor (parent) | |
var Shape = function(x = 0, y = 0) { | |
this.x = x | |
this.y = y |
#!/usr/bin/env python | |
''' Server non-cached static contents from within current directory | |
''' | |
import sys | |
import signal | |
import BaseHTTPServer | |
import SimpleHTTPServer | |
def trap_sigint(): |
var gulp = require("gulp"), | |
browserify = require("browserify"), | |
source = require("vinyl-source-stream"), | |
buffer = require("vinyl-buffer"), | |
tslint = require("gulp-tslint"), | |
tsc = require("gulp-typescript"), | |
sourcemaps = require("gulp-sourcemaps"), | |
uglify = require("gulp-uglify"), | |
runSequence = require("run-sequence"), | |
mocha = require("gulp-mocha"), |