Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
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
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" | |
} |
{ | |
"name": "project", | |
"version": "0.0.0", | |
"authors": [ | |
"Eric Barnes <[email protected]>" | |
], | |
"license": "MIT", | |
"private": true, | |
"ignore": [ | |
"**/.*", |
// 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' })) |
{ | |
"auto_complete_commit_on_tab": true, | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"draw_shadows": false, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", |