This sheet goes along with this SSH YouTube tutorial
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test
| "editor.fontFamily": "'Operator Mono SSm'", | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "emphasis", "storage", "comment", "entity.other.attribute-name", "entity.other.attribute-name.html", "entity.other.attribute-name.tag.jade", "entity.other.attribute-name.tag.pug", "markup.italic", "keyword.control", "variable.language" | |
| ], | |
| "settings": { | |
| "fontStyle": "italic" | |
| } |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true |
| /* Change Autocomplete styles in Chrome*/ | |
| input:-webkit-autofill, | |
| input:-webkit-autofill:hover, | |
| input:-webkit-autofill:focus | |
| textarea:-webkit-autofill, | |
| textarea:-webkit-autofill:hover | |
| textarea:-webkit-autofill:focus, | |
| select:-webkit-autofill, | |
| select:-webkit-autofill:hover, | |
| select:-webkit-autofill:focus { |
| let re; | |
| // Literal Characters | |
| re = /hello/; | |
| re = /hello/i; | |
| // Metacharacter Symbols | |
| re = /^h/i; // Must start with | |
| re = / world$/i; // Must ends with | |
| re = /^hello$/i; // Must begin and end with | |
| re = /h.llo/i; // Matches any ONE character |
| { | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "vscode-icons", | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "editor.formatOnSave": true, | |
| "prettier.singleQuote": true, | |
| "prettier.eslintIntegration": true, | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true |