본문 바로가기

오류30

문제해결: Bad UTF-8 encoding (U+FFFD; REPLACEMENT CHARACTER) found while decoding string: PC포맷과 함께 Flutter 3.10, Visual Studio 2022( develop for Windows with C++ ) 을 설치 한 뒤 flutter doctor를 수행한 결과 아래와 같은 오류 발생. C:\src\flutter>flutter doctor Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 3.0.1, on Microsoft Windows [Version 10.0.19044.1706], locale ko-KR) [X] Android toolchain - develop for Android devices X Unable to locate Android SDK. Instal.. 2022. 5. 30.
Flutter - has been blocked by CORS policy, 크롬 실행 시 발생 오류 해결방법. 현상 크롬에서 Flutter 빌드 시 아래와 같은 오류가 발생했다. ════════ Exception caught by image resource service ════════════════════════════ Failed to load network image. Image URL: https://i.pinimg.com/564x/89/31/36/8931368c1ec410f73ee0615b531ae32e.jpg Trying to load an image from another domain? Find answers at: https://flutter.dev/docs/development/platform-integration/web-images ═══════════════════════════════════.. 2022. 2. 21.
MySql - Public Key Retrieval is not allowed 오류 해결 DBeaver IDE를 사용하여 MySql 접속시 Public Key Retrieval is not allowed 오류 발생 시 allowPublicKeyRetrieval=true 옵션값을 설정하여 해결한다. 아래는 MySql 공식사이트에서 MITM 공격을 방어하기 위해 해당 디폴트 옵션값을 false로 설정한 관련 코멘트이다. If the user account uses sha256_password authentication, the password must be protected during transmission; TLS is the preferred mechanism for this, but if it is not available then RSA public key encryption will .. 2022. 1. 27.
Git - Remote 브랜치 안보일 때 해결방법 remote 신규 브랜치 안보일 때 git branch -a 명령으로 remote에 생성한 신규 브런치가 안보일 때, git ls-remote origin 명령으로 확인한다. 신규 브랜치가 보이는지 확인한다. Config 수정 Config 수정은 아래 두 개의 방법으로 수정 가능하다. 1. config file수정 .git/config 명령으로 git config를 수정할 수 있다. .git/config or git config --global --edit remote 이름 origin 을 아래와 같이 수정한다. .. [remote "origin"] url = ... fetch = +refs/heads/*:refs/remotes/origin/* .. 2. config cmd 수정 git config re.. 2021. 9. 27.