start new:
tmux
start new with session name:
tmux new -s myname
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| jshint: { | |
| all: 'web_static/js/development/**/*.js' | |
| }, | |
| concat: { | |
| scripts: { | |
| src: 'web_static/js/development/**/*.js', | |
| dest: 'web_static/js/production/app.js' |
| { | |
| "name": "iBenchmarks", | |
| "handle": "ibenchmarks", | |
| "version": "7.6.4", | |
| "date": "09/04/2013", | |
| "title": "iBenchmarks", | |
| "homepage": "https://ib.ivantagehealth.com/", | |
| "author": { | |
| "name": [ | |
| "iVantage Health Analytics, Inc." |
| monitor: | |
| pulse: 2000 | |
| runOnStartup: true | |
| heartbeat: | |
| show: true | |
| colors: true | |
| badStuff: | |
| errorTolerance: 3 |
| { | |
| "predef": ["..."], | |
| "browser": true, | |
| "bitwise": true, | |
| "camelcase": false, | |
| "curly": true, | |
| "eqeqeq": true, | |
| "immed": true, | |
| "latedef": true, | |
| "newcap": true, |
| /*global module:false*/ | |
| 'use strict'; | |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| jshint: { | |
| options: { | |
| jshintrc: '.jshintrc' |
| C_TEXT($1;$2;$url;$headerAndBody) | |
| $url:=$1 | |
| $headerAndBody:=$2 | |
| If ($url="/_alter_method/@") | |
| C_TEXT($methodPath) | |
| $methodPath:=Replace string($url;"/_alter_method/";"") | |
| C_TEXT($action) | |
| Case of |
| { | |
| "node": true, | |
| "bitwise": true, | |
| "camelcase": false, | |
| "curly": true, | |
| "eqeqeq": true, | |
| "immed": true, | |
| "latedef": true, | |
| "newcap": true, | |
| "noarg": true, |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Angular JS</title> | |
| </head> | |
| <body ng-app="jsbin"> | |
| <div ng-controller="DemoCtrl as demo"> | |
| <h1>Hello {{demo.name}}</h1> | |
| </div> |