Jasper Woudenberg

Results 22 issues of Jasper Woudenberg

Elm-pair will qualify all values from the exposing list except the operator, because Elm doesn't allow qualified operators. Compilation will then fail because the origin of the operator is no...

bug

First of all, thank you for your work in creating this library! I've hit a small snag: I have a newtype that is used as a capture parameter in an...

This adds a module for [yubikey-agent](https://github.com/FiloSottile/yubikey-agent), a yubikey-based ssh-agent. It's the equivalent of this nixos module: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/services/security/yubikey-agent.nix

This fuzzer will run into a Debug.crash: ```elm myFuzz : Fuzzer Int myFuzz = int |> andThen (\_ -> frequency []) ``` Error message reads: ``` This test failed because...

bug
fuzzers

Although I really like the `andThen` conceptually, in practice I run into trouble when using it more often than not (#105, ~#132~, #160). I think it's very easy to come...

fuzzers

Sometimes I'd like to include a custom equality check for a type with a library. I'm talking about a function with the signature `a -> a -> Expectation`. One might...

Resolves #160 and #161. This removes Fuzz.andThen making it a breaking change. It also fixes two points @mgold alluded to before: - the `Fuzzer` type is wrapped in a type...

major-release-blocker
fuzzers

I'm working on a so far relatively simple application that stores some sensitive data in an encrypted cookie using servant's experimental general authentication. I'd love to switch to servant-auth as...

enhancement

When attempting to add a class name to an SVG element using `class` from the `elm-lang/html` package the compiler doesn't complain. When running the compiled program an error is thrown:...

I was wondering what people think of using a lib like [stack-utils](https://github.com/tapjs/stack-utils) to clean up the stack trace to ensure the first line of the stack corresponds to the function...