Max Goldstein
Max Goldstein
It seems that the implementation of fuzzers and especially shrinkers is constantly in flux. But, we also appear to be designing blind. I am asking for **real-world** examples of when...
After reading #100, I went to add docs to `Fuzz.custom` saying that the shrinker will not know of any restrictions placed on the generator. But then I found this example:...
The [numeric validator](https://github.com/swagger-api/swagger-inflector/blob/master/src/main/java/io/swagger/inflector/validators/NumericValidator.java) appears to implement min and max, with exclusive variations, but does not enforce the [`multipleOf` property](http://json-schema.org/latest/json-schema-validation.html#rfc.section.5.1).
The [discriminator](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#fixed-fields-13) is defined by version 2.0 of the spec as a way to achieve [polymorphism](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#composition-and-inheritance-polymorphism). Payload validation should ensure that when a discriminator property is specified, it examines that...
If I try to import a union tag as if it was a type, I'm told the module doesn't expose it. SSCCE. Option.elm: ```elm module Option exposing (Option(Some, None)) type...
Not an error, but a lack of one. ``` elm module Definitions (Action) where type Action = Increment | Decrement ``` In another file, ``` elm import Definitions exposing (Action(..))...
Here are some ideas I have that are currently too speculative for 3.0.0. `expected: True But it was: False` is a very unhelpful error message. Extracting common boolean operations into...
I'm referring to [this page](http://jackschaedler.github.io/circles-sines-signals/dft_frequency.html), figure 3, which seems to be working as intended but I found to be misleading. At first I thought the samples better approximated an underlying...
Hey, great demo, just thought I'd point something out. If two circles are in the same ray, the one closer to the camera should be shown on the film plane...
Bugfixes, improvements, and documentation for bullet charts. Changes are broken out into multiple commits with detailed summaries. You can see the changes at work in [this bl.ocks](http://bl.ocks.org/mgold/0f1d3667b74ea5616d9f); be sure to...