Skip to content

Instantly share code, notes, and snippets.

View goodGid's full-sized avatar
😎

Kiyong Shin goodGid

😎
View GitHub Profile

Java Framework

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

Cache

  • Redis
@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)
@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 / Nginx Conf
Last active March 5, 2022 03:14
Nginx Conf
# Set Load Balance
upstream odot_servers {
# Traffic Distribute Strategy
# 1. Round Robin
# Default Strategy
# 2. ip_hash;
# Same ip address are always assigned to the same server
# 3. least_conn;
# Distribute reqeust to the server with the fewest connections.
@goodGid
goodGid / Alias Setting.md
Last active April 26, 2020 11:55
Alias Setting

FYI

  • Alias Setting for server management

Start Server

@goodGid
goodGid / 2020 Plan Note.md
Last active September 27, 2020 13:40
2020 Plan
#include<iostream>
#include<vector>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
struct Bug {
int x;
int y;
@goodGid
goodGid / robots.txt
Created August 25, 2018 15:47
robots.txt
User-agent: *
Allow: /
Sitemap: http://{{ 자신의 URL }}/sitemap.xml