Alex Parrill

Results 73 comments of Alex Parrill

I certainly could undo the changes I made to add in the explicit `impl ... || {}` syntax - I added it because of the zulip discussion. I could look...

> If rustc tells proc macros how it writes a given closure, then that means running macros after that point. That would likely be a new kind of macro, would...

The GLES backend doesn't need `GL_EXT_separate_shader_objects` - it adds a different header that does not require any extensions. That said, I'm not sure why separate shader objects is needed for...

I've re-downloaded the example I posted, and `test2` does have a dependency on `test1` (`maintest` should also depend on `test2`): ``` json { "name": "test2", "description": "A minimal D application.",...

> I'm not sold on the use_raw_ref name but I also can't think of anything better. Going by the name alone, what is the meaning of "raw"? Perhaps we add...

> You are looking for `use_memo((), |_| AtomicUsize:::new(0))`? I'm not really a fan of how Yew currently hides the basic hook functionality and forces you to half-use its convenience hooks...

> You can use `time::OffsetDateTime` or `chrono::DateTime` When you don't need timezones, pulling in `time` or `chrono` just to serialize what is effectively a UNIX timestamp is a lot to...

> OK, interesting! We can probably include this in a release so it's possible to do, even if how you add your code sample may add newlines or not. I'm...

Yeah, I'm not opposed to removing the built-in code sample functionality. The only argument I can see against it is that code samples theoretically support automatic syntax highlighting, but I...

We could also run a syntax highligher on the server. But that's for the future. (Also we'd probably keep the code snippet plugin loaded, to support existing uses, but we...