본문 바로가기

SW 프로그래밍190

nano에디터를 편하게 사용하는법(NANORC) nano에디터를 편하게 사용하기 위해 NANORC를 수정하였다. 수정하기 위해 아래 명령어 실행 $ sudo nano /etc/nanorc 적용한 부분 # 자동 들여쓰기를 사용합니다. ## Automatically indent a newly created line to the same number of ## tabs and/or spaces as the preceding line -- or as the next line ## if the preceding line is the beginning of a paragraph. set autoindent # 항상 커서 위치의 라인 번호가 표시됩니다. ## Constantly display the cursor position in the status bar or.. 2023. 7. 13.
MariaDB mysql_secure_installation 설정 설명 gndb@gndb-S5520UR:~$ sudo mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and haven't set the root password yet, you should just press enter here. Enter current p.. 2023. 7. 12.
MySQL 오류 : InternalError: Unread result found 오류 코드 명 mysql.connector.errors.InternalError: Unread result found 해결 방법 # 기존 코드 connection = mysql.connector.connect(user="", password="", host="") cur = connection.cursor() # 변경 코드 connection = mysql.connector.connect(user="", password="", host="") cur = connection.cursor(buffered=True) 즉, cursor() 안에 buffered=True만 넣어주면 이 오류는 해결된다. 부연 설명 본인의 경우 이 오류는 데이터를 입력하고자 할 때, 즉 cur.execute("INSERT ~~")와.. 2023. 1. 4.
Missing contentDescription attribute on... ImageButton에서 만난 경고창입니다! Missing contentDescription attribute on image 이미지에서 contentDescription 속성이 누락되었다고 하네요๑・̑◡・̑๑ 이거는 기술적인 오류는 아니고 이미지에 대한 접근성이 좋지 않다! 라는 경고입니다. 저 노란 전구에 커서를 갖다대면 위와 같은 창이 올라옵니다 Set ContentDescription을 클릭해주세요! 요렇게 넣어주면 됩니다 저는 contentDescription에 고냥 "이미지 뷰입니다" 라는 스트링을 넣어주었어요..! 그냥 버튼 이미지 버튼이었어서리.. 만약 굳이 설명이 필요없는 장식용 이미지라면 android:contentDescription="@null" 라고 넣어주심 됩니다! 원본 : ht.. 2022. 12. 13.
phpinfo() 실행 시 하얀 화면이 나타날 경우 대처방법 APM(Apache+PHP+MySQL) 연동 테스트를 할 경우, phpinfo() 함수를 이용하는 경우가 많습니다. 그런데 가끔 phpinfo.php 를 실행할 때 하얀 화면이 나타납니다. 이럴 경우는 php.ini 의 short_open_tag = Off를 On 으로 수정하면 됩니다. 출처 : https://itcenter.yju.ac.kr/xe_board_tech_linux/6208 영진전문대학교 IT지원센터 영진전문대학교 IT지원센터 itcenter.yju.ac.kr 2022. 12. 8.
Android 12 타겟팅 시 Manifest merger failed / android:exported 앱을 만들어 보고 싶어서 안드로이드 스튜디오를 통해서 공부하고 있었는데 오류가 발생했다 위와 같은 코드를 적었는데 activity에 빨간 밑줄이 그어지며 해당 부분에서 오류가 발생했다 Manifest merger failed : android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/ma.. 2022. 11. 28.