Jared Forsyth

Results 199 comments of Jared Forsyth

@pchiusano ok I've got signature generation working, but I have a question: the unison impl requires both the `seed` and the `public key` for signature generation, but the `public key`...

Looks like on the web, a given touch has an [identifier](https://developer.mozilla.org/en-US/docs/Web/API/Touch/identifier) associated with it. We should probably expose something like `env.touches: Array`. If we wanted to get fancy, we could...

ooops I'll get on that

ok it's done :) would be good to get a CI process going, you're right

+1 to the `g(_, foo)` should be preserved by refmt instead of turning it into `__x => g(__x, foo)`. It's a strong disincentive to use that otherwise very handy form.

Why not use `Ldot` to disambiguate instead of making subtly different operators? like ``` open HashMap; myHashMap["thing"] myDict.Dict.[access] // or maybe myDict.Dict[access] ```

I mean you could `open Js.OperatorAccess`. But I understand the desire for another syntax. Is it important that it look like array access? e.g. we could have `jsObject."field"`, which I...

I'm not super sold on the "dictionary-style" thing though -- javascript object attributes (in javascript) are accessed via `.attribute` *much* more often than they are accessed via `["attribute"]`. The latter...

@ostera top-level docblock comments need to end in a semicolon :) ``` /** module-level docs */; open A; ``` should do it.

We could remove the flex reset, and just use a base "View" component instead of div, that has display: flex setup for us