Skip to content

Instantly share code, notes, and snippets.

@siempay
siempay / Data+GetSize.swift
Created September 23, 2020 09:39
Swift 5: Get Binary Data size by Kb, Mb etc ...
extension Data {
var bytes: Int64 {
.init(self.count)
}
public var kilobytes: Double {
return Double(bytes) / 1_024
}
@pilgwon
pilgwon / TCA_README_KR.md
Last active October 11, 2024 08:15
TCA README in Korean

The Composable Architecture

The Composable Architecture(TCA)는 일관되고 이해할 수 있는 방식으로 어플리케이션을 만들기 위해 탄생한 라이브러리입니다. 합성(Composition), 테스팅(Testing) 그리고 인체 공학(Ergonomics)을 염두에 둔 TCA는 SwiftUI, UIKit을 지원하며 모든 애플 플랫폼(iOS, macOS, tvOS, watchOS)에서 사용 가능합니다.