kyuwon53 / kyuwon53.github.io

Apache License 2.0
1 stars 0 forks source link

index #28

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

kyuwon Gitbook

kyuwon53 기록

https://kyuwon53.github.io/

kyuwon53 commented 2 years ago
kyuwon53 commented 2 years ago

https://github.com/ept/ddia-references

kyuwon53 commented 2 years ago

https://www.ics.uci.edu/~fielding/pubs/dissertation/software_arch.htm https://johngrib.github.io/wiki/REST-paper-summary/

kyuwon53 commented 2 years ago

https://www.youtube.com/watch?v=Cz_a2gQp63c

kyuwon53 commented 2 years ago

https://johngrib.github.io/wiki/jvm-stack/ https://johngrib.github.io/wiki/use-java-primitive-type-for-performance/ https://discord.com/channels/718694214119981068/948469382428909588/956173972356075550

kyuwon53 commented 2 years ago

https://www.youtube.com/playlist?list=PLW1yb8L3S1ngGmtKlI5XYcTNQQ1r3xZvq https://www.youtube.com/watch?v=zGBm37kze9I&list=PLHqxB9kMLLaOs2BM2KbuvttBYCgDoFm-5&index=2

kyuwon53 commented 2 years ago
kyuwon53 commented 2 years ago

https://wikidocs.net/book/31

kyuwon53 commented 2 years ago

깃허브 pull request merge 3가지 https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges

kyuwon53 commented 2 years ago

깃허브 merge 정리글 https://sabarada.tistory.com/196 누구나 쉽게 이해할 수 있는 Git 입 https://backlog.com/git-tutorial/kr/

kyuwon53 commented 2 years ago

CAP 정리 https://www.ibm.com/kr-ko/cloud/learn/cap-theorem https://johngrib.github.io/wiki/CAP-theorem/

kyuwon53 commented 2 years ago

git add

$ git add -p

-p옵션을 사용하면, git add를 할 때 파일 단위로 하는 것이 아니라 단계적으로 변경 사항을 적용할 수 있습니다.

https://git-scm.com/docs/git-add#_interactive_mode

fzf fzf는 CLI에서 다른 명령어들과 상호작용하여 편리하게 사용할 수 있도록 도와주는 도구입니다. 설치법은 아래 링크에서 보고 각 운영체제에 맞게 설치해 주세요.

https://github.com/junegunn/fzf

grep grep 명령어는 입력으로 받은 결과를 주어진 문자열로 찾는 명령어입니다.

https://man7.org/linux/man-pages/man1/grep.1.html

xargs 입력으로 받은 것을 다음 명령어의 입력으로 넣어주는 명령어 입니다.

https://man7.org/linux/man-pages/man1/xargs.1.html

cut cut명령어는 입력받은 것에서 주어진 값만큼 잘라내는 명령어 입니다.

https://man7.org/linux/man-pages/man1/cut.1.html

처음부터 3까지

$ echo "hello" | cut -c -3
hel

3부터 끝까지

$ echo "hello" | cut -c 3-
llo

브랜치 미리보기 하면서 선택하기

git branch | grep -v '\\*' | fzf --preview 'git l {1}' --color=always' | xargs git switch 

https://johngrib.github.io/wiki/git-alias/ https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases

kyuwon53 commented 2 years ago

https://docs.microsoft.com/en-us/dotnet/architecture/microservices/microservice-ddd-cqrs-patterns/infrastructure-persistence-layer-design#the-repository-pattern

kyuwon53 commented 2 years ago

https://git-scm.com/book/en/v2/Git-Internals-Git-Objects

kyuwon53 commented 1 year ago

https://velog.io/@giantim/5 https://eocoding.tistory.com/94

kyuwon53 commented 1 year ago

7/19 https://techblog.woowahan.com/2597/ https://app.diagrams.net/#G1Pt2BhvWHqReLaTAijDErjzG-RjSWcZ4S https://deeplify.dev/back-end/spring/oauth2-social-login

kyuwon53 commented 1 year ago

장고 스프링 비교 : https://intrepidgeeks.com/tutorial/django-compare-the-spring-with-the-long-drum

kyuwon53 commented 1 year ago

Django tutorial : https://wikidocs.net/70649