| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
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
| const list = []; | |
| function fixStream(streams) { | |
| let count_order = 0; | |
| let total = 0; | |
| let stream_group = []; | |
| streams = [].concat(...streams); | |
| streams.forEach((item, i, stream) => { |
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
| 1. Frontend RoadMap Link --> https://roadmap.sh/frontend | |
| 2. The Odin Project --> https://www.theodinproject.com/ | |
| 3. Basic Linux Command --> https://hackr.io/blog/basic-linux-commands | |
| 4. An Intro to Git and GitHub --> https://medium.com/@abhishekj/an-intro-to-git-and-github-1a0e2c7e3a2f | |
| 5. Basic Git Command --> https://www.edureka.co/blog/git-commands-with-example/ | |
| 6. WSL(Windows Subsystem for Linux) --> https://pureinfotech.com/install-windows-subsystem-linux-2-windows-10/ | |
| 7. Windows Terminal --> https://medium.com/@hjgraca/style-your-windows-terminal-and-wsl2-like-a-pro-9a2e1ad4c9d0 | |
| 8. Awesome Repo --> https://github.com/sindresorhus/awesome | |
| 9. JavaScript Documentations --> https://developer.mozilla.org/en-US/ | |
| 10. JavaScript 30 --> https://javascript30.com/ |
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
| Backend: | |
| Servisler: | |
| API: | |
| RESTFULL: | |
| -CRUD OPERASYONLARI | |
| -Request Limiting | |
| -Header Request Validation | |
| -Authentication(JWT) | |
| -pagination | |
| -APIDOC |
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
| With React | |
| { | |
| "trailingComma": "es5", | |
| "tabWidth": 2, | |
| "semi": false, | |
| "printWidth": 80, | |
| "singleQuote": true, | |
| "useTabs": false, | |
| "quoteProps": "as-needed", | |
| "bracketSpacing": true, |
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
| Growing OO Software by Tests | |
| The Software Craftsman | |
| Refactoring (v2 released) | |
| GoF Design Patterns | |
| Working Effectively w/ Legacy Code | |
| DD by Example | |
| Accelerate | |
| Continuous Delivery | |
| Pro JS Design Patterns | |
| You don't know JS (1st Edition) |
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
| module.exports = { | |
| root: true, | |
| env: { | |
| node: true | |
| }, | |
| extends: [ | |
| // "plugin:vue/base" | |
| "plugin:vue/recommended" | |
| // "plugin:vue/essential", | |
| // "plugin:vue/strongly-recommended" |
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
| * { | |
| padding: 0; | |
| margin: 0; | |
| list-style: none; | |
| border: none; | |
| text-decoration: none; | |
| box-sizing: border-box; | |
| -webkit-overflow-scrolling: touch; | |
| } |
将设置放入此文件中以覆盖默认设置
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
| { | |
| "printWidth": 80, | |
| "tabWidth": 2, | |
| "useTabs": false, | |
| "semi": false, | |
| "singleQuote": true, | |
| "trailingComma":"none", | |
| "bracketSpacing": true, | |
| "jsxBracketSameLine": false | |
| } |