Skip to content
View wotjd's full-sized avatar
  • Seoul, South Korea

Highlights

  • Pro
Block or Report

Block or report wotjd

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. IsolatedStateReactor IsolatedStateReactor Public

    A simple isolated state implementation for ReactorKit

    Swift 3

  2. Publisher+makeHot.swift Publisher+makeHot.swift
    1
    import Combine
    2
    
    
    3
    extension Publisher {
    4
      func makeHot() -> AnyPublisher<Output, Failure> {
    5
        let subject = PassthroughSubject<Void, Never>()
  3. Combine+ShareWhileConnected.swift Combine+ShareWhileConnected.swift
    1
    import Foundation
    2
    import Combine
    3
    
    
    4
    // shareWhileConnected using Combine Proof of Concept
    5
    extension Publisher {
  4. concatEager.swift concatEager.swift
    1
    import RxSwift
    2
    
    
    3
    extension ObservableType {
    4
      public static func concatEager<S: Sequence>(_ sequence: S) -> Observable<Self.Element>
    5
        where S.Element == Observable<Self.Element> {
  5. DynamicMemberLookupable.swift DynamicMemberLookupable.swift
    1
    import RxSwift
    2
    import RxCocoa
    3
    
    
    4
    @dynamicMemberLookup
    5
    protocol DynamicMemberLookupableObservableType: AssociateObservable {
  6. Present UIKit based sheet as simple ... Present UIKit based sheet as simple as SwiftUI
    1
    import SwiftUI
    2
    
    
    3
    struct SampleView: View {
    4
      @State presentsSheet = false
    5