Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| { | |
| "editor.cursorStyle":"line", | |
| "editor.cursorWidth": 4, | |
| "editor.folding": false, | |
| "editor.fontFamily":"'Fira Mono', 'Noto Mono','Noto Color Emoji', 'Droid Sans Fallback'", | |
| "editor.fontSize": 16, | |
| "editor.quickSuggestions": false, | |
| "editor.quickSuggestionsDelay": 10000, // in 10 sec | |
| "editor.suggest.maxVisibleSuggestions": 5, | |
| "editor.acceptSuggestionOnCommitCharacter": false, |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| import sinon from 'sinon'; | |
| import { stubConstructor } from 'ts-sinon' | |
| export class Calculator { | |
| sum(exp: string): number; | |
| sum(a: number, b: number): number; | |
| sum(...args: any): number { | |
| const summands = args.length === 1 | |
| ? args[0].split('+').map((x: string) => parseFloat(x)) | |
| : args; |
| ############################################################################################################ | |
| ################## ############################# | |
| ################## ############################# | |
| This Gist collection contains all localstack related examples | |
| ################## ############################# | |
| ################## ############################# | |
| ############################################################################################################ |
| =========================================================================================================================== | |
| =========================================================================================================================== | |
| =========================================================================================================================== | |
| All about core java | |
| =========================================================================================================================== | |
| =========================================================================================================================== | |
| =========================================================================================================================== |
| ======================================================================================================= | |
| ======================================================================================================= | |
| All about java jvm | |
| ======================================================================================================= | |
| ======================================================================================================= |
| ======================================================================================================= | |
| ======================================================================================================= | |
| All-about-reactive-programming-java | |
| ======================================================================================================= | |
| ======================================================================================================= |
Source : https://github.com/shiena/ansicolor/blob/master/README.md
Ansicolor library provides color console in Windows as ANSICON for Golang.
| import org.json.JSONObject; | |
| import javax.swing.*; | |
| import java.awt.*; | |
| import java.nio.charset.StandardCharsets; | |
| import java.util.Base64; | |
| public class SwingJwtHelper { | |
| public static void main(String[] args) { | |
| SwingUtilities.invokeLater(SwingAppUI::createAndShowGUI); |