본문 바로가기

Programming

(38)
[ML] Why do I want to study Machine Learning 근 반년이 넘게 위고레고 팀에 소속되어서 flutter 개발자로 개발을 공부하고 진행해 왔었다. Flutter가 강력한 크로스 플랫폼임에는 틀림이 없고, 나아가 웹까지 건드리고 있으니 정말 앱과 웹이 하나의 코드로 실행이 될 수 있따는 것은 아주 먼 이야기는 아닐 것이다. 그럼에도 나는 머신러닝과 같이 최근의 기술들을 공부하고 싶었다. 그래서 모두를 위한 딥러닝 시즌2 TensorFlow과정을 남은 2월동안 따라가면서 공부하고자 한다. 또한 이제는 블로그를 단순 메모장 형식이 아닌 어느정도 정리를 다시 진행하고자 한다. 바쁜거 안다. 그러나 크리에이터 처럼 다른이를 위한 글도 작성하자. 각설하고 앞으로의 게시글은 강의의 간단한 요약과 진행과정을 적어두고자 한다. 강의 링크는 아래와 같다. https://..
[flutter] ios 14 이후 info.plist 추가 [VERBOSE-2:FlutterObservatoryPublisher.mm(101)] Failed to register observatory port with mDNS with error -65555. [VERBOSE-2:FlutterObservatoryPublisher.mm(103)] On iOS 14+, local network broadcast in apps need to be declared in the app's Info.plist. Debug and profile Flutter apps and modules host VM services on the local network to support debugging features such as hot reload and DevTools. To m..
[flutter] agora simulator 연동 문제 Launching lib/main.dart on iPhone 13 in debug mode... Updating project for Xcode compatibility. Upgrading project.pbxproj Upgrading Runner.xcscheme Xcode build done. 6.2s Failed to build iOS app Error output from Xcode build: ↳ ** BUILD FAILED ** Xcode's output: ↳ ld: building for iOS Simulator, but linking in dylib built for iOS, file '/Users~~~~~~~~ (디렉토리명 삭제) for architecture arm64 clang: err..
[flutter] Invalid plugin specification: EXCLUDED_ARCHS[sdk=iphonesimulator*]=arm64 i386 오류 발생 Invalid plugin specification: EXCLUDED_ARCHS[sdk=iphonesimulator*]=arm64 i386 Invalid plugin specification: DART_DEFINES=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== [!] Invalid `Podfile` file: no implicit conversion of nil into String. # from /Users/WoonseonRyu/Downloads/flutter_localization-main/ios/Podfile:57 # ------------------------------------------- # unless File.exist?(copied_framework_path..
[flutter] 구글 드라이브를 이용하여 이미지 호스팅 방법 flutter에서 이미지를 동그라미 가져오는 방법은 다음과 같다. Container( width: (가로 사이즈) height: (세로 사이즈) decoration: new BoxDecoration( shape: BoxShape.circle, //원으로 전환 image: new DecorationImage( fit: BoxFit.fill, image: new NetworkImage( "호스팅 주소")))), 그리고 이미지 호스팅 하는 방법은 간단하다. 1. 구글 드라이브에 이미지를 올려서 모든이에게 공개를 해둔다. 공개 링크로 들어가서 위에 ...을 클릭하여서 항목삽입을 클릭 클릭까지 하면 이런 것이 뜬다. 여기서 https://drive.google.com/file/d/{여기에 작성된 코드}/previ..
[flutter] icloud에서 Simulator 빌드시 오류사항 아무런 문제가 없었는데 이런 오류가 뜰 경우가 있다. Launching lib/main.dart on iPhone 12 Pro in debug mode... lib/main.dart:1 Xcode build done. 8.6s Failed to build iOS app Error output from Xcode build: ↳ 2021-08-24 11:08:18.308 xcodebuild[2863:34379] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/DVTiOSFrameworks/DVTiOSFrameworks-17705/DTDeviceKitBase/DTDKRemoteDeviceData.m:371 Details: (null) devi..
[flutter] state management - GetX GetX는 Provider를 이를 새로운 State management이다. Provider도 Bloc에 비해선 편하다고 한다. GetX는 이번에 처음 사용해 보았는데도 편함이 느껴졌다. 대부분에 flutter 관련 문서는 영어로 되어 있는데 GetX는 한국어 공식 문서도 있다. https://github.com/jonataslaw/getx/blob/master/README.ko-kr.md jonataslaw/getx Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with Get. - jonataslaw/getx github.com void main() => ru..
[flutter] State mangement : Provider 보호되어 있는 글입니다.