Skip to content

Instantly share code, notes, and snippets.

View firhatsungkar's full-sized avatar

Muhamad Firhat firhatsungkar

View GitHub Profile
@firhatsungkar
firhatsungkar / gulpfile.js
Last active May 17, 2016 04:53
My Gulpfile
'use strict';
// Gulp Plugins
var gulp = require('gulp'),
sass = require('gulp-sass'),
livereload = require('gulp-livereload'),
autoprefixer = require('gulp-autoprefixer');
// Gulp Config
var input = 'scss/**/*.scss',
output = 'css',
sassConfig = {
@firhatsungkar
firhatsungkar / Ubuntu Nodejs
Created May 17, 2016 04:26
Install Nodejs on Ubuntu
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm cache clean -f
sudo npm install -g n
sudo n stable