https://github.com/rShetty/awesome-podcasts
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
{ | |
"commands": { | |
"!zupmeistars": "https://i.imgur.com/luF2G6F.jpg", | |
"!snowball": "https://a2-images.myspacecdn.com/images03/29/1c22a365f9b54e4792ea9259674f1f2a/full.jpg", | |
"!commands": "http://vd.jurg.is/", | |
"!daGrevis": "http://i.imgur.com/DApeSdj.jpg", | |
"!scandiweb": "http://i.imgur.com/lVQGLVu.jpg", | |
"!rvs": "http://i.imgur.com/6lwWPiV.jpg", | |
"!hello": "Čav, {nick}", | |
"!find": "https://www.google.lv/#q={param}", |
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
code --install-extension 2gua.rainbow-brackets | |
code --install-extension HvyIndustries.crane | |
code --install-extension Poorchop.theme-darktooth | |
code --install-extension davidbabel.Theme-Monokai-Easylight | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension donjayamanne.githistory | |
code --install-extension eamodio.gitlens | |
code --install-extension EQuimper.react-native-react-redux | |
code --install-extension Equinusocio.vsc-material-theme | |
code --install-extension esbenp.prettier-vscode |
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
{ | |
"editor.fontSize": 12, | |
"workbench.colorTheme": "Material Theme Darker", | |
"workbench.iconTheme": "eq-material-theme-icons-darker", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": 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
var myApp = angular.module('myApp', []) | |
myApp.directive('phoneValidation', function(){ | |
return { | |
restrict: 'A', | |
require: 'ngModel', | |
link: function(scope, element, attrs, ngmodel) { | |
var newValue; |