- fabiospampinato.vscode-projects-plus
- alefragnani.Bookmarks
- xyz.local-history
- eamodio.gitlens
- RoscoP.ActiveFileInStatusBar
- formulahendry.code-runner
- jasonnutter.search-node-modules
- wix.vscode-import-cost
- ritwickdey.LiveServer
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
| var foo = “bar”; |
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
| var sFoo = “bar”; |
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
| var Animal = function() { | |
| var _name; | |
| this.animalType; | |
| this.setName = function(name) { | |
| _name = name; | |
| }; | |
| this.getName = function() { | |
| return _name; | |
| }; | |
| }; |
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
| var animal = { | |
| animalType: 'animal' | |
| }; | |
| function catFactory(name) { | |
| var _name = name; | |
| newCat = Object.create(animal); | |
| newCat.animalType = 'cat'; | |
| newCat.setName = function(name) { |
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
| { | |
| "bookmarks.saveBookmarksInProject": true, | |
| "bookmarks.treeview.visible": true, | |
| "workbench.colorTheme": "Material Theme", | |
| "workbench.iconTheme": "vscode-icons", | |
| "workbench.editor.labelFormat": "default", | |
| "debug.toolBarLocation": "docked", | |
| "css_peek.activeLanguages": ["html", "ejs", "erb", "php", "jinja", "js"], | |
| "code-runner.executorMap": { | |
| "javascript": "/usr/local/bin/node" |
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
| # Make PATH easier to read by printing each directory on a new line | |
| easypath() { | |
| echo '\n'; echo $PATH | tr ':' '\0' | xargs -I _ -0 echo _ | ccat | |
| } | |
| help-tools-cli-mgmt() { | |
| echo " | |
| # 'tldr' | |
| # Abbreviated man pages. |
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
| help-tools-cli-mgmt() { | |
| echo " | |
| # 'tldr' | |
| # Abbreviated man pages. | |
| # 'cheat' | |
| # Alternative to 'tldr'. | |
| # 'howdoi' | |
| # Instant coding answers. |
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
| |