StackOverflowExcept1on
StackOverflowExcept1on
I have same problem on Ubuntu 22.04.2 LTS Temporal fix: `nano ~/.local/share/applications/Alacritty.desktop` ```diff - Exec=alacritty + Exec=env WAYLAND_DISPLAY=1 alacritty ```  ``` Created log file at "/tmp/Alacritty-6983.log" [0.000009080s] [INFO ]...
@kchibisov I opened alacritty with `startup_mode: Maximized` option and manually closed it. Nothing crashed, but the logs show that the window size does not match my monitor: `[alacritty] Width: 1920,...
Hi, I'm looking for stack-allocated RSA library in Rust. `crypto-bigint` seems to be able to do this. Although I can't see `modpow` in `crypto-bigint`.
In addition to the memory allocator, each smart contract duplicates functions such as `memset`, `memcpy` (aka https://github.com/rust-lang/compiler-builtins). I'm not sure if it can be easily dynamically linked, but it makes...
I have similar problem that I need hash of 256 bit size, but this crate does not provide BLAKE2b-256.
also there are some problems with `const fn`: ```rust struct Foo { s: Option, } impl Foo { const fn new() -> Self { Self { s: None } }...
Hello, you mean plugins, right? As I heard from one person, he did a rather interesting trick in the opposite direction. He bought IDA Home version for $365 per year...
Ok, where can I get loaders for IDA x64 on linux? I guess they made something like white list in demo version
@Amxx Can you elaborate on what kind of tests I need to write? Maybe I can copy them from somewhere. I'm not very familiar with Hardhat ecosystem.
@Amxx > For sure manually adding the `abi.encodePacked(...)` is not such a big deal. It's okay to have two versions: one with message hash (digest), second with message. Also maybe...