일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 프로그래머스
- 스파르타코딩클럽
- 소셜 로그인
- 초기셋팅
- 티스토리챌린지
- 모던 자바스크립트
- 구글 로그인
- nextjs
- React
- error
- Next
- array정적메서드
- vercel
- 리터럴
- git
- 코테
- 코드카타
- 내일배움캠프
- 프로젝트 셋팅
- useRouter
- 셋팅
- 코딩테스트
- 모던자바스크립트
- 자주 까먹는
- 오블완
- CORS
- deep dive
- domain
- vscode
- js
- Today
- Total
목록Today I Learned/in dev (35)
파피루스
로컬 브랜치 첫 push 할 때마다, 아래처럼 귀찮게 하길래 auto remote push 옵션을 찾았다 해결책git config --global --add push.autoSetupRemote true
프로세스가 port 를 차지하고 있어서 생긴 문제로, 프로세스 종료하면 정상화된다. 해결1. 윈도우 작업표시줄에서 cmd 실행 2. 해당 port (내 경우에는 8081)을 잡고 있는 pid (Process Id)를 찾는다netstat -ao | findstr 포트번호 3. 알아낸 pid kill 하기taskkill /f /pid 프로세스아이디 cmd 캡쳐
1. repo 만들기❗본인의 github name으로 변경해서 {userName}.github.io 으로 만들어야 함 2. build deployment 설정하기 3. repo clone 받기 4. blog theme 정하기https://jekyllthemes.io/ Jekyll Themes – a curated directoryFind the best Jekyll themes for your next project – a curated directory of themes, templates and resources for building Jekyll websites.jekyllthemes.io 구글에 검색하면 각종 테마사이트가 많다 골라서 zip 파일로 다운받는다.나는 이 테마를 받아 clone 받은..
prettier - Code formatterhttps://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode Prettier - Code formatter - Visual Studio MarketplaceExtension for Visual Studio Code - Code formatter using prettiermarketplace.visualstudio.com EsLinthttps://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint ESLint - Visual Studio MarketplaceExtension for Visual Studio Code - In..
초기화1. 플러그인 삭제C:\User\사용자이름\.vscode 폴더 삭제 2. 개인설정 파일 삭제C:\User\사용자이름\AppData\Roaming\Code 폴더 삭제 install plugins : https://reeny404.tistory.com/136 필수 vscode 확장 프로그램 (plugins/extension)prettier - Code formatterhttps://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode Prettier - Code formatter - Visual Studio MarketplaceExtension for Visual Studio Code - Code formatter using pretti..
에러 응답 원인google api console 에서 사용하겠다고 설정한 영역 밖의 API를 호출해서 에러가 난다. 순서대로 설명하자면, 1. calendar API만 사용하겠다고 설정2. access Token 발급3. people API 사용하겠다고 설정4. 발급받았던 token으로 people API 요청5. 403 forbidden (permission denied)즉, 사용 설정 이후에 token을 받야하는데, 반대로 token 발급 후 사용하겠다고 선언 해서 오류가 떴다 해결accessToken을 재발급 받자!→ accessToken 요청 url에 propmt=consent 를 추가하면 권한 요청을 필수로 하게된다.https://accounts.google.com/o/oauth2/v2/aut..