Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| function wait(ms = 0) { | |
| return new Promise(resolve => setTimeout(resolve, ms)); | |
| } | |
| wait(200) | |
| .then(() => { | |
| console.log('Appeared after 200ms'); | |
| return wait(500); | |
| }) | |
| .then(() => { |
| func fibonachi (n: Int) -> Int { | |
| if n == 1 || n == 0 { | |
| return n | |
| } | |
| var result = fibonachi(n: n-1) + fibonachi(n: n-2) | |
| return result | |
| } | |
| print(fibonachi(n: 13)) |
| const settings = { | |
| 'editor.detectIndentation': false, | |
| 'editor.smoothScrolling': true, | |
| 'window.menuBarVisibility': 'toggle', | |
| 'workbench.statusBar.feedback.visible': false, | |
| 'workbench.editor.tabSizing': 'shrink', | |
| 'editor.tabSize': 2, | |
| 'sync.autoDownload': false, | |
| 'window.titleBarStyle': 'custom', | |
| 'search.location': 'panel', |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.