Skip to content
View chickenchickenlove's full-sized avatar
Block or Report

Block or report chickenchickenlove

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
chickenchickenlove/README.md

TECH STACK

👋 ChickenChickenLove Hits

# I like these sentences.
Little more than before.
If you are afraid of falling, there is no chance to fly.
Show and prove.
Never assume anything.

Skills

/**
 * I have tried the above techniques more than once.
 * But it does not mean that i'm professional that techs.
 * But i always try to study to improve myself.
 * If i have free time to complain, i code instead.
 */

public class Me implements SmartLifecycle {

    private final Set<String> languages;
    private final Set<String> springEchoSystem;
    private final Set<String> display;
    private final Set<String> databases;
    private final Set<String> kafkaEchoSystem;
    private final Set<String> cloudFriendly;

    public Me(Set<String> languages,
              Set<String> springEchoSystem,
              Set<String> display,
              Set<String> databases,
              Set<String> kafkaEchoSystem,
              Set<String> cloudFriendly) {
        this.languages = languages;
        this.springEchoSystem = springEchoSystem;
        this.display = display;
        this.databases = databases;
        this.kafkaEchoSystem = kafkaEchoSystem;
        this.cloudFriendly = cloudFriendly;
    }

    @Override
    public void start() {
        System.out.println("Since 2022, i started to study to code. ");
    }

    @Override
    public void stop() {
        throw new NotImplementedException();
    }



    @Override
    public boolean isRunning() {
        return true;
    }

    @Override
    public String toString() {
        return "I'm not the person who is good at coding, " +
                "but i always try to be better man little more than before. " +
                "I'm interested in contributing to opensource to learn about " +
                "good architecture and code as well. ";
    }
}

@Configuration
public class ConfigurationForMe {

    @Bean
    public Me me() {
        final Set<String> languages = Set.of("Java", "Python", "erlang");
        final Set<String> springEcoSystem = Set.of("Spring Boot", "Spring MVC", "Spring Security", "Spring Batch", "Spring Data JPA");
        final Set<String> databases = Set.of("MySQL");
        final Set<String> display = Set.of("thymeleaf", "tailwind-css");
        final Set<String> kafkaEcoSystem = Set.of("Kafka", "kafka-connect", "schema-registry", "kafka-streams", "ksqlDB");
        final Set<String> cloudFriendly = Set.of("docker", "docker-compose", "kubernetes", "helm", "prometheus", "istio", "fluent-bit");

        return new Me(languages, 
                springEcoSystem,
                databases,
                display,
                kafkaEcoSystem,
                cloudFriendly);
    }
}

👋Problem Solving

Solved.ac 프로필

  • I did problem solving at sovled.ac.

Docs Contribute (Completed)

Docs Contribute (-ing)

Code Contribute (Completed)

Code Contribute (-ing)

Books and Lecture

Popular repositories

  1. JpaSelfStudy JpaSelfStudy Public

    Java 1

  2. BOJ-Algorithm BOJ-Algorithm Public

    백준 알고리즘 코딩테스트 풀이

    Python

  3. SpringMVC_Study SpringMVC_Study Public

    Spring MVC를 복습한 내용을 올리고 있습니다.

    Java 1

  4. JPA1 JPA1 Public

    김영한님의 JPA 활용 1편 강의를 듣고 복습 및 정리한 내용을 작성하고 있습니다.

    JavaScript

  5. QueryDsl QueryDsl Public

    인프런 김영한님의 QueryDsl을 들은 후 기록한 곳입니다.

    Java

  6. testShopRepository testShopRepository Public

    JavaScript