오늘 배운것
계정여러개 세팅
회사에서는 bitbucket계정을 사용하지만 개인작업이다 협업프로젝트는
깃허브계정을 필요에 따라서 쓸수 있도록 세팅이 필요했다.
https://want-itschool.tistory.com/48
[Git] github 다수의 계정 사용하기
회사에서 사용하는 github 계정과 개인 계정을 같이 쓸 수 있다는 사실을 구글링을 통해 알아내고서 열심히 뻘짓을 하며 며 성공했다...! 나중에 다시 하려면 또 뻘짓을 할 것 같아서 포스팅하기로
want-itschool.tistory.com
https://jeunna.tistory.com/109
git 계정 여러개 (.gitconfig 설정)
환경: Windows 10, git bash 개인 github만 썼어서 아무 생각없이 git을 썼는데 회사 다니니까 키가 따로 필요해졌다 1. SSH Key 생성 #ssh rsa key 생성 #default 2048, -b 4096 $ssh-keygen -t rsa -C "GITHUB_M..
jeunna.tistory.com
spread operator 활용방법 9가지
array mergesk concat용도로 주로 사용했었는데 split이나 splice용도로 활용하니 코드도 좀더 간결하고 쓰기도 편한것 같다.
다만 정의된 object가 안으로 파고들어갈수록 operator문으로 작성될떄 가독성이 조금은 떨어지는것같다.
Rest and Spread operator: Three dots that changed JavaScript - Wisdom Geek
The rest and spread operator have changed the way I do a lot of things in JavaScript and I have started using the three dots for a lot of tasks I do. I have become a big fan of the syntax and I will be sharing some of the numerous applications of the sprea
www.wisdomgeek.com