Skip to content

Instantly share code, notes, and snippets.

View UpperLEFTY's full-sized avatar
:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock

Essence Alexander UpperLEFTY

:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock
View GitHub Profile
@chantastic
chantastic / gulpfile.js
Last active October 13, 2023 03:20
This a script for a Full Stack Talk, given 3/13/14. Feel free to follow along at your own pace.
var gulp = require('gulp');
var coffee = require('gulp-coffee');
gulp.task('scripts', function () {
gulp.src('src/*.coffee')
.pipe(coffee())
.pipe(gulp.dest('./'));
});
gulp.task('watch', function () {