Brian
Brian
> What's a "manual mapper" and how does that work? Manual Mapping is basically emulating LoadLibrary and you basically allocate space in a process to write the dll into memory....
It's not open source, but I think this is the closest I can show that's like the project. [https://github.com/mactec0/Kernelmode-manual-mapping-through-IAT](https://github.com/mactec0/Kernelmode-manual-mapping-through-IAT)
How did you find out / hear about sol2? Was looking for Lua Wrapper in C++ on GitHub. What're you using it for? As a VM frame work. What Lua...
Questions: 1. How did you find out / hear about sol2? 2. What're you using it for? 3. What Lua library did you use before you found sol2? 4. What...
I can give it a try, and it's all types of gifs, not just giphy gifs.
I couldn't uninstall node 17, so seems I can't try it.
> ```js > const arr = [3, 5, 7]; > for (let i of arr) { > print(i); // logs 3, 5, 7 > } > ``` This worked! Do...
> You'd use `duk_push_array` to create the array, then you would push whatever item you want to put in, then you can put it into the array at the proper...