RyanAuger

Results 15 issues of RyanAuger

Please fill out the form below before submitting, thank you! - [ ] Bug exists Release Version 1.1.1 (Java Repository Master Branch) - [ ] Bug exists in Snapshot Version...

Whenever I encounter an error in the paho MQTT client, I attempt a reconnect 60 seconds later: ``` override fun connectionLost(cause: Throwable) { LOG.e("Connection Lost :: $cause") cleanupClient() retry {...

Is it possible to use the Joi "when" operator? In Joi, one can do: ` Joi .string() .valid.apply(this, days) .required() .when("action", { is: "DELETE", then: Joi.string().optional(), otherwise: Joi.string().required() }) `...

enhancement
help wanted

I'm creating a selector like so: ``` activity?.selector("TITLE" , mList.map { "SOME TEXT" }) { _, i -> // DO SOMETHING } ``` [The docs don't mention styling at all](https://github.com/Kotlin/anko/wiki/Anko-Commons-%E2%80%93-Dialogs)....

Hi, I'm not sure if I'm missing something here, but I is there any API documentation? For example, set the connection interval or MTU? (https://stackoverflow.com/questions/18240978/ble-peripheral-throughput-limit) The only documentation that I...

Is there any way to run a callback when the popup is dismissed via a click outside, or to prevent dismissal via click outside? I tried: escToClose:false but this does...

Markdown-it supports superscripts and subscripts but it doesn't look like MarkdownView does - can we somehow get them working using this library or is it totally not supported? Thanks!

To replicate, simply try this project here: https://github.com/rajeejones/PDFSignature.git and change the Podfile to use 2.1.2 v.s. 2.1.1. In 2.1.2, the bottom 90% of the image is clipped, but if you...

Hi all, In the scenario that a node attempts to connect with a bad ssl_dist key/cert pair, the connect will fail. Restarting the same node with the a correct pair...

bug