Skip to content

Instantly share code, notes, and snippets.

View charneykaye's full-sized avatar
🔬
in the lab

Charney Kaye charneykaye

🔬
in the lab
View GitHub Profile
@selahattinunlu
selahattinunlu / gulpfile.js
Created February 12, 2016 16:10
Basic Gulpfile - Sass
var gulp = require('gulp'),
sass = require('gulp-sass');
var sassConfig = {
inputDirectory: 'resources/sass/**/*.scss',
outputDirectory: 'assets/css',
options: {
outputStyle: 'expanded'
}
}
@XueshiQiao
XueshiQiao / gource.sh
Last active November 10, 2019 15:56 — forked from cgoldberg/gource.sh
Generate a MP4 Video for your Git project commits using Gource!
# 1.install gource using HomeBrew
$ brew install gource
# 2.install avconv
git clone git://git.libav.org/libav.git
cd libav
# it will take 3-5 minutes to complie, be patient.
./configure --disable-yasm
make && make install