Nathan Youngman
Nathan Youngman
It would be nice to see editors and languages standardize around something like Microsoft's [Language Server Protocol](https://github.com/Microsoft/language-server-protocol). @wbond What are your thoughts on this?
Sublime Text is not here: https://tip.golang.org/doc/editors.html
fsnotify
* Where is the project currently hosted? https://github.com/fsnotify * Is the project written only in Go, or does it contain other languages (beyond scripts)? Entirely Go for https://github.com/fsnotify/fsnotify, but related...
Regarding the documented signals example, os.Kill can't be caught, it's just there for killing other processes. os.Kill is like `kill -9` which kills a process immediately syscall.SIGTERM is equivalent to...
continuing from #66 to solve #63. Provider Authentication Tokens documentation is now public. https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/APNsProviderAPI.html#//apple_ref/doc/uid/TP40008194-CH101-SW21
What's New in the Apple Push Notification Service https://developer.apple.com/videos/play/wwdc2016/724/ > Starting with a review of the HTTP/2 based provider API, you will learn about an important new feature: Token Based...
There is a new header `apns-collapse-id` to update or remove notifications. It is a string identifying the notification. Swift also has a `removeDeliveredNotifications` API for `UNUserNotificationCenter` but it's not yet...
BadCertificateEnvironment #33 #76 unknown certificate #80
Apple allows between 400 to 4000 streams. net/http2 is hard coded at 1000 streams (`maxConcurrentStreams`): https://github.com/golang/net/blob/313cf39d4ac368181bce6960ac9be9e7cee67e68/http2/transport.go#L409 (thanks to @sideshow for pointing this out) In addition to streams, multiple connections can...
This was mentioned at WWDC but is not yet mentioned in Apple's documentation. Device tokens are currently 32 bytes (64 hexadecimal digits). Will they be either 64 or 200 digits?...