Skip to content

Instantly share code, notes, and snippets.

View scarnago's full-sized avatar

Santiago Carnago scarnago

View GitHub Profile
@scarnago
scarnago / frontendDevlopmentBookmarks.md
Created September 24, 2015 17:13 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@scarnago
scarnago / gitignore-global.md
Last active September 23, 2015 04:13
How to create a file .gitignore global

Configure Git with a global gitignore file

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"

ssh-keygen -t rsa -C "Your Email"
cat ~/.ssh/id_rsa.pub
@scarnago
scarnago / sublime-text-3-user.json
Last active September 23, 2015 01:55
My User Settings for Sublime Text 3
{
"auto_complete_commit_on_tab": true,
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
"draw_shadows": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
@scarnago
scarnago / install-lamp-ubuntu.md
Last active September 23, 2015 01:49 — forked from kbond/post.md
Ubuntu LAMP Development Environment Setup

Install git:

sudo apt-get install git

Configure Git:

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"

git config --global user.email "Your Email"

{
"directory": "dist/components"
}
@scarnago
scarnago / gulpfile.js
Last active August 29, 2015 14:14 — forked from gaspanik/gulpfile.js
// npm install gulp gulp-ruby-sass gulp-minify-css gulp-rename --save-dev
var gulp = require('gulp')
, sass = require('gulp-ruby-sass')
, minifycss = require('gulp-minify-css')
, rename = require('gulp-rename');
gulp.task('styles', function() {
return gulp.src('stylesheets/*.scss')
.pipe(sass({ style: 'expanded' }))
{
"name": "project",
"version": "0.0.0",
"authors": [
"Eric Barnes <me@example.org>"
],
"license": "MIT",
"private": true,
"ignore": [
"**/.*",