Roman Sandu
Roman Sandu
So uuuuh... I've made a flower farm in permanently loaded chunks, and it turned out to be efficient. No, you don't understand, it was **very** efficient. So now my server...
Is it possible to painlessly add support for the Windows Subsystem for Linux (previously known as bash on ubuntu on windows)? Due to specific circumstances I have to compile my...
Title says it all. Any client who tries to fetch the chunk that contains such a tube gets immediately kicked from the server due to the packet which gets sent...
Right now, usage patterns of async_mutex violate RAII in any case whatsoever, as locking the mutex (the "resource acquisition" part) is an async operation, and so cannot be done as...
Title. Where is it? Lack of something like this prohibits me from starting event loops on worker threads _before_ doing a huge amount of work on a main thread and...
I am trying to wrap vulkan's asynchronous gpu calls (i.e. acquiring swapchain images, submitting rendering work, presenting images to the screen) into unifex stuff. As it turns out, I've bitten...
Title. The reasoning for this is that sometimes work is submitted into a event-processing thread externally and therefore the sender-receiver machinery in `thread_unsafe_event_loop::sync_wait` is not needed. P.S. Why is the...
When one adds allegro5 via `add_subdirectory` to a cmake project, neither does one get the required include directories set as a property on the `allegro` target (the preferred way), nor...
Так сейчас можно: ```cpp template concept DerivedFrom = std::derived_from; template void foo(T t) { ... } ``` А вот так нельзя: ```cpp template concept Instantiatible = requires { typename Template;...
# Description of the new feature/enhancement Original idea by [@lunasorcery](https://twitter.com/lunasorcery), approved by @DHowett https://twitter.com/DHowett/status/1619856783119626242 You know how vscode is able to "stick" the namespace/class name or function signature to the...