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
| hotkeys: | |
| shell: {} | |
| profile: {} | |
| toggle-window: [] | |
| new-tab: | |
| - - Ctrl-Shift-T | |
| - - Ctrl-T | |
| next-tab: | |
| - - Ctrl-Shift-Right | |
| - - Ctrl-Tab |
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
Show hidden characters
| // emmet snippets foo.code-snippets | |
| // src - https://github.com/emmetio/emmet/blob/master/snippets/css.json | |
| // script to create - https://gist.github.com/umeshmk/41dc6e4f153c617db821d5cff83a58bd#file-script-js | |
| // v3 - added correct colons, semicolons, spaces, ${0} | |
| // v2 - prefix is changed to body. Better intellisense. eg: "ac" --> "align-content:center" | |
| // v1 - prefix is shorter eg: "ac" for align-content | |
| { | |
| "@f": { |
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
| { | |
| "editor.fontLigatures": true, | |
| // "editor.fontFamily": "'JetBrains Mono','Source Code Pro', 'Cascadia Code', Consolas, 'Courier New', monospace", | |
| // "editor.fontFamily": "'JetBrains Mono'", | |
| "editor.fontFamily": "'Source Code Pro'", | |
| "editor.fontSize": 18, | |
| "editor.suggestSelection": "first", | |
| "editor.snippetSuggestions": "inline", | |
| // "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", |
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
| // Run on browser | |
| const c = (...arg) => { | |
| console.log(...arg); | |
| }; | |
| function hackWorkSpan(date) { | |
| const api = `https://jsonmock.hackerrank.com/api/stocks?date=${date}`; | |
| const print = (stock) => { | |
| c('Open:', stock.open); |