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
| version: '3.9' | |
| services: | |
| db: | |
| image: mysql:latest | |
| container_name: mysql | |
| ports: | |
| - 3306:3306 | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=123456 | |
| restart: 'always' |
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
| [user] | |
| name = Michael Caxias | |
| email = michaelcaxias.dev@gmail.com | |
| [core] | |
| editor = code --wait | |
| [alias] | |
| c = !git add --all && git commit -m | |
| s = !git status -s | |
| l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr' |
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
| *, | |
| :before, | |
| :after { | |
| box-sizing: border-box; | |
| } | |
| :before, | |
| :after { | |
| display: none; | |
| content: ''; |
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.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "git.enableSmartCommit": true, | |
| "editor.tabSize": 2, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.inlineSuggest.enabled": 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
| const sortGroups = (summers: string[]) => { | |
| let currentIndex = summers.length, temporaryValue: string, randomIndex: number; | |
| while (currentIndex) { | |
| randomIndex = Math.floor(Math.random() * currentIndex); | |
| currentIndex -= 1; | |
| temporaryValue = summers[currentIndex]; | |
| summers[currentIndex] = summers[randomIndex]; | |
| summers[randomIndex] = temporaryValue; | |
| } | |
| return { |