Back to the front page

Sharing distribution certificate. automat.

One thing at a time Importing and sharing iOS/macOS certificates and keys required for AppStore distribution of application can be pain 🔥 as we know it. with a little command line, I can help myself a little bit. Here, I'm building command line shell script that will load…

Documenting Swift protocol

In Swift, I can write documentation at a protocol level now. There is a kick-ass feature added recently to Xcode 8 (beta 4). If I add documentation of function at the protocol level, it's available at the level of implementation. Look, I wrote documentation to Task.run(…

Queues are not bound to any specific thread

Main Queue IS bound to Main Thread. Main Thread IS NOT bound to Main Queue. That's why in general: Main Queue Thread != Main Thread…

Status of Portable Swift code

Portable Swift [http://swift.org] source code is so damn hard to do. Main problem is that OSX and Linux Swift is using different Foundation codebase. Linux is using SwiftFoundation [https://github.com/apple/swift-corelibs-foundation] and OSX is using Foundation [https://developer.apple.com/library/mac/documentation/Cocoa/…

CloudKit Security model

CloudKit Security Roles are barely documented, ye it's very important aspect of this cloud solution. This post help you to understand how it works.…