Michael Messer

Results 36 issues of Michael Messer

Is it possible to use the units from js-quantities? https://github.com/gentooboontoo/js-quantities/blob/master/src/quantities.js

kinda-big
yesss

`nlp_compromise.value("5 and a half").number` is equal to 6. It should be equal to 5.5. I am using the latest from head.

ready
good-first-bug

- [x] Handle Spaces - [x] Vulgar Fractions (Single Code Point) - [ ] Subscript, Superscripts, and Unicode Fractions Slash - [ ] Handle words

New numbers: dozen = 12 gross = 144 pair = 2 ream = 500 mol = 6.02214179 × 10^23

ready
quick fix

The weird type signature is required because m1 must be PushM and m. ```haskell f :: forall t m a. (Reflex t, MonadHold t m) => (forall m1. (MonadHold t...

enhancement
Medium Severity

Should the be a MonadDynamic typeclass? (like MonadIO). This would make working with monad stacks easier. ``` class MonadDynamic m where liftDynamic :: Dynamic t x -> m t x...

question
opinionated
Medium Severity

Should reflex include a deep PatchMap? It would be like PatchMap but have an update option.

enhancement
opinionated
Medium Severity

Vinyl's `Rec` is similar to `FHList`. It turns out thats its possible to write some interesting functions related to reflex with it. Basically it is possible to easily convert between...

enhancement
question
Low Severity

```haskell data UnheldDynanic t a = UnheldDynanic a (Event t a) instance Reflex t => Functor (UnheldDynanic t) where fmap f (UnheldDynanic x e) = UnheldDynanic (f x) (fmap f...

question
Low Severity

Since Dynamic is a specific case of Increment, would it make sense to define Dynamic in terms of Incremental? Or are there performance problems that I did not think of?...

question
Low Severity