일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- yolo
- pyautogui
- 사무자동화 #Selenium
- Text To Speech
- pypdf2
- computervision
- 사무자동화
- 파이썬 #업무자동화 #python
- DeepLearning
- objectdetection
- pythonnet
- pdf merge
- YOLOv5
- processstart
- Text-to-Speech
- google cloud
- ironpython
- Google API
- 업무자동화
- YOLOv7
- Today
- Total
목록Mobile (50)
Doarchive
Swish Scan : PDF Scanner Scan Master in your pocket , Transform your smartphone into a powerful scanner with Swish Scan! Easy Scan! Text OCR! Share! https://apple.co/44RgxLc Swish Scan : PDF Scanner Swish Scan transforms camera shots into high-quality PDFs. Gone are the days of bulky scanners—your smartphone is all you need. Key Features: * Instant PDF: Use your camera to capture documents and..
1. .gitignore 파일생성 2 .gitignore 안에 들어갈 내용 생성 https://www.toptal.com/developers/gitignore gitignore.io Create useful .gitignore files for your project www.toptal.com 3.Realm 용 gitignore https://github.com/realm/realm-swift/blob/master/.gitignore
Protocol Buddy : OCR, TCP, UDP - Scan Text & Send via TCP, UDP https://apple.co/3qtuXmm Protocol Buddy : OCR, TCP, UDP Protocol Buddy: Simplifying all things Networking! * Effortless Networking: Quick setup and connection of TCP and UDP servers * Advanced Scanning Technology: Quick data acquisition through text and barcode scanning * Integrated Data Sharing: Instant sha apps.apple.com https://..
안드로이드 스튜디오 에 삼성 갤럭시 디바이스 에뮬레이터 추가하기 1. 삼성 개발자 사이트 접속 https://developer.samsung.com/ Samsung Developers The world runs on you. developer.samsung.com 2. Support - Galaxy Emulator skin 3. 필요한 에듈레이터 스킨 다운로드 3. 다운로드 받은 애뮬레이터 스틴의 압축을 풀어줌 나는 원래 사용하던 에뮬레이터 스킨이 있는곳에 옮겨줬다 맥 기준 경로 : /Users/user-name/Library/Android/sdk/skins 4. 안드로이드 스튜디오 실행 - Device Manager - Create Device 5. New Hardware Device 선택 6. 디바이..
코드 서명(Code Signing) 이란. 애플은 iOS 개발자 프로그램 라이센스 계약서를 통해 개발자는 애플의 승인을 받은 앱만 iOS 장치에서 판매하거나 배포할 수 있게한다 이 과정에서 꼭 필요한게 코드 사이닝 과정으로 이는 iOS와 macOS 앱의 무결성과 신뢰성을 보장하는 작업이다 용어 정리 키체인 (Keychain): 키체인은 애플의 보안 저장소로, 암호, 인증서, 암호화 키 등을 안전하게 저장하는 데 사용됨. 인증서 (Certificate): 인증서는 개발자의 신원을 증명하고, 앱에 서명하는 데 사용됨. 프로비저닝 프로필 (Provisioning Profile): 프로비저닝 프로필은 앱이 설치되고 실행될 수 있도록 하는 파일로, 개발자 계정, 앱 ID, 인증서, 기기 정보 등을 포함 코드 서명..
Build failed due to use of deprecated Android v1 embedding. Exited (1) 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. Android v1 embedding 이 이상 권장되지 않는 기능으로 , 최신 버전의 Android 플랫폼에서는 지원되지 않아 발생 하는 에러임 에러 해결 방법 1. Flutter Project 의 AndroidManifest.xml android:name="io.flutter.app.My..
회사에 있는 코클린 프로젝트를 빌드 해보려니 뜨는 수 많은 deprecated method 들.... 'getDefaultDisplay()' was deprecated in API level 30. 'getRealMetrics()' was deprecated in API level 31. getSize() was deprecated in API level 30. Deprecated "windowManager.defaultDisplay.getMetrics(displayMetrics)" display?.getSize(size) getMetrics was deprecated 화면 사이즈 정보를 가져오는 메서드 수정 private fun screenValue() { val displayMetrics = Disp..
에러 발생 원인 CocoaPods와 Podfile.lock 파일이 동기화되지 않았을 때 발생 Podfile.lock 파일은 CocoaPods가 설치한 라이브러리의 버전 및 종속성 정보를 포함하며, CocoaPods는 이 파일을 사용하여 정확한 버전의 라이브러리를 설치하는데 , Podfile.lock 파일과 현재 CocoaPods 설치가 일치하지 않아 빌드가 안됨 해결방법 1. 터미널에서 실행하고자 하는 프로젝트의 xcodåeproj 가 있는 경로까지 들어간다 % cd TCP-UDP_Demo 2. 아래 명령어로 Podfile.lock 을 삭제한다 % rm -rf Podfile.lock 3. pod 을 다시 설치 해준다. %rm -rf Pods 을 사용하지 않아도 새로 업데이트됨 % pod install ..
Mac 에 Flutter 설치하기 1. brew 사용해서 flutter 설치하기 % brew install --cask flutter 2. Flutter 를 사용할수 있는 환경인지 확인하기 % flutter doctor 3. 에러 확인하기 Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.10.5, on macOS 13.4 22F66 darwin-arm64, locale ko-KR) [!] Android toolchain - develop for Android devices (Android SDK version 34.0.0) ✗ cmdline-tools component is missing ✗..