Skip to content

Instantly share code, notes, and snippets.

@goodmattg
goodmattg / README.md
Created July 19, 2026 02:11
Vigil sample trajectory overlay PR evidence

PR-only visual evidence for the Vigil sample trajectory overlay stream.

@goodmattg
goodmattg / live-badges.svg
Created July 17, 2026 23:50
Vigil status badge PR visual evidence
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@goodmattg
goodmattg / gulpfile.js
Last active May 25, 2016 23:58
BrowserSync + Express + Browserify + Reactify = Live reloading with Browserify bundling
var gulp = require('gulp');
var source = require('vinyl-source-stream');
var sass = require('gulp-sass');
var browserify = require('browserify');
var reactify = require('reactify');
var resolutions = require('browserify-resolutions');
var eslint = require('gulp-eslint');
var path = require('path');
var browserSync = require('browser-sync').create();
var nodemon = require('gulp-nodemon');