Sam Stephens

Results 88 comments of Sam Stephens

> So rewrite and proxy every single URL, then? I'm not sure what you mean by this sorry. I am suggesting that as these links take you to URLs on...

According to https://redis.com/lp/hiredis/#using-ssl-and-hiredis > hiredis does not support SSL connections natively. For an added security measure, you can secure the connection using [stunnel](https://redis.com/blog/stunnel-secure-redis-ssl/). So it looks like you're going to...

Another current alternative is a hacky adapter between the InputStream the current client exposes and an OutputStream. Similar to ``` public static class CopyStream extends ByteArrayOutputStream { public CopyStream() {...

The proposed solution in my duplicate issue https://github.com/aws/aws-sdk-java-v2/issues/3131 is: ``` PDFDocument outputDocument = generateDocument(); PutObjectRequest putRequest = buildS3PutRequest(); try (OutputStream outputStream = S3_CLIENT.putObjectOutputStream(putRequest)) { outputDocument.save(outputStream); outputDocument.close(); } ``` Although I'm...

@peterwoodworth any news on an actual fix for this, retries with backoff or some such as @TinoSM and @automartin5000 recommend. I've just hit this in the middle of updating an...

@grishka > Github issues are mostly for bug reports. Features that require new UI, as well as any other UI changes, are decided upon centrally and implemented in both iOS...

@grishka someone volunteered their labour for you, and you rejected it because of contribution policies you have never clarified. It is six months later, and the application is still lacking...

@grishka > This app is for new users. There are more advanced apps for more advanced users. Where is this position made clear? In comments of Github issues is not...

Thanks @grishka . As far as the rest of my comments go, it'd be appreciated if you did follow up on making it clearer this application only supports a subset...

@grishka please explain the logic here. As others say, this differs from the other applications. But this also differs from the official web application itself. It's a bad look that...