본문 바로가기

전체 글

(36)
FireStore에 JSON 파일 import하기(python) 출시를 위한 앱 개발 도중 FireStore에 JSON 파일을 import할 방법이 없어서 진짜 하나하나 다 쳐야하나 생각했다.. 진짜 만들고 싶은 앱이라 데이터도 이미 다 수동으로 만들었는데 진짜 눈물이 앞을 가리던 중 ChatGPT에게 물어보니 Firebase Console에서 가능하다는데, 눈을 씻고 찾아봐도 되지 않았다. 구글링 끝에, https://www.otcollect.com/collection/firebase/page/dAx8bQ6J/how-to-upload-a-json-file-to-firebase-firestore-using-python How to upload a JSON file to Firebase Firestore Using Python We use a Python Class h..
Awesome Korean Dictionary 해커톤 수상
Swift Async - Await, Combine 원만한 합의 부탁드리겠습니다.(2) 저번 글을 쓰고 나서 그래도 Combine이 뭔진 알아야겠다 싶었습니다. 그래서 WWDC2019의 Introducing Combine을 봤습니다. https://developer.apple.com/videos/play/wwdc2019/722/ 세 줄 요약 : 1. 컴바인은 비동기 프로그래밍을 돕는 프레임워크다 2. 시간에 따른 값을 처리하기 위한 통일된 선언적인 API이다 (that's what Combine is, a unified declarative API for processing values over time.) 3. 타입 세이프기 때문에 런타임 대신에 컴파일에서 에러를 잡을 수 있으며, 컴포지션 우선적이기 때문에 핵심개념이 간단하고 이해하기 쉽다. (Combine is also type saf..
Swift Async - Await, Combine 원만한 합의 부탁드리겠습니다.(1) 안녕하세요, Achoo! 입니다. 오늘은 Async - Await로 먼저 비동기처리를 접한 사람으로서, 근래에 코딩하고, 공부하며 느낀 Combine에 대한 고찰들을 정리해보려 합니다. 따라서 먼저 Async - Await 이야기를 해봅시다. Async - Await는 2021년 9월 Swift 5.5에서 등장했습니다. https://www.hackingwithswift.com/articles/233/whats-new-in-swift-5-5 What's new in Swift 5.5? Async/await, actors, throwing properties, and more! www.hackingwithswift.com 제가 본격적으로 SwiftUI를 이용하여 개발을 시작했을 땐, 이미 Async - A..