Martin Man

Results 39 comments of Martin Man

I have tried to set my custom ``NSApplicationDelegate`` using the loaded AppKit bundle trick to achieve this, but Catalyst did override/ignore my custom delegate, and it did not work. I'm...

I worked with both UserDefaults and UbiquitousKeyValueStore and they both are indeed quite the same and I have many times thought to open PR myself, so +1. The only real...

This looks like a classic case of NSUserDefaults not storing the value to the underlying storage. NSUserDefaults are persisted only when you manually call ``synchronize`` - which is not needed...

I think there should be an easier way, but I have come up with a combined solution listed below: ```swift extension Authenticatable { public static func basicAuthMiddleware(realm: String, username: String,...

@0xTim Could you perhaps elaborate with a quick snippet or a pointer to docs how this could be achieved with ErrorMiddleware? I'm new to Vapor so I do not see...

I am not familiar as to what artifacts actually get produced by the Parse SDK build, pardon my ignorance, I integrate it nowadays via subproject build, but I do have...

I have started prototyping swift package manager support for Bolts and Parse-SDK-iOS-OSX in a similar way as @drdaz. _[For new projects it may be the obvious choice to use https://github.com/parse-community/Parse-Swift,...

I have been able to re-introduce Parse SDK test files into https://github.com/mman/Parse-SDK-iOS-OSX/tree/spm and make them compile for macOS, and iOS. tvOS, and watchOS need to be done. Quick run of...

@drdaz I have flattened the tree in order to keep the `Package.swift` simple and predictable. More over, the longer I use C the more I believe that the system is...

@phimage I'm fine with WatchKit storyboards not supported, but I do not see a way how to skip/exclude them from the check. Am I missing something? Is there a way...