Richard Brady

Results 21 comments of Richard Brady

Oh wow that's a very useful function to know about and sounds like a good workaround for @astralmedia. But don't you think `app.on('disconnect', ...)` should just work? I think there's...

I think it's fair to say your problem is not related to this issue. I got that wrong. > when I connect, I hit `socket.emit('create', 'authentication', authRequest)` to get the...

That is a good point re not being able to detect whether the path matches the node. The alternative would be to return an error if an absolute path is...

Today I learned that by convention wallet apps which provide a xpub for export (e.g. Electron Cash, Bitcoin.com Wallet, Crescent) will provide the xpub for the account level node (depth...

Wow, thanks for the great write-up. A few observations in response: ### On the necessity of relative paths > Maybe the best option: don't support relative paths. [YAGNI](https://en.wikipedia.org/wiki/You_aren%27t_gonna_need_it) I think...

On #656 @garmeeh wrote: > Hey @romaincointepas can you provide an recreation of this? Just checking here and for me it renders correctly. The best way to reproduce is by...

Confirmed this is an upstream issue [facebook/react #12403](https://github.com/facebook/react/issues/12403). Their view is that HTML is not case sensitive so there's no reason to lowercase the attribute names.

If you're using Tailwind CSS you can do something like this: ```jsx ```

@frederichoule the best solution is to [vendor](https://javascript.plainenglish.io/how-to-vendor-npm-dependencies-d4e9056c809) the package with the changes you want. You build the package (`npm run build`) and compress it (`npm pack`) into a tarball which...

On further investigation the problem occurs when the server sends a websocket ping message. See [rnbrady/vercel-edge-runtime-983](https://github.com/rnbrady/vercel-edge-runtime-983) to reproduce.