jean-airoldie

Results 78 comments of jean-airoldie

@jpt By default, nuxt's server webpack excludes all external modules from being transpiled in build. You should try whitelisting vue-particles. ```js // file : nuxt.config.js module.exports = { ... build:...

I can't find any documentation on the fact that `eglInitialize` can even return `EGL_BAD_ACCESS`.

No longer using ubuntu, so can't reproduce the issue. Unsure what this was about.

> Thus putting everybodies message data always in an Arc will incur an overhead all the time for everybody that doesn't need this. > I would suggest that a connection...

> There is an interesting new proposal for the AsyncRead/AsyncWrite traits in a PR on tokio that could really make that happen. That's cool, I'll take a look.

@najamelan What are your thoughts on having a asymettric `Message` type? Something like: ```rust pub enum SendMsg { Text(String), ShText(Arc), Binary(Vec), ShBinary(Bytes), Ping(Vec), Pong(Vec), Close(Option>), } ``` This would enable...

An alternative would be to provide a separate `WebSocket::write_shared_message` API. This would preserve backward compat. ```rust enum SharedMessage { Binary(Bytes), } ```

I'll give #104 another try in a couple of weeks. I'm thinking about writing a decent benchmark to view the overhead of using `Bytes` over a `Vec`. * If the...

I think the latter is superior since the `ZAP` API is garbage and I wouldn't want users to have to implement code on top of it.