Skip to content
View chickenchickenlove's full-sized avatar

Block or report chickenchickenlove

Report abuse

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

Report abuse
chickenchickenlove/README.md

👋 ChickenChickenLove

I'm not good at coding, Because, I'm still learning.

# I like these sentences. Little more than before. He who dreams for a long time resembles his dream. If you are afraid of falling, there is no chance to fly. Show and prove. Never assume anything.

Learn by implementing

Sometimes, implementing something is the best way to learn it.

Open Source Contribution

I have been consistently contributing to several opensource projects.

Apache Kafka


Spring for Apache Kafka


Armeria


etc


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", "rust"); 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.

Popular repositories Loading

  1. implment-http-client implment-http-client Public

    implment-http-client

    Python 6

  2. JpaSelfStudy JpaSelfStudy Public

    Java 1

  3. nestedcontext nestedcontext Public

    Java 1 1

  4. implement_raft_consensus implement_raft_consensus Public

    implement_raft_consensus

    Erlang 1

  5. my-http-rust-server my-http-rust-server Public

    my-http-rust-server

    Rust 1

  6. BOJ-Algorithm BOJ-Algorithm Public

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

    Python