brew install ffmpeg
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
{ | |
"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" | |
}, |
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
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 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 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 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 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 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
link rel="apple-touch-icon" href="/touch-icon-iphone.png" | |
link rel="apple-touch-icon" sizes="76x76" href="/touch-icon-ipad.png" | |
link rel="apple-touch-icon" sizes="120x120" href="/touch-icon-iphone-retina.png" | |
link rel="apple-touch-icon" sizes="152x152" href="/touch-icon-ipad-retina.png" | |
link rel="apple-touch-startup-image" href="/startup-640x1096.png" media="(max-device-width : 548px) and (-webkit-min-device-pixel-ratio : 2)" | |
link rel="apple-touch-startup-image" sizes="768x1004" href="/startup-768x1004.png" media="screen and (min-device-width : 481px) and (max-device-width : 1024px) and (orientation : portrait)" |
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
git_types () { | |
echo $(tput setaf 0)$(tput setab 6) | |
echo '<type>(<scope>): <subject>' | |
echo "$(tput sgr 0)" | |
echo "$(tput sgr 3)feat$(tput sgr 0) (feature)" | |
echo "$(tput sgr 3)fix$(tput sgr 0) (bug fix)" | |
echo "$(tput sgr 3)docs$(tput sgr 0) (documentation)" | |
echo "$(tput sgr 3)style$(tput sgr 0) (formatting, missing semi colons, ...)" | |
echo "$(tput sgr 3)refactor" |
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
{ | |
"bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.). | |
"curly" : true, // Require {} for every new block or scope. | |
"eqeqeq" : false, // Require triple equals i.e. `===`. | |
"forin" : true, // Tolerate `for in` loops without `hasOwnPrototype`. | |
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );` | |
"latedef" : true, // Prohibit variable use before definition. | |
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`. | |
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`. |
NewerOlder