Skip to content

Instantly share code, notes, and snippets.

View goodGid's full-sized avatar
😎

Kiyong Shin goodGid

😎
View GitHub Profile
@goodGid
goodGid / I'm an early 🐤
Last active March 18, 2021 00:51
I'm a night 🦉
🌞 Morning 33 commits ███▊░░░░░░░░░░░░░░░░░ 17.9%
🌆 Daytime 66 commits ███████▌░░░░░░░░░░░░░ 35.9%
🌃 Evening 30 commits ███▍░░░░░░░░░░░░░░░░░ 16.3%
🌙 Night 55 commits ██████▎░░░░░░░░░░░░░░ 29.9%
@goodGid
goodGid / peek.md
Last active September 15, 2020 03:26
How to use `peek()` method
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)

Java Framework

  • Spring MVC
  • Spring Boot 2.x.x
  • Spring Batch
    1. Reader & Processor & Writer
    2. JobExecutionDecider & FlowBuilder

Cache

  • Redis
@goodGid
goodGid / .zshrc
Last active July 12, 2023 22:20
for .zshrc
## Default Value
export ZSH="/Users/goodgid/.oh-my-zsh"
ZSH_THEME="robbyrussell"
plugins=(git)
source $ZSH/oh-my-zsh.sh
## Jekyll for Mac M1
## ssh ubuntu@ec2-3-34-238-100.ap-northeast-2.compute.amazonaws.comexport PATH=$Home/.rbenv/bin:$PATH
## Folder
@goodGid
goodGid / Alfred
Last active March 4, 2023 16:30
for Alfred
## JPG
https://www.iloveimg.com/compress-image
## PNG
https://www.iloveimg.com/compress-image/compress-png
## URL
https://bitly.com/
## JSON
@goodGid
goodGid / keybindings.json
Created May 23, 2021 03:08
keybindings.json
// 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"
@goodGid
goodGid / settings.json
Last active June 15, 2021 07:52
settings.json
{
"files.exclude": {
".deploy_git/*": true,
"db.json": true,
"public/*": true
},
"[markdown]": {
"editor.quickSuggestions": true
},
"window.zoomLevel": 1,
@goodGid
goodGid / markdown.json
Last active July 14, 2021 11:49
markdown.json
/*
settings.json 파일에서
다음과 같은 설정을 해줘야한다.
"[markdown]": {
"editor.quickSuggestions": true
}
ref : /Users/user/Library/ApplicationSupport/Code/User/settings.json
*/
{

Java Framework

  • Spring Boot 2.x.x

Cache

  • Redis

MQ

  • Kafka