Josh Heidenreich

Results 15 comments of Josh Heidenreich

The language compiler could compile each language class with a separate class name (which includes the language code) and then the main `L` class could use magic methods to delegate...

Yep it's not possible, without either (a) changing the api or (b) using runkit.

Also works with: - 2357:0115 - TP-Link Archer T4U ver.3 (AC1300) - Debian 11 - Kernel 5.10.0-11 - Arch: amd64

Also same device but Debian 10, kernel 4.19.0-18, amd64

Our work made a reimplementation of this mock sns service too. Has a few other features such as limited support for subscription filtering, and a debug interface to see the...

Does not appear to work on Android Studio 3.5.3 either. Android Studio 3.5.3 Build #AI-191.8026.42.35.6010548, built on November 15, 2019 JRE: 1.8.0_202-release-1483-b49-5587405 amd64 JVM: OpenJDK 64-Bit Server VM by JetBrains...

If that ends up being the case then I'd be interested in some pointers on plugin development to try and resolve this myself as I've got production apps which rely...

Yeah, it appears that when using a TextEditingController, the value is often silently converted from a null into an empty string, so as a result this required check never hits,...

Another workaround is an extension method: ``` extension CustomValidationBuilder on ValidationBuilder { notEmpty() => add((value) { return value.isEmpty ? 'This field is required' : null; }); } ```

Depends on secret length and number of threads available. I've been doing some testing on AWS with a c5.24xlarge which has 96 cpus (although only 62 get used) and my...