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
alias gti="git" | |
alias g='git' | |
alias gs='git status -sb' | |
alias gl='git log' | |
alias ga='git add' | |
alias gc='git commit' | |
alias gca='git commit -a' | |
alias gco='git checkout' | |
alias gm='git commit --amend' | |
alias gb='git branch' |
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
+angular.module( 'gizmos.filters' ).filter( 'indexToAlphabet', [ | |
+ function() { | |
+ return function( index, lettercase ) { | |
+ var index, alphabet, len | |
+ | |
+ alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
+ len = ( alphabet.length - 1 ) | |
+ | |
+ if ( lettercase === 'lowercase' ) { | |
+ alphabet = alphabet.toLowerCase() |
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
if ( pizza ) { | |
goToHappyPlace() | |
} |
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
if ( pizza ) { | |
goToHappyPlace() | |
} |
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 getQueryParam( param ) { | |
let loc = document.location.search | |
if ( document.location.search && param ) { | |
return document.location.search.split( param + '=' ).pop() | |
} | |
} | |
getQueryParam( 'key' ) |
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.sideBar.location": "left", | |
"workbench.editor.enablePreview": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "Snazzy Operator", | |
"workbench.colorCustomizations": { | |
"editorError.border": "#f08080" | |
}, |
OlderNewer