일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LifeCycle
- Xcode
- Adapter
- state
- 문법
- network
- flutter
- isolate
- AppleDeveloper
- philipshue
- WWDC24
- weatherkit
- uikit
- EventLoop
- OpenAI
- dart
- swift
- GIT
- factory
- designpattern
- WiFi
- Architecture
- SwiftUI
- builder
- singleton
- dartz
- iot
- SampleApp
- tuist
- concurrency
- Today
- Total
목록Flutter (7)
Jaebi의 Binary는 호남선
목차Internet AccessInternet Access가 가능한지 확인 필요``connectivity_plus` 패키지를 사용하려 했으나…. 기기가 모바일 데이터에서 실행되는지, Wifi에서 실행되는지 확인하는데는 유용실제 인터넷 엑세스를 확인하는데는 좋지 않음패키지 설명: `Note that on Android, this does not guarantee connection to Internet. For instance, the app might have WiFi access but it might be a VPN or a hotel WiFi with no Internet access.`해결 (임시):Sample address로 socket을 열어 실제 연결 상태 확인….좋은 해결책인가? 아 몰랑 ..
목차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..