Jay Oster

Results 366 comments of Jay Oster

With the current state of that PR, no. With https://github.com/algesten/ureq/pull/735#issuecomment-2019804127, yes. This function signature is not great because it takes ownership of the agent, necessitating `clone` at the call site....

@cchartr This is a bug in melonJS that will be fixed by https://github.com/melonjs/melonJS/issues/574 There's also a thread on the forum where the tutorial issue was reported, including the details of...

Layout code _should_ iterate over a higher layer of abstraction than `char`. For instance, grapheme clusters or word boundaries via [`unicode_segmentation`](https://docs.rs/unicode_segmentation). The trait it provides is probably not the right...

That is correct at present. I don't want to derail this thread, but that has been a concern for quite some time. #2532 has details. Providing an interface for `&str`...

You need to use the websocket endpoint with `nimbus`. See https://nimbus.guide/infura-guide.html#7-copy-the-websocket-endpoint > :warning: Warning: make sure you've copied the endpoint that starts with `wss` (websocket), and not the `https` endpoint....

`unicode-width` is not the right tool for computing column widths, since it depends on the font. `tui` won't have access to information about the font, since that is the terminal...

Yes, you actually need segmentation to present emoji widths properly. Mentioned by both the quoted comment and my previous comment in this thread. I do not believe that "ripping out...

As a Windows Terminal user, I can tell you that the people working on that emulator concur that it is a "bug" that it doesn't support Unicode segmentation (or at...

It seems to me that rendering the TUI when it contains "unknown" grapheme clusters by discarding non-zero-width characters (or even just using the Unicode fallback character) is the least disruptive,...

That's my takeaway, unfortunately. I went through some of the kakoune issues, and found e.g. https://github.com/mawww/kakoune/issues/1447 where the maintainers indicate they aspire to add segmentation support. If the goal is...