Chris Smith

Results 188 comments of Chris Smith

I just ran into this. I appreciate that there's a lot of sentiment against using data-default in the first place, or against most of its instances. Nevertheless, I see no...

Right, it's definitely a bit messy with `textarea` and such. I'd suggest that if the tag performs the same role as an `input` tag, and is intended to be empty,...

That looks like the best options, yes. The choice of `ul` for error lists is unfortunate, since those tags are intended to be empty. But I don't see a better...

While I did write that article, I don't think the word "summarize" is sufficiently precise to make a good name. Here are some candidates off the top of my head:...

No, you're right. There should be a Monad constraint there. I'll update the docs.

Since I've split servant and haxl into their own issues, I'm claiming this issue for effect system integrations. This includes: * `polysemy` * `fused-effects` * `freer-simple` * `eff` and perhaps...

I imagine this will eventually look something like the following: ``` class MonadFoo where mtlFoo :: Int -> m () data FooEffect m a where PolysemyFoo :: Int -> FooEffect...

There are currently a lot of dependency circles involving MockT in HMock's implementation, so the real trick here is going to be finding the best way to disentangle all of...

The semantics here are unclear. A few options: 1. Verify the full action sequence against the expect set passed to verify. In a complex test, though, it's unlikely that you...