Category Archives: Uncategorized

Installing NetWare 3.12 in QEMU

Why? This is a let’s turn my notes into a post writing. I like to pick up NetWare-related reverse engineering endeavors every now and then, and most of these involve having a NetWare 3.12 server available somewhere. In current day … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Implementing a std::function<>-like wrapper in C++, part 3: using a static storage buffer

Previously, we’ve made our version of std::move_only_function<> generic so that it can be used to store any function signature, regardless of the number of parameters or return type. The implementation we’ve ended up with is the following: This works for … Continue reading

Posted in Programming, Uncategorized | Tagged | Leave a comment