start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| #Path to key | |
| KEYPATH=home/prasanthv/.ssh/work | |
| ssh-add $KEYPATH | |
| /home/prasanthv/Repo/higgins-mole/mole |
| /* Set up Git Configuration */ | |
| git config --global user.email "you@yourdomain.com" | |
| git config --global user.name "Your Name" | |
| git config --global core.editor "vi" | |
| git config --global color.ui true |
| ## Directory-based project format (IntelliJ i.e. WebStorm) : | |
| .idea/ | |
| # Dependency directory | |
| # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | |
| # http://addyosmani.com/blog/checking-in-front-end-dependencies/ | |
| node_modules/ | |
| bower_components/ | |
| # Coverage directory used by tools like gulp/grunt |
| #!/bin/bash | |
| if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
| appify v3.0.1 for Mac OS X - http://mths.be/appify | |
| Creates the simplest possible Mac app from a shell script. | |
| Appify takes a shell script as its first argument: | |
| `basename "$0"` my-script.sh |
| # First: | |
| lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done | |
| sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* | |
| # To recap, the best way (I've found) to completely uninstall node + npm is to do the following: | |
| #go to /usr/local/lib and delete any node and node_modules | |
| cd /usr/local/lib | |
| sudo rm -rf node* |
| # .bash_profile | |
| export CLICOLOR=1 | |
| # Source global definitions | |
| #if [ -f /etc/bashrc ]; then | |
| # . /etc/bashrc | |
| #fi | |
| if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
| . $(brew --prefix)/etc/bash_completion | |
| fi |
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var uglify = require('gulp-uglify'); | |
| var concat = require('gulp-concat'); | |
| var es = require('event-stream'); | |
| var del = require('del'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var browserSync = require('browser-sync'); | |
| var minifyHTML = require('gulp-minify-html'); |
| { | |
| "requireCamelCaseOrUpperCaseIdentifiers": true, | |
| "requireParenthesesAroundIIFE": true, | |
| "disallowMultipleSpaces": true, | |
| "validateIndentation": 4, | |
| "maximumLineLength": 120, | |
| "requireCapitalizedConstructors": true, | |
| "disallowEmptyBlocks": true, | |
| "validateQuoteMarks": "'", | |
| "validateLineBreaks": "LF", |