.tmux.config
# Mouse support - set to on if you want to use the mouse
set-option -g mouse-select-pane on
set-option -g mouse-resize-pane on
set-option -g mouse-select-window on
set -g default-terminal "xterm-256color"
# ----------------------
do -> | |
'use strict' | |
### globals describe,it,browser,expect ### | |
describe 'On arriving to a conflicted snap that was previously assessed', -> | |
describe 'should have correct elements, title, and URL', -> | |
unassessedSnapPage = null | |
assessedSnapPage = null |
var firstOldLink = 'http://www.frontlinesol.com/ideas/childrens-defense-fund-new-york'; | |
var firstNewLink = 'http://www.frontlinesol.com/portfolio-item/strategy-and-planning-process'; | |
var secondOldLink = 'http://www.frontlinesol.com/ideas/under-construction'; | |
var secondNewLink = 'http://www.frontlinesol.com/portfolio-item/under-construction'; | |
var thirdOldLink = 'http://www.frontlinesol.com/ideas/school-discipline-reform'; | |
var thirdNewLink = 'http://www.frontlinesol.com/portfolio-item/michigan-racial-equity'; | |
[ | |
{ | |
"name": "backlog", | |
"color": "235380" | |
}, | |
{ | |
"name": "bug", | |
"color": "fc2929" | |
}, | |
{ |
var gulp = require('gulp'); | |
var mocha = require('gulp-mocha'); | |
var shell = require('gulp-shell'); | |
var coffee = require('gulp-coffee'); | |
var runSequence = require('run-sequence'); | |
gulp.task('monitor-coffee-files', function() { | |
return gulp.watch(['lib/api/**/*.coffee'], ['clear-terminal', 'run-tests']); | |
}); |
.modal { | |
width: 800px; | |
left: 40%; | |
} | |
.lightbox-content { | |
width: 100%; | |
} | |
.lightbox-image { |
[core] | |
excludesfile = /Users/edwin/.gitignore_global | |
editor = vim | |
[alias] | |
d = diff | |
ha = log --all --format='%Cgreen%h%Creset %ad %C(cyan)%an%Creset - %s%C(red)%d%Creset' --graph --date=short | |
hs = log --all --format='%s%C(red)%d%Creset' --graph --date=short | |
rmrepair = status --porcelain | awk '/^.D .*$/ {print $2}' | xargs git rm | |
last = log --name-status HEAD^..HEAD | |
a = add . |
var express = require('express'), | |
app = express(); | |
app.use(express.static('./')); | |
app.listen(1337); | |
console.log('Listening on port ' + 1337 + '...'); |
.tmux.config
# Mouse support - set to on if you want to use the mouse
set-option -g mouse-select-pane on
set-option -g mouse-resize-pane on
set-option -g mouse-select-window on
set -g default-terminal "xterm-256color"
# ----------------------
<!doctype html> | |
<html ng-app="Demo"> | |
<head> | |
<meta charset="utf-8" /> | |
<title> | |
Preloading Images In AngularJS With Promises | |
</title> | |
</head> | |
<body ng-controller="AppController"> |