Stephen A. Imhoff
Stephen A. Imhoff
Well, there are performance arguments to make, but I feel that's somewhat of a minor point to try to reach for. Many of the benefits follow from the use of...
Agreed. Now, I imagine simple request/response would comprise probably 90% of use cases, so it might be possible to expose just that capability (certainly all of my stuff falls into...
Unfortunately, this doesn't actually work for my use case, for a few reasons: - For whatever reason, on an Ubuntu 20.04 machine it still pops a window up. - Attempting...
Note that I haven't been able to get things to run on a headless server (yet). I'm keeping looking, but I'm not too confident. From some cursory research, I _think_...
@anon-cs - I ended up switch to [Panda3d](https://www.panda3d.org/). Blender integration via armory isn't relevant to my final use case.
@brunoborges - cancellation tokens are going to be per-call, not really per-instance. So they'd get called at the timeout mark (or a bit before).
Possibly, yes, so an equivalent to `Dispose` might be handy. What might work better is letting functions take a database connection/pool object (`DbConnection` in C#, probably `DataSource` in Java), especially...
> I need create a new locale with new Abbreviated Month Names. I don't want to wrap outputs. ... ignoring the specific report here, _why_ do you want to do...
> It would be interesting to have a mechanism similar to LocaleBuilder that generates this dll for an app The point is that you **shouldn't** (need to) do this; the...
Currently, when you access a `readonly` field in a method, it (in IL, mostly transparent to the developer) copies it to a local variable before doing anything with it. This...