Skip to content

Instantly share code, notes, and snippets.

View MadeMyDay's full-sized avatar

Marc Hinse MadeMyDay

View GitHub Profile
@MadeMyDay
MadeMyDay / dabblet.css
Created January 29, 2013 15:57 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
*
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
@MadeMyDay
MadeMyDay / gulpfile.js
Created November 22, 2017 10:41 — forked from chodorowicz/gulpfile.js
simple gulpfile with stylus, browser sync,
// this method is currently broken
// better use vinyl-source-stream method
// http://fettblog.eu/gulp-browserify-multiple-bundles/
const gulp = require('gulp');
const browserify = require('browserify');
const transform = require('vinyl-transform');
const browserSync = require('browser-sync');
const reload = browserSync.reload;
const gutil = require('gulp-util');