Matt Langston
Matt Langston
What are your thoughts on a `find_by_id` method that would mimic ActiveRecord in that it wouldn't throw an exception if the record is not found?
This causes a weird state when using `CMD + T` to search since both the top item and the item where the mouse was before initiation of the search are...
SwipeRefreshLayout is the official "pull to refresh" layout. I have a ListView that is inside of a SwipeRefreshLayout, and I am using SwipeLayout as my list item rows. Is there...
It would be great if we could specify a sort, rather than automatically having the list of cards be reversed. This would be particularly helpful when the data backing the...
I noticed in the [manual Android instructions](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin#android) that you can use the `interactively` API without needing to request calendar permissions (assumably because you are offloading the calendar creation to a...
I see [here](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin/blob/master/src/android/nl/xservices/plugins/Calendar.java#L366) that the `allday` option is checked before deciding to dynamically compute it. But if I check the [analogous iOS code](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin/blob/master/src/ios/Calendar.m#L676), it does not seem to make the...
It would be nice to have a live template for a component using flow, propTypes, and defaultProps. See [this skeleton on Flow's site](https://flowtype.org/docs/react.html#defining-components-as-reactcomponent-subclasses). Maybe something like: ```jsx // @flow import...
In #1453 we added support for sending and receiving the auth token as a cookie. We're currently working on a de-angularized version of [ng-token-auth](https://github.com/lynndylanhurley/ng-token-auth) with cookie support, which means we...
Noticed while smoke testing a de-angularized, cookie-supporting version of ng-token-auth, when I was setting the `expires` config to a small value to test session expiration. Basically, the `expires` config gets...
I think it would be super helpful to have an ESLint rule that checks for `_.chain` usage. It breaks the mold of the other methods / rules in that it...