Skip to content

Instantly share code, notes, and snippets.

View gaohongsong's full-sized avatar

hs gaohongsong

  • qq
  • china
View GitHub Profile
@gaohongsong
gaohongsong / Makefile
Created May 26, 2018 10:19 — forked from turtlemonvh/Makefile
Golang Project Makefile Template
# Borrowed from:
# https://github.com/silven/go-example/blob/master/Makefile
# https://vic.demuzere.be/articles/golang-makefile-crosscompile/
BINARY = superdo
VET_REPORT = vet.report
TEST_REPORT = tests.xml
GOARCH = amd64
VERSION?=?
@gaohongsong
gaohongsong / gulpfile.js
Created November 23, 2016 02:09 — forked from mlouro/gulpfile.js
gulpfile.js with browserify, jshint, libsass, browserSync for livereload, image optimization and system notifications on errors
'use strict';
var gulp = require('gulp');
var gutil = require('gulp-util');
var del = require('del');
var uglify = require('gulp-uglify');
var gulpif = require('gulp-if');
var exec = require('child_process').exec;
var notify = require('gulp-notify');