webserver.py----------------------------------------------------------------------------------- from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer,socket import sys,os PORT_NUMBER = 8080 def getMacAddress(): if sys.platform=='win32': for line in os.popen("ipconfig /all"): print(line.lstrip())#물리적 주소 or Physical address if line.lstrip().startswith('물'): mac = line.split(':')[1].strip()...
출처: https://developer.android.com/studio/build/optimize-your-build.html 빌드 속도를 향상시키는 작업은 아래 두가지 방법이 있음. 1. build configuration 설정 최적화 - 거의 모든 안드로이드 스튜디오 프로젝트에 바로 적용 되는 효과있음 2. Profile build 부분 설정 - 큰 프로젝트나 부분적으로 테스트 할때, 불필요한 부분을 제외 시켜서 속도 효과를 얻음
String inputString = "this is input String"; System.out.println("input String :" + inputString); //string -> byte array byte[] inputBytes = inputString.getBytes(); String hexString = ""; for (byte b : inputBytes) { hexString += Integer.toString((b & 0xF0) >> 4, 16); hexString += Integer.toString(b & 0x0F, 16); } //hex string -> byte array byte[] bytes = new java.math.BigInteger(hexString, 16).to..
- Total
- Today
- Yesterday
- 프로젝트관리전문가
- 더불어 민주당
- qwebview
- 소프트웨어대회
- IT-PMP
- 프로그래밍대회
- stamp
- setup.py
- 안드로이드 화면 밝기 조절
- 파이썬프레임워크
- 디지털서명
- WSS
- Python
- 온라인저지
- 타임스탬프
- 파이썬
- 자유한국당
- PyQt
- signtool
- 코드스쿨
- 사용법
- 관련사이트
- 리눅스
- 서버주소
- Android
- websocket
- .svn
- 명령어
- ORACLE 프로시져생성
- SW대회
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |