wasabi
wasabi
CC#
Created by wasabi on 3/22/2025 in #help
Appending to StringBuilder by Unicode code point?
What might be the most efficient way to append a unicode code point (int32) to a StringBuilder, taking into account I need it to work on Framework.
12 replies
CC#
Created by wasabi on 3/7/2025 in #help
Looking for the optimal datatype for data flow analysis
Thought I'd post this here because it would be fun. :) I'm looking for an advanced algorithm for a data type for maintaining the state of both stack and local variables when analyzing a stack-based instruction set format. The idea is each PC is scanned, and for each PC the state of the local and stack variables (by slot) are maintained. Each frame may push or pop multiple items from the stack. Or may alter multiple local variables. Right now I just keep a list of instruction state instances, which does a COW for their stack[] and local[] variable sets. Looking to see if there is anything more efficient.
1 replies
CC#
Created by wasabi on 2/7/2025 in #help
Invoking NodeJS from C#
I happen to have a need for this. From my research it doesn't appear that NodeJS distributes a library by default. I can't find any recent and maintained PInvoke bindings for anything. So, asking here before I start to build something. I think the idea would be to rebuild node myself as a shared or static library, and then link it into some bridge C/C++ code, and then P/Invoke against that. But checking if somebody is aware of a better way to go about it.
16 replies
CC#
Created by wasabi on 1/1/2025 in #help
Include File into Blazor Emscripten VFS
Trying to figure out the proper way to include a bunch of files into the Blazor emscripten VFS so as to be accessible from file system calls performed against the emscripten version of read()/open() etc
1 replies