본문 바로가기

개발이야기/Etc

(15)
node 특정 버전 설치 // node 버전 확인 node -v // 사용 가능한 버전 조회 nvm list available // 14.15.4 버전 다운로드하기 nvm install 14.21.3 // 설치 되어있는 버전확인하기 nvm list // 14.21.3 버전 사용하기 nvm use 14.21.3
vscode 빈 줄(라인) 삭제
Sequelize join order by / group by join 되는 기준으로 order by / group by const table_a = await models.TABLE_A.findAll({ include: [ { as: "table_b", model: models.TABLE_B, required: true, }, ], order: [[ {model: models.TABLE_B, as: "table_b" }, "id", "DESC"]], group: [[ {model: models.TABLE_B, as: "table_b" }, "no"]] });
CORS 에러: The request client is not a secure context and the resource is in more-private address space `local` local에서 cors 오류 해결 chrome://flags/#block-insecure-private-network-requests 에 들어가서 설정 disabled 참고 : https://nankisu.tistory.com/67
bitbucket - Bitbucket Cloud recently stopped supporting account passwords for Git authentication 오류 remote: Bitbucket Cloud recently stopped supporting account passwords for Git authentication. 소스트리로 push 하려던중 위의 오류 발생 해결방법 : 1) C:\Users\{{유저명}}\AppData\Local\Atlassian\SourceTree 접속 2) passwd 파일 삭제 3) bitbucket.org 접속 후 로그인 4) 빨간 박스를 찾아 들어간다 5) Create app password 버튼 클릭 후 Label과 아래 이미지의 권한을 선택 후 Create 버튼 클릭 6) 비밀번호가 뜨는데 비밀번호를 복사한다 ( 컨트롤 + c ) 7) 소스트리에서 push를 다시 한다 8) 비밀번호 입력 창뜨면 복사한 비밀번호를 붙여 ..
브라우저에서 번역 하기 안먹히게 하는법 크롬 번역 안할 영역 엣지 번역 안할 영역 This will not be translated.
html color 확인하기 1) 페이지에서 color값 알고 싶은 부분을 스크린샷 2) https://pinetools.com/image-color-picker 접속 하여 업로드 Online Image color picker Pick color from image pinetools.com 3) https://search.naver.com/search.naver?where=nexearch&sm=top_hty&fbm=0&ie=utf8&query=%EC%83%89%EC%83%81%ED%91%9C 접속 색상표 : 네이버 통합검색 '색상표'의 네이버 통합검색 결과입니다. search.naver.com 네이버 색상표에서 해당 값 입력
윈도우10 cmd로 램 정보 확인 장치 위치 확인, 제조사 확인 wmic memorychip get devicelocator, manufacturer 속도 wmic memorychip get devicelocator, speed wmic memorychip get devicelocator, partnumber