본문 바로가기

전체 글

(173)
[MYSQL] grant all on *.* to 'root'@'%' identified by 'password' with grant option; 실행 시 ERROR 1064 (42000) 오류 해결 문제 uncategorized SQLException for SQL []; SQL state [HY000]; error code [1449]; The user specified as a definer ('orbit'@'%') does not exist; nested exception is java.sql.SQLException: The user specified as a definer ('orbit'@'%') does not exist 오류 발생~!!! 문제 해결 시도 grant all on *.* to 'root'@'%' identified by 'password' with grant option; 참고) https://m.blog.naver.com/PostView.nhn?blogId=kkson50&l..
[MYSQL] dump file import 시 ERROR 1418 (HY000) 해결 방법 오류 ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) 해결방법 SET GLOBAL log_bin_trust_function_creators = 1; 예시 SET GLOBAL log_bin_trust_function_creators = 1; 입력 후 dump file import start
[Python3] [Errno 13] Permission denied How i solve this problem 해결 방법 1-setup a virtual env to install the package (recommended): python3 -m venv env source ./env/bin/activate python -m pip install google-assistant-sdk[samples] 2-Install the package to the user folder: python -m pip install --user google-assistant-sdk[samples] 3-use sudo to install to the system folder (not recommended) sudo python -m pip install google-assistant-sdk[samples] https://github.com/go..
[Android] 점선 그리기 블로그 https://black-jin0427.tistory.com/66 [Android, dash line] XML 로 점선 그리기 안드로이드 개발을 할 때 점선이 필요한 경우가 있습니다. 아래는 xml 파일에서 점선을 그리는 코드 입니다. drawable_dash_line.xml android:shape="line"> android:colo.. black-jin0427.tistory.com
[Android studio] javadoc 빠르게 확인하는 법 설정 블로그 https://ejiaah.com/programming/android/android-javadoc/ Javadoc 사용하기 Javadoc이란 무엇이며 어떻게 사용할까? ejiaah.com
[Git] git stash drop/clear 됐을 때 되돌리는 법 https://mrgamza.tistory.com/597 git. stash 실수로 없앴을때 복구 git은 모든 시점으로 돌릴수 있습니다. 그래서 실수한것도 다시 돌릴수 있습니다. 오늘은 stash를 한것을 실수로 drop 하였을때 해결 방법입니다. dangling commit이 안되어 있다면 어쩔수 없습니다. ㅠ mrgamza.tistory.com
[Android] SSL Error Handler 구글 스토어 경고 대응하기 정리 잘 된 블로그 https://kkgram.tistory.com/15 [Android] SSL Error Handler 구글 스토어 경고 대응하기 [Android] SSL Error Handler 구글 스토어 경고 대응하기 구글스토어에 어플을 올려두고 신경을 끄고있다가 어느날 들어와보니 업데이트가 되어있지 않았다. (정말 관심 안가짐) 경고문을 보니 아무래�� kkgram.tistory.com
[Android] Retrofit GET 예제 찾다가 찾은 좋은 블로그 https://codechacha.com/ko/android-jetpack-sample/ 안드로이드 ViewModel, LiveData, Room을 사용하는 좋은 예제 | codechacha Android Architecture Component인 ViewModel, LiveData, Room을 함께 사용하는 샘플을 소개하려고 합니다. Paging을 소개하는 튜토리얼에서 다양한 AAC의 컴포넌트를 사용합니다. 이 샘플은 GitHub의 API를 이용하여 codechacha.com