Daniel Compton
Daniel Compton
How should reader conditionals be formatted? Should the conditional itself be outdented so that the code flows better, or just treat it as a regular form?
Should there be a space between `#_` and the next form? What should happen with multiple `#_`s? I'm often pretty sloppy with `#_` when I'm writing them as they are...
UTF-8 is the dominant encoding for source code, though by no means is it the only one. One decision that the tool/spec would need to make is whether to support...
For backwards/forwards compatibility between implementations, adds a trailing newline to the string to match the behaviour of the sun.misc.BASE64Decoder. This effectively sets the minimum JVM to Java 8, at least...
On Java 11 and [12-ea](https://travis-ci.org/clj-commons/useful/jobs/464220022#L487): ``` java.lang.ClassNotFoundException: sun.misc.BASE64Decoder, compiling:(flatland/useful/compress.clj:1:1) ``` `java.util.Base64` would be good, but it's only available on Java 8 onwards. Probably still the best choice, but would mean...
Previously this would return nil if three or more arguments were provided and all were nil. The current behaviour looks like a bug, but changing this could potentially be breaking...
We have a hamburger menu which takes over the whole page on mobile. Each of the links in the menu is just a regular `` with a path another route....
I'm not sure if I'm not understanding it correctly but it seems like there is a bug in https://github.com/pedestal/pedestal-app/blob/master/app/src/io/pedestal/app/diff.clj#L42 I run ``` (model-diff-inform {:a 1} {:a 1 :b 2}) ;;[[[:b]...
Amazon is planning to deprecate path-style addressing for S3, and strongly encourages the use of virtual-host based addressing. In [Amazon S3 Path Deprecation Plan – The Rest of the Story](https://aws.amazon.com/blogs/aws/amazon-s3-path-deprecation-plan-the-rest-of-the-story/),...
Is it possible to retry errors using an exponential backoff with this library? I couldn't see a place to tell re-frame-http-fx-2 to wait n ms before reissuing the query, but...