This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular | |
.module('appName') | |
.filter('titlecase', titlecase); | |
function titlecase() { | |
return function (input) { | |
var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular | |
.module('appName') | |
.filter('splitCamelCase', splitCamelCase); | |
function splitCamelCase() { | |
return splitCamelCaseFilter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use zsh as default shell | |
set-option -g default-shell /usr/local/bin/zsh | |
# Use vim keybindings in copy mode | |
set-window-option -g mode-keys vi | |
# Vim like pane switching | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes height-expand { | |
0% { | |
opacity: 0; | |
transform: translateY(-4px); | |
} | |
100% { | |
opacity: 1; | |
} | |
} |