일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- google cloud
- pdf merge
- objectdetection
- ironpython
- 사무자동화
- 파이썬 #업무자동화 #python
- pyautogui
- YOLOv5
- pythonnet
- Google API
- 업무자동화
- Text-to-Speech
- pypdf2
- processstart
- Text To Speech
- computervision
- DeepLearning
- 사무자동화 #Selenium
- yolo
- YOLOv7
- Today
- Total
목록Mobile/iOS (39)
Doarchive
맥 OS 에서 파이썬 삭제하는 방법 Python 2.7하고 Python 3.8은 지우지 말것 ( 2.7 맥 기본설치 / 3.8 xcode 기본설치 ) 2021년 3월 기준임 1. Mac applications 탭에서 파이썬 삭제 2. Mac applications 탭에서 삭제 할수 없는 파이썬의 경우 2-1. 설치된 파이썬 버전 전체 확인 % python3 -v 파이썬 버전별 경로를 파악할 것 2-2 Python.framework 검색 2-3 버전별 파이썬이 설치된 위치에 가서 (터미널 창에서 확인 한 것 ) open /usr/local/bin 파이썬 관련 항목들을 지울것
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 uint8_t *receivecData = (uint8_t*)[data bytes]; NSString *receivecStr; const unsigned char *dbytes = [data bytes]; NSMutableString *hexStr = [NSMutableString stringWithCapacity:[data length]*2]; int i; for (i = 0; i cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 uint8_t *receivecData = (uint8_t*)[data bytes]; NSString *receivecStr; const unsigned char *dbytes = [data bytes]; NSMutableString *hexStr = [NSMutableString stringWithCapacity:[data length]*2]; int i; for (i = 0; i cs
Dynamic framework 동시에 프로그램에서 동일한 코드사본을 고유 동적으로 연결되어있어 개별 빌드를 다시하지 않아도 업데이트된 프레임워크 사용 (장점) 1. Framework 내에 이미지나 뷰같은 리소스 파일 혹은 Bundle을 포함 할수 있다. 2. Static에 framework 비해 메모리를 덜 차지한다 3. 빌드 속도가 빠르다 (단점) 1. Static framework에 비해 런타임 속도가 느림 Static framework 어플리케이션 코드내 Head 영역에 상주 장점) 1. 런타임 속도가 빠르다. 2. 참조형태가 아니라 직접 연결되기때문에 안정적이다. 단점) 1. Dyanamic framework 에 비해 메모리를 더 차지한다 Target ->General-> Frameworks,L..
1 2 3 4 5 6 7 8 9 UIAlertView *currentAlertView; [currentAlertView dismissWithClickedButtonIndex:0 animated:YES]; currentAlertView = [[UIAlertView alloc] initWithTitle:@"" message:@"Device must be rebooted due to roading error." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil]; [currentAlertView show]; cs
데이터 베이스 저장시에 발생하는 에러 메세지 [Firebase/Database][I-RDB038012] setValue: or removeValue: at /users failed: permission_denied 1. Set Runtime Database 2. modify Rule { "rules": { ".read": true, ".write": true } }
NSMutableString 을 사용할것 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NSMutableString *wholeRawDate = [[NSMutableString alloc]init]; unsigned char *bytePtr = (unsigned char *)[data bytes]; for(int i=0; iColored by Color Scripter cs