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 letters = (() => { | |
| const caps = [...Array(26)].map((val, i) => String.fromCharCode(i + 65)); | |
| return caps.concat(caps.map(letter => letter.toLowerCase())); | |
| })(); |
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
| <?php | |
| // This can be found in the Symfony\Component\HttpFoundation\Response class | |
| const HTTP_CONTINUE = 100; | |
| const HTTP_SWITCHING_PROTOCOLS = 101; | |
| const HTTP_PROCESSING = 102; // RFC2518 | |
| const HTTP_OK = 200; | |
| const HTTP_CREATED = 201; | |
| const HTTP_ACCEPTED = 202; |
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
| { | |
| "[handlebars]": { | |
| "editor.formatOnSave": false | |
| }, | |
| "[markdown]": { | |
| "editor.quickSuggestions": { | |
| "comments": "off", | |
| "other": "on", | |
| "strings": "off" | |
| } |
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
| # Obtained with the code written in next file | |
| emoji_grinning_face=😀 | |
| emoji_grinning_face_with_big_eyes=😃 | |
| emoji_grinning_face_with_smiling_eyes=😄 | |
| emoji_beaming_face_with_smiling_eyes=😁 | |
| emoji_grinning_squinting_face=😆 | |
| emoji_grinning_face_with_sweat=😅 | |
| emoji_rolling_on_the_floor_laughing=🤣 | |
| emoji_face_with_tears_of_joy=😂 | |
| emoji_slightly_smiling_face=🙂 |
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
| "workbench.colorCustomizations": { | |
| // Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
| "contrastActiveBorder": "", | |
| "contrastBorder": "", | |
| // Base Colors | |
| "focusBorder": "", | |
| "foreground": "", | |
| "widget.shadow": "", | |
| "selection.background": "", | |
| "descriptionForeground": "", |
OlderNewer