Rdbo

Results 67 comments of Rdbo

This type of hooking is definitely something I have thought about The hard part about it is that you need to write a disassembler that will automatically figure out the...

You can hit me up on discord or twitter if you want rdbo#2804 https://twitter.com/rdbodev

Oopsie, uppercase R Rdbo#2804

Rust uses the term `target_env` in Conditional Compilation (https://doc.rust-lang.org/reference/conditional-compilation.html#target_env) to disambiguate between targets. So I guess "env" or "environment" could be candidates for a different term (even though it is...

> Having the exact same issue here, only the background color is wrong. I'm also using Linux, using an Intel graphics card with a Mesa driver. I have a dedicated...

I found out that enabling the `Msaa` resource with `samples: 1` also fixes this bug on Bevy 0.9.1: ```rust App::new() // ... .insert_resource(ClearColor(Color::rgb(0.1, 0.1, 0.1))) .insert_resource(Msaa { samples: 1 }...

Since I added the `capstone` and `keystone` libraries, this has become possible. https://github.com/rdbo/libmem/blob/52c2a66f6b2aa8caaf3136ff12f88de948f077c9/tests/test1.c#L168-L187 In the code above, the minimum size for the hook is automatically detected using the `LM_CodeLength` function,...

This future API will do it: https://github.com/rdbo/libmem/issues/47

Possible solution for musl libc: - Add new OS string for musl Linux on the `downloads.inc`, e.g `linux_musl`. It will detect whether the OS is musl libc or GNU libc,...

There's also the option for adding a toolchain string in the Python versions. E.g: - linux-gnu-x86_64 - linux-musl-x86_64 - win32-msvc-aarch64 I don't think it's worth it though, since AFAIK there's...