This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "floatfuzz" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
# version 0.17 doesn't remove the progressbars after finish_and_clear =( | |
indicatif = "0.16.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc | |
index 5c6191d941c..5587f8225fa 100644 | |
--- a/gdbserver/linux-low.cc | |
+++ b/gdbserver/linux-low.cc | |
@@ -964,7 +964,7 @@ linux_process_target::create_inferior (const char *program, | |
{ | |
maybe_disable_address_space_randomization restore_personality | |
(cs.disable_randomization); | |
- std::string str_program_args = construct_inferior_arguments (program_args); | |
+ std::string str_program_args = stringify_argv (program_args); |
PoC template-based C++20 foreign C struct projection. Allows to interact with C structures that are not necessarily layout-compatible. Can be extended to support different endianness, different types representation, custom pointers, etc
TODO: write more info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires python bindings of hidapi | |
import hid | |
path = [ x for x in hid.enumerate() if x['vendor_id'] == 0x2717 and x['product_id'] == 0x5009 and x['interface_number'] == 1 ][0]['path'] | |
dev = hid.device() | |
dev.open_path(path) | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is StringBuffer API for OpenComputers. | |
It must be compiled as part of native library (with some other patches) | |
by DCNick3, 2018 | |
*/ | |
#define lstrbuf_c |