Skip to content

Instantly share code, notes, and snippets.

View benwestrate's full-sized avatar

Ben Westrate benwestrate

  • 1Password
  • Chicago IL
View GitHub Profile
@benwestrate
benwestrate / install.sh
Last active April 23, 2021 18:26
Daily Status Builder
# install Pandoc https://pandoc.org/index.html
brew install pandoc
# Download status.md and place it somewhere easy to remember
# I placed mine in my dotfiles repo
var gulp = require('gulp');
var phonegapBuild = require('gulp-phonegap-build');
gulp.task( 'dist' , function(){
gulp.src('www/**/*')
.pipe(gulp.dest("./dist"));
gulp.src('config.xml')
.pipe(gulp.dest("./dist"));