This file contains 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
## Global Snippets | |
# Define a new Angular Controller; | |
# You can change the controller name and parameters | |
snippet ngc | |
.controller(${1:controllerName}, ['$scope', '${2:controllerDependencies}', | |
function($scope, ${4:injectables}) { | |
${5} | |
}; | |
]); | |
# angular.foreach loop |
This file contains 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
app.directive('includeReplace', function () { | |
return { | |
require: 'ngInclude', | |
restrict: 'A', /* optional */ | |
link: function (scope, el, attrs) { | |
el.replaceWith(el.children()); | |
} | |
}; | |
}); |
This file contains 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
angular.module('appointment') | |
.factory('FileNameParser', function () { | |
return { | |
parse: function (file) { | |
var extensionPattern = /\.[0-9a-z]+$/i; | |
var extension = extensionPattern.exec(file); | |
return { | |
file_name: file.replace(extension, ''), | |
file_type: extension[0].replace('.', '').toLowerCase() | |
}; |
This file contains 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 strict'; | |
angular.module('ModuleName') | |
.directive('fixParsingInconsistencies', function () { | |
return { | |
require: '?ngModel', | |
priority: (angular.version.full.indexOf('1.2.') === 0 && | |
angular.version.full !== '1.2.0rc1' && | |
angular.version.full !== '1.2.0-rc.2') ? 1 : 0, | |
restrict: 'A', |
This file contains 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
# GistID: 10715991 | |
StringLiterals: | |
EnforcedStyle: double_quotes | |
Enabled: true | |
Style/ClassLength: | |
CountComments: false # count full line comments? | |
Max: 150 | |
Documentation: | |
Enabled: false |
This file contains 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
#!/bin/sh | |
echo $* | |
vimdiff "$1" "$2" |
This file contains 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
Show hidden characters
{ | |
"node" : true, | |
"browser" : true, | |
"es5" : false, | |
"esnext" : true, | |
"bitwise" : true, | |
"camelcase": true, | |
"curly" : true, | |
"eqeqeq" : true, | |
"immed" : true, |
This file contains 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
#GistID: 9818509 | |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. |
This file contains 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
#GistID:9531777 | |
[user] | |
name = Alexander Jeurissen | |
email = [email protected] | |
[diff] | |
external = git_diff_wrapper | |
[pager] | |
diff = | |
[color] | |
ui = auto |
This file contains 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
#GistID:9526183 | |
# javascript | |
node_modules | |
coverage | |
dist | |
.tmp | |
npm-debug.log | |
app/bower_components | |
*.tern.project |