I hereby claim:
- I am qnoid on github.
- I am qnoid (https://keybase.io/qnoid) on keybase.
- I have a public key ASDnMYvBt96fg6Vw9BVDJpkZxLZg0PMq_k43V8xJz6EFbQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "bookResponse": { | |
| "bookId": "b7cb191fd0a62feb983be8817bc561a2", | |
| "locale": "en_US", | |
| "title": "Contacts Help", | |
| "meta": { | |
| "productVersion": "11.0", | |
| "platformOSVersion": "10.13", | |
| "icon": "https://help.apple.com/assets/59D1AABE680CE2A0420B6CBB/59D1AABF680CE2A0420B6CC2/en_US/681a028e052633e3539058b41dcdb3b9.png", | |
| "build_date": "Mon Nov 13 04:36:17 GMT 2017", |
| var APP_VERSION = '1.0.21'; | |
| ! function e(t, n, r) { | |
| function i(a, l) { | |
| if (!n[a]) { | |
| if (!t[a]) { | |
| var s = "function" == typeof require && require; | |
| if (!l && s) return s(a, !0); | |
| if (o) return o(a, !0); | |
| var c = new Error("Cannot find module '" + a + "'"); | |
| throw c.code = "MODULE_NOT_FOUND", c |
| *{box-sizing:border-box;margin:0;padding:0} | |
| html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} | |
| address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal} | |
| fieldset,iframe,img{border:0} | |
| caption,th{text-align:left} | |
| table{border-collapse:collapse;border-spacing:0} | |
| article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block} | |
| audio,canvas,progress,video{display:inline-block;vertical-align:baseline} | |
| button{background:0 0;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit} | |
| button:disabled{cursor:default} |
| // 1 | |
| let process = Process() | |
| process.launch() | |
| process.waitUntilExit() | |
| // 2. | |
| let process = Process() | |
| let queue = DispatchQueue() | |
| queue.async { |
| guard let foo = foo else { | |
| assertionFailure("This shouldn't happen") | |
| return | |
| } |
| // MARK: - guard without Optional Pattern | |
| extension LocalAuthentication { | |
| convenience init?(authenticationLevel: AuthenticationLevel?){ | |
| guard let authenticationLevel = authenticationLevel else { | |
| return nil | |
| } | |
| switch authenticationLevel { |
| struct Imager | |
| { | |
| unowned let session: Session | |
| unowned let avatar: Avatar | |
| func image(imageView: UIImageView) { | |
| let download = self.session.download(self.avatar.image) { [weak imageView = imageView] (data, response, _) in | |
| guard let _imageView = imageView else { |
| class ViewController : UIViewController | |
| { | |
| var foo = "foo" | |
| func hello() | |
| { | |
| let closure = { [foo = self.foo] in | |
| print("Hello \(foo)!") | |
| } | |
| } |
| class FooViewController: UIViewController | |
| { | |
| } | |
| func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
| let fooViewController = FooViewController() | |
| let view = self.window!.snapshotViewAfterScreenUpdates(false) | |
| let viewController = UIViewController() |