- Introduction to Functional Programming Johannes Weiß - http://kcy.me/1ngiv
- ReactiveCocoa at MobiDevDay Andrew Sardone - http://kcy.me/1nhl3
- The Future Of ReactiveCocoa Justin Spahr-Summers - http://kcy.me/1nhs7
- Enemy of the State Justin Spahr-Summers - http://kcy.me/1njzs
- WWDC 2014 Session 229 - Advanced iOS Application Architecture and Patterns Andy Matuschak - http://kcy.me/1pyva
- Functioning as a Functionalist Andy Matuschak - http://kcy.me/22o45
- Controlling Complexity in Swift Andy Matuschak - http://kcy.me/23sc9
- Functional and reactive programming with Swift Ash Furrow -
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// UIApplicationMain accepts Swift.String in Swift apps; a C forward declaration is needed | |
struct SwiftString { | |
uint8_t reserved[16]; | |
}; | |
typedef struct SwiftString SwiftString; | |
int (*orig_UIApplicationMain_objc)(int argc, char *argv[], NSString *_, NSString *delegateClassName) = nil; | |
int (*orig_UIApplicationMain_swift)(int argc, char *argv[], SwiftString _, SwiftString delegateClassName) = nil; | |
NSString *(*FoundationBridgeSwiftStringToObjC)(SwiftString str) = nil; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# React Native Android | |
maven_aar( | |
name = "com_facebook_react_native", | |
artifact = "com.facebook.react:react-native:0.55.4", | |
settings = "//build:settings.xml", | |
deps = [ | |
"@androidsdk//com.android.support:appcompat-v7-25.0.0", | |
"@com_facebook_fbui_textlayoutbuilder//aar", | |
"@com_facebook_fresco_fresco//aar", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Plugin.swift | |
// | |
// | |
import RIBs | |
import RxSwift | |
// MARK: - Plugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ObservableBuffer.swift | |
// | |
// Created by Daniel Tartaglia | |
// Copyright © 2017 Daniel Tartaglia. MIT License. | |
extension Observable { | |
/// collects elements from the source sequence until the boundary sequence fires. Then it emits the elements as an array and begins collecting again. | |
func buffer<U>(_ boundary: Observable<U>) -> Observable<[E]> { | |
return Observable<[E]>.create { observer in |