일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- factory
- Xcode
- dart
- flutter
- Architecture
- SwiftUI
- EventLoop
- concurrency
- swift
- uikit
- dartz
- LifeCycle
- network
- iot
- designpattern
- WiFi
- singleton
- SampleApp
- weatherkit
- GIT
- tuist
- builder
- WWDC24
- isolate
- state
- Adapter
- 문법
- philipshue
- AppleDeveloper
- OpenAI
- Today
- Total
목록flutter (14)
Jaebi의 Binary는 호남선
목차https://pub.dev/packages/dartz함수형 프로그래밍 기능 제공Naive Approach:class Response{ Failure? failure; Person? person; bool get hasError => failure!=null; Response(dynamic response){ if(response is Failure) this.failure = response; else this.person = response; }} Response res = Response(failedReponse); res.person = validResponse; //now 'res' has both person and failure발생하는 문제: Resp..
목차https://platform.openai.com/docs/introductionParameters`Temperature` / `Top P`: 결과값이 얼마나 랜덤 한지 설정 자동완성 (Completion)에 용이0이랑 가까워 질수록 확률이 높은 단어를 선택, 1으로 갈수록 “창의적“이게 됨예시: `My favorite animal is`Temperature = 0My favorite animal is a dogMy favorite animal is a dogMy favorite animal is a dog10번 넣어도 a dog 라고 나옴, a dog 가 제일 높은 확률Temperature = 1.0My favorite animal is tigerMy favorite animal is the moo..
목차Architecture Reference Githubhttps://github.com/SinaSys/flutter_go_rest_app/tree/master/%236%20-%20Clean%20Architecture%20Version%20(Getx)/lib/features/todo/data
목차App Crashes after opening system settinghttps://github.com/Baseflow/flutter-permission-handler/issues/509https://github.com/Baseflow/flutter-permission-handler/issues/166FutureBuilder called multiple timeshttps://medium.com/flutterworld/why-future-builder-called-multiple-times-9efeeaf38ba2https://stackoverflow.com/questions/55738094/how-to-fix-futurebuilder-open-multiple-times-errorFailed to r..