Results 8 comments of Brent Watson

@luxnova ya, we need to give it some love soon.

@luxnova :+1: Just PR if you have something that you think fits.

I encountered the same issue and this seems to have resolved it for me: ```python from urllib3.util.retry import Retry from requests.adapters import HTTPAdapter ... retries = Retry(connect=5, read=3, redirect=3) http_session...

reverseOnRepeat only makes sense with `repeat=true`. If you want to play an animation once in reverse try setting `speed=-1` then back to `speed=1` to play if forward again. On Thu,...

@ZacSweers yes, I was hoping to get to it this week, but wasn't able to. Next week I'm going to prep for DroidCon NY talk, and then AFK for a...

Another elegant solution for nullable lists would be: ``` kotlin for (item in list.orEmpty()) { ... } ```

@sahal2080 ACRA is a great service. It's a fantastic crash reporting tool. Foam does a bit more than ACRA in that it tries to make it easy to setup not...

Only errors (`Log.e`) will go to any setup logging providers. So you could call `Log.e` from your own `Papertrail.log` (or the like) for clarity. If you have other error logs...