Kim Schmider
Kim Schmider
This is why I am using `assign_from_copy` more than I do `assign`, but this is quite suboptimal, since sometimes I'm copying entire STL containers. Something like `assign_from_move` or `massign` would...
Huh, interesting that that PR was all it took. I'll update later and make my code a lot shorter :)
Why was it reverted? Couldn’t find any explanation
It may also make sense to allow more than 2 length tuples. I have found some functions doing this and I like returning longer tuples myself. Here's an example: ```elixir...
I additionally get `ld: Error: unable to disambiguate: -arch (did you mean --arch ?)`, which I assume means I have an incompatible version of ld/lld. When I build to object...
Thanks for the quick reply. It does indeed work now, I didn't notice that I didn't do a successful pull. So I guess we can close this now. I'm very...
What's the status on this?
There are a couple issues with odinfmt in this repo. I have been advised to use odinfmt from ols (https://github.com/DanielGavin/ols/tree/master/tools/odinfmt). We should clarify the status of odinfmt in this repository
For me the best thing would be to just treat it as a global function. My JS bundler then takes care of resolving it.
Does "streaming" in this case mean HTTP responses that are not available in full at time of sending? Something like ```py defer() send_headers() append_body("Hello, ") send_body_part() append_body("world!") send_body_part() close() ```...