Malcolm Hall

Results 133 comments of Malcolm Hall

Also tried ``` javascript Ground.addListener('resumed', function() { console.log("resumed"); }); ``` ...to no avail. Please could you update the readme with event examples cause really shooting in the dark here :-S

Dingo uses its own router so I would prefer instead to keep Infy's great design of using the built-in router and addition of the api_routes file via a route group....

Thanks another thing I forgot to mention is a limitation with the iCloud Core Data is there is no option to sync partially, its all or nothing. I was wondering...

Apple's News app works with a public database with a sort-of-sync. How they achieve it is the articles are given an integer property "order", e.g. 1483365231601, the client queries using...

Default to opposite is maybe what you want. And a push switch that breaks circuit.

This is what diffable data sources are designed to solve. When the view goes off screen the changes are ignored and when it returns to the window (willAppear) a snapshot...

Here is the new project downloads page: https://github.com/w0lfschild/app_updates/tree/master/mySIMBL

AppKit bindings take a property param so you could do that, e.g. the value property in this case: ``` [self.textField bind: NSValueBinding toObject:self.objectController withKeyPath:@"selection.firstName" options:nil]; ``` `NSValueBinding` is just a...

An unbind method requested in https://github.com/manishkkatoch/SimpleTwoWayBindingIOS/issues/4 might solve this.

I had the same problem, inconsistent use of \Chrisbjr probably due to classes being in new namespaces in Laravel v5 vs v4.