Diego Esmerio

Results 50 comments of Diego Esmerio

You can see the traffic on the developer tools on the navigator, so it's a point of attack if you borrow a device to check your balance. Having an end-to-end...

I believed that no, I said that mostly to not worry about the server part and I wasn't thinking of that. It's just the client that I couldn't find a...

I was thinking in using it in the browser. We use a Diffie-Hellman key agreement to generate a AES key valid only for one session, so no need to deploy...

> Are you thinking of having the library handle this exchange? In that case, no. My idea would be doing that before creating the proxy, as I'd also need to...

For this particular case it should be ok as that attribute just hides the method from intellisense, but as the feature enhances reflection it could enable some cool things with...

Feliz.Bulma has bulma [added as a requirement](https://github.com/Dzoukr/Feliz.Bulma/blob/master/src/Feliz.Bulma/Feliz.Bulma.fsproj#L16-L20) for Femto.

The template kinda cheats and gets it from a CDN, that's why it don't appear to be a dependency. [Check here](https://github.com/SAFE-Stack/SAFE-template/blob/c07383e91111015ec71b6b9c62f3fa5bc141dd06/Content/default/src/Client/index.html#L7)

As it is now, `Elmish.Streams` hook into the view so it can access both the current model and the dispatch function. The server has no view, so I didn't do...

Probably just reimplement the `setState` will give a way to attach the stream with little change.

Sorry, there is that feature on [Elmish](https://github.com/elmish/elmish/blob/d3770c3d94aa4542e2debab06f03756ee8d050f5/src/program.fs#L145) that gets called after every update and then is used for rendering the view in the case of `Elmish.React`. As it overrides the...