본문 바로가기

my_lesson325

01 Android(C++) NDK [Vsual Studio] -Basic Common Sence 01 C++ Android NDK [Vsual Studio] -Basic Common Sence IDE : Visual Studio 2019 Language : C++Operate : Android What is NDK? : from Developer.comThe Android NDK is a toolset that lets you implement parts of your app using native-code languages such as C and C++. For certain types of apps, this can help you reuse code libraries written in those languages. java로 구현하기에 복잡한기능이나 성능향상이 기대 되는 부분을 C나 C++.. 2020. 12. 16.
Java Script [기초] 1 편집기로 파일열기 [여기서는 Visual Atudio code 로 하겠다]2. 해당 문서에서 Terminal > Run Active file3. 학습위치로 가기 Javascript 강좌4. 현재 나의 학습동영상 위치 JavaScript는 function 형태로 Array를 선언할 수 있다function get_members() {return ["a", "b", "c"];} members = get_members(); 자주 쓰는 내장함수 length();toUpperCaxe();push(); append argconcat(); append listunshift(); prepend argsplice(index, howmany, );shift();pop();sort();reverse(); 2020. 3. 31.
Python - Django ReactJS project Python - Django ReactJS project 선수 조건cnoda가상환경 설치 [바로가기]Python 설치 [운영체제 직접설치 바로가기(비추천)] [가상환경 설치 바로가기(추천)]django 설치 [바로가기]NodeJS 설치 [바로가기] NPM NodeJS 설치시 자동설치Yarn 설치 [바로가기]create-react-app 설치 [바로가기] 이 글의 Project 의존성 버전 (conPython37) F:\project\PYTHON\deact>conda -Vconda 4.6.14 (conPython37) F:\project\PYTHON\deact>python --versionPython 3.7.3 (conPython37) F:\project\PYTHON\deact>node -vv10.16.0.. 2019. 7. 24.
Python - 문자열을 리스트로 리스트를 문자열로 Python - 문자열을 리스트로 리스트를 문자열로 def symb_exchange(line): print(line) list_line = list(line) 문자열 >> 리스트 print(list_line) list_line_tem = list_line[0] list_line[0] = list_line[-1] list_line[-1] = list_line_tem print(list_line) line = "".join(list_line) 리스트 >> 문자열 왜 바꾸는가? = 문자열은 수정이 안되므로 리스트로 해서 수정하고 다시 문자열로 바꾼다. print(line) return line if __name__ == '__main__': # These "asserts" using only for self-.. 2019. 7. 20.
python - 콘솔 화면 지우기 python - 콘솔 화면 지우기 인터프리터 콘솔을 지우는 방법은 무엇입니까?>>> import os>>> os.system('cls')>>>def clear():>>> os.system('cls')>>>clear() Unix 계열(Unix, Linux, Mac)가장 빠르고 쉬운 방법은 Ctrl + L 입니다 Windows에서는 Ctrl + L 은 안 먹힙니다. 2019. 7. 20.
Python - Error Cheat sheets Python - Error Cheat Sheets You are trying to add a non-nullable field 'account_nm' to stocksingleacount without a default; we can't do that (the database needs something to populate existing rows). makemigrations 를 이용하여 모델 스키마를 수정하려 할 때 발생하는 NULL 설정 에러이다 추가되는 컬럼에 NULL =True 해주거나 Default = '' 값을 지정해주면 된다 익숙해지기 전까지는 절대 DB 시스템에서 drop하거나 alter 하지말자 1. 기존모델을 수정 (종속성 구조도 같이수정 admin.py, views.py) 2. p.. 2019. 6. 27.