Skip to content
View michaelkimm's full-sized avatar

Block or report michaelkimm

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
michaelkimm/README.md

Hi there 👋

마찰력 없는 인앱경험을 발견하면 정말 좋아합니다. 그런 제품을 만들기 위해, 일을 할 때 본인만의 해석과 철학을 팀원과 먼저 공유합니다. 초기 제안 보다 더 나은 해결 방법을 제안합니다. 제안이 실행 단계로 전환됐을 때 지치지 않고 완수하는 사람입니다. 문제를 해결해나가는 집요함이 있습니다.

Resume by notion

About me:)

package p2p.introduction.domain;

@Builder
class Member {
    String name;
    String job;
    String[] developmentFields;
    String[] languages;
    String[] backendSkills;
    String[] devOpsSkills
    String[] collaborationTools
    String[] interests;
}

public class Main() {
    public static void main(String[] args) {
    
        Member minsuk = Member.builder()
                .name("김민석")
                .job("Software engineer🧑🏽‍💻")
                .developmentFields({"Back-end🔭"})
                .languages({"java☕"})
                .backendSkills({Spring🌱, Dropwizard,JPA🔧, MyBatis🦤, Junit55️⃣, Mockito🍸, Gradle🐘, Lambda🔸, OpenSearch🔹})
                .devOpsSkills({Ubuntu🐺, Github Actions♾️, Mysql🐬, Docker🐋 AWS EC2☁️, S3, CodeDeploy, SecretsManager})
                .collaborationTools({Slack📑, Notion, Jira, Github project, Git, Intellij})
                .interests({"정리", "실험", "습관", "마찰력"})
                .build();

        introduce(minsuk);
    }
}

Hard Skill

  1. 더 깊이 있고 근거에 기반한 지식을 쌓기 위해 기술 선택 시 여러 솔루션의 장단점과 사용자 UX의 Trade off를 고려했습니다.

  2. 알고리즘 문제 해결 과정 복기 및 글 정리

    • 모든 알고리즘 문제의 해결법 사고 과정 글로 정리.
    • 문제를 나만의 언어로 추상화 하고 이를 요구사항(시간, 공간 복잡도)에 맞는 적절한 자료구조와 알고리즘을 선정하는 사고 과정이 중요하다고 생각합니다. 이에 모든 사고 과정을 글로 정리하고 있습니다. 정리된 글은 Algorithm_diary repository에서 확인할 수 있습니다. 더 많은 사람과 공유하기 위해 블로그로 옮길 예정입니다.

Soft SKill

  1. 서비스 개발은 많은 팀원을이 협업하여 이뤄내는 것이기 때문에 Issue, PR, Wiki 등 문서화에 관심이 많습니다.
  2. 티스토리 블로그 에서는 사회의 성장에 기여하기 위해 제가 재생산한 지식과 의견을 주기적으로 작성했습니다.

Cards

Anurag's github stats

Pinned Loading

  1. Algorithm-problem-solving-thought-process-re-record Algorithm-problem-solving-thought-process-re-record Public

    알고리즘 공부에 대한 개인적인 생각과 문제 풀이 사고 과정의 복기 기록을 저장하는 공간

    Python 7 1

  2. bank bank Public

    돈통 및 이체 서비스

    Java 6 1

  3. f-lab-edu/resell-platform f-lab-edu/resell-platform Public

    신발 거래 및 경매 플랫폼

    Java 8 3

  4. FantasyCountry FantasyCountry Public

    캐주얼 아케이드 게임

    C# 2

  5. atdd-subway-map atdd-subway-map Public

    Forked from next-step/atdd-subway-map

    ATDD 과정 저장소 - 지하철 노선도 관리 미션

    Java

  6. spring-cloud-msa-tutorial spring-cloud-msa-tutorial Public

    Spring Cloud로 개발하는 마이크로서비스 애플리케이션(MSA) tutorial

    Java