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
| extension UIBezierPath { | |
| /// https://github.com/jnfisher/ios-curve-interpolation/blob/master/Curve%20Interpolation/UIBezierPath%2BInterpolation.m | |
| func catmullRomInterpolate(with points: [CGPoint], alpha: CGFloat = 0.3) { | |
| guard points.count >= 4 else { return self.hermiteInterpolate(with: points, alpha: alpha) } | |
| let startIndex = 1 | |
| let endIndex = points.count - 2 | |
| for currentIndex in 1..<endIndex { | |
| let prevIndex = currentIndex - 1 |
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
| import Foundation | |
| public enum Swinject { | |
| public final class Container { | |
| } | |
| } | |
| protocol Assembly { | |
| func assemble(to container: Swinject.Container) | |
| } |
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
| import io | |
| import requests | |
| import subprocess | |
| import zipfile | |
| FIREBASE_VERSION = '6.29.0' | |
| def main(): | |
| json_urls = [ | |
| "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json", |
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
| # https://gist.github.com/devxoul/00b5b4fac4243075656dc79912e256d6 | |
| git rebase --exec 'git commit --amend -C HEAD --date="$(date -R)" && sleep 1.05' $1 |
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
| final class NSStatusBarStub: NSStatusBar { | |
| override func statusItem(withLength length: CGFloat) -> NSStatusItem { | |
| let alloc = NSStatusItem.perform(NSSelectorFromString("alloc"))!.takeRetainedValue() as! NSStatusItem | |
| let selector = NSSelectorFromString("_initInStatusBar:withLength:withPriority:hidden:") | |
| let imp = alloc.method(for: selector) | |
| typealias ObjcInitBlock = @convention(c) (NSStatusItem, Selector, NSStatusBar, CGFloat, Int, Bool) -> NSStatusItem | |
| let initializer = unsafeBitCast(imp, to: ObjcInitBlock.self) | |
| let statusItem = initializer(alloc, selector, self, length, 1, true) // it won't work the last parameter("hidden") is set to `false` |
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
| protocol ContainerProtocol { | |
| associatedtype Service | |
| associatedtype Nested: ContainerProtocol | |
| var service: Service { get } | |
| var nestedContainer: () -> Nested { get } | |
| } | |
| struct TypedContainer<Service, Nested: ContainerProtocol>: ContainerProtocol { | |
| let service: Service |
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
| let source = Observable<(Int, Int)>.from([ | |
| (0, 1), | |
| (2, 3), | |
| (4, 5), | |
| ]) | |
| // Doesn't work as expected | |
| // A -> (0, 1) | |
| source | |
| .distinctUntilChanged(==) |
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
| repositoryMap: | |
| - FirebaseAnalyticsBinary: | |
| - name: FIRAnalyticsConnector | |
| - name: Firebase | |
| - name: FirebaseAnalytics | |
| - name: FirebaseCore | |
| - name: FirebaseCoreDiagnostics | |
| - name: FirebaseInstallations | |
| - name: GoogleAppMeasurement | |
| - name: GoogleDataTransport |
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
| import UIKit | |
| import PlaygroundSupport | |
| let width: CGFloat = 200 | |
| let height: CGFloat = 100 | |
| let spacing: CGFloat = 10 | |
| let numberOfViews: Int = 5 | |
| let canvas = UIView(frame: CGRect( | |
| x: 0, |
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
| // TODO: define type 'User' | |
| func testCase1() { | |
| let json: [String: Any] = [ | |
| "id": 1, | |
| "usermname": "devxoul", | |
| "email": "devxoul@gmail.com", | |
| ] | |
| let user = User(json: json) |