View 카카오뱅크_Tech_Stack.md
Java Framework
- Spring Boot 2.x.x
Cache
- Redis
MQ
- Kafka
View markdown.json
This file contains 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
/* | |
settings.json 파일에서 | |
다음과 같은 설정을 해줘야한다. | |
"[markdown]": { | |
"editor.quickSuggestions": true | |
} | |
ref : /Users/user/Library/ApplicationSupport/Code/User/settings.json | |
*/ | |
{ |
View settings.json
This file contains 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
{ | |
"files.exclude": { | |
".deploy_git/*": true, | |
"db.json": true, | |
"public/*": true | |
}, | |
"[markdown]": { | |
"editor.quickSuggestions": true | |
}, | |
"window.zoomLevel": 1, |
View keybindings.json
This file contains 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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "shift+cmd+k", | |
"command": "editor.action.formatDocument", | |
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "cmd+1", | |
"command": "workbench.action.openEditorAtIndex1" |
View Alfred
This file contains 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
## JPG | |
https://www.iloveimg.com/compress-image | |
## PNG | |
https://www.iloveimg.com/compress-image/compress-png | |
## URL | |
https://bitly.com/ | |
## JSON |
View .zshrc
This file contains 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
## Default Value | |
export ZSH="/Users/goodgid/.oh-my-zsh" | |
ZSH_THEME="robbyrussell" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
## Jekyll for Mac M1 | |
export PATH=$Home/.rbenv/bin:$PATH | |
## Folder |
View LINE-Pay_Tech_Stack.md
Java Framework
- Spring MVC
- Spring Boot 2.x.x
- Spring Batch
- Reader & Processor & Writer
- JobExecutionDecider & FlowBuilder
Cache
- Redis
View peek.md
public class Goodgid {
public void printEven() {
List<Integer> numbers = Arrays.asList(2, 3, 4, 5);
numbers.stream()
.map(x -> x + 17)
.filter(x -> x % 2 == 0)
.limit(3)
NewerOlder