분류 전체보기

· 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 ..
· 백엔드
메모리 관리 개념 어떤 프로그램이든 프로세스가 되어 프로세서에 적재되기 위해서는 메모리에 적재되어야 실행이 가능하다. 따라서 메모리는 중요한 작업공간이고 한정된 메모리를 다중프로그래밍 환경에서 이용하기 위해서는 여러 프로세스가 함께 메모리를 사용하므로 효율적인 관리를 해야만 한다. 이러한 메모리 관리를 위해 메모리 관리자가 존재하고, 메모리 관리 장치(MMU, Memory Management Unit)와 OS관리모듈과 함께 진행한다. 이 때 몇가지 정책에 따라 메모리 관리를 진행한다. 적재 정책(Fetch Policy)은 디스크에서 메모리로 프로세스를 언제 가져와야 할지를 정하는 것이다. 배치 정책(Placement policy)은 디스크에서 메모리로 가져온 프로세스를 어느 위치에 저장할 것인지 정하는 ..
배게
'분류 전체보기' 카테고리의 글 목록