전체 글

· Debug
커서를 코드에디터창과 터미널창으로 전환 가능한 키 (Ctrl+Up, Ctrl+Down) 터미널창 열고 닫기 (Ctrl + ` ) -> 이건 원래 기본으로 세팅되어있는건데 예전에 뭐 고치려했었던건가 default되서 안되어있었음.. keyboard shortcuts. json 파일 찾아서 거기에 아래 내용 복붙하면됨 참조: https://www.youtube.com/watch?v=nzNyIinEcJA&t=52s https://neutrondev.com/vs-code-switch-between-editor-and-terminal/ Paste this code into keybindings.json file: [ { "key": "ctrl+down", "command": "workbench.action.ter..
· Debug
master라서 main으로 바꿈 첫번째 명령어 git branch -m master main으로 하니까 바뀜 git config --global init.defaultBranch 이거는 뭐하는 명령어인지 모르겠다..ㅜ
· Debug
로그인 버튼 누르면 카카오톡 로그인 티스토리 아이디로 로그인 2개 뜨는데 티스토리 로그인은 클릭시 해당 로그인 링크창으로 이동하는데 카카오톡 로그인을 누르면 뭐 링크따라서 헛도는 것도 아니고 아예 반응을 안함 주소창 가장 왼쪽 자물쇠 버튼 누르고 추정 방지 탭 OFF후 로그인 카카오톡 로그인 링크창으로 이동함 웨일에서 뭐 저런거 만들어서 넣었나봄.. https://forum.whale.naver.com/topic/52353/ https://devtalk.kakao.com/t/topic/132648
· Debug
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 해결방법 - editor - preferences - SQL editor - safe Updates 체크해제 WHERE절 안쓰고 UPDATE하면 DB의 row들이 몽땅 수정이 되버리고 마는데.. 이를 방지하기 위함인듯
Why are hashes fixed length? Hashes are of a fixed length since it makes it nearly impossible to guess the length of the hash if someone was trying to crack the blockchain. The same data will always produce the same hashed value. A hash, like a nonce or a solution, is the backbone of the blockchain network. 해시는 고정된 길이로, 누군가가 블록체인을 깨려고 할 때 해시의 길이를 추측하는 것이 거의 불가능하기 때문이다
· Debug
[에러원인] 해당 리소스에 유효한 인증 자격 증명이 없기 때문에 요청이 적용되지 않았음 [해결방법] 사용하고자하는 API의 용도에 맞는 '사용API' 정확하게 선택해준다.. '검색' 이게 없는줄 알았음.. 비로그인 방식 오픈API에 '검색'방식이 포함되어있길래 사용API에 체크안해도 되는줄.. org.springframework.web.client.HttpClientErrorException$Unauthorized: 401 Unauthorized: "{"errorMessage":"Scope Status Invalid : Authentication failed. (인증에 실패했습니다.)","errorCode":"024"}"
· Debug
[에러 이유] datasource를 설정하는데 실패했다 [해결방법] application.properties에서 datasouce를 오탈자없이 작성 *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class
· Debug
Execution failed for task ':NaverapiApplication.main()'. > Process 'command 'C:/Program Files/Java/jdk-11.0.11/bin/java.exe'' finished with non-zero exit value 1 인텔리제이 Menu탭 File-Settings-(Gradlle검색) Build and run에서 Build Tool을 Gradle-> IntelliJ IDEA로 변경
· Debug
ERROR 1045 (28000): Access denied for user#1045 MySQL 서버에 로그인할 수 없습니다MySQL 접근 거부 오류 아이디 또는 패스워드가 맞지 않거나, 그 계정에 지정된 접속가능한 대역(Host)이 아닌 경우 https://www.youtube.com/watch?v=zOropZAzviQ&list=PLZzruF3-_clsWF2aULPsUPomgolJ-idGJ&index=3 01:59 cmd에 mysql -V라고 해야하는데 (대문자) mysql -v라고 적음 (소문자)
Line:13 babCurr중 speakList들의 element를 replace할 때 babCurr = babCurr.replace(speak,""); 공백으로 치환했더니 테스트케이스 wyeoo에서 실패함 wyeoo -> w[ye]oo -> woo -> [woo] -> (공백) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 class Solution { private String[] banList = {"ayaaya", "yeye", "woowoo", "mama"}; private String[] speakList = {"aya", "ye", "woo", "ma"}; public int solution(String[] babbling) { int ..
배게
백엔드