Phil Hazelden

Results 33 issues of Phil Hazelden

This allows the library to be used in cases where a table doesn't use the standard HTML elements, e.g. if it uses the CSS `display: table*` properties.

I may be missing something, but from my simple experiments so far this seems to work. If you'd be amenable to adding this, I'll be happy to add tests and...

```haskell somefunc :: forall m . ( Constraint1 -- retained , Constraint2 -- lost ) -- lost => SomeType -- retained ``` Both of the "lost" comments are unprocessed. The...

bug
layouting
hs:comments

For example ``` $ stack exec chapter4 [0 git/remotes/origin/HEAD] ready> extern sin(x); ; ModuleID = 'my cool jit' source_filename = "" declare double @sin(double) ready> sin(1); ; ModuleID = 'my...

For each of the 40 implementations listed on the hashids website, has someone made sure they give the same results as each other? I'm sure several of them have been...

This won't be good to merge as-is, but if the feature is desirable, I'd be happy to help get it ready, including making supporting PRs to other repositories. (hspec-hedgehog will...

I have a state machine where one Command's output type is `(FooId, BarId)`. That gets put into the model, so I have `ids :: Var (FooId, BarId) v` in my...

This allows you to write commands whose input changes when a previous Command shrinks. For example, suppose the state contains `someList :: [Bool]` and you have a command whose input...

This might only happen if there's an infinite shrink loop, I'm not sure. I haven't found one in the actual code I'm working on, but I can't yet rule out...

It seems there's no way to add Auth to an API with NoContentVerb (added in servant-0.17) because that type instance is missing. To be clear, it's missing for good reason....