Morgen Peschke

Results 19 comments of Morgen Peschke

One change that could make it easier to experiment with this and other enhancements may be providing access to some of the `Opt` ADT.

Would it be possible to expose a method to emit a public ADT (possibly, but not necessarily, one of the two you mentioned)? That way the internal performance optimizations aren't...

For anyone who stumbles on this issue, the project has been moved and the new one includes a docker image you can spin up locally to get an offline editor....

I've found this sort of thing useful in the past, and have opened #394 with a potential implementation.

@ashawley - that's definitely an important point. I think the main point of this feature request isn't to try to guarantee a particular size (though a best effort there is...

Yep, that's pretty much what I was thinking. I agree that default parsers for most things don't really make sense, so we wouldn't need much in the way of default...

Along those same lines, because `andThen` exists, the lack of something like `flatTraverse` makes itself felt rather keenly if you're doing most of your validation in `Validated`. I use [`andThenF`](https://github.com/morgen-peschke/scala-commons/blob/81132b4cfb71156e206df2aa20725c4514905848/core/src/peschke/cats/syntax.scala#L54),...

@armanbilge : Possibly. I usually use `Validated` as the default, and drop to `Either`-semantics via `.andThen` when needed (as that seems to be less often), so it could be that...

> But where is the advantage of maintening any react-dependencies if you are not a fb's employee? the fame? @mr21, at least for me, the benefit is pretty simple: it...

This would also be helpful if you're doing something like this (which allows the script to know what directory it lives in): ``` #!/bin/bash DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)...