Skip to content

Instantly share code, notes, and snippets.

View aidenZou's full-sized avatar
🤓
I may be slow to respond.

子凡 aidenZou

🤓
I may be slow to respond.
View GitHub Profile
@aidenZou
aidenZou / 0_reuse_code.js
Created May 20, 2016 15:51
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
@aidenZou
aidenZou / gulpfile.js
Last active August 29, 2015 14:19 — forked from demisx/gulpfile.js
// Gulp 4
var gulp = require('gulp');
var using = require('gulp-using');
var grep = require('gulp-grep');
var changed = require('gulp-changed');
var del = require('del');
var coffee = require('gulp-coffee');
var less = require('gulp-less');
var coffeelint = require('gulp-coffeelint');
var sourcemaps = require('gulp-sourcemaps');