Alexander Lopatin

Results 38 issues of Alexander Lopatin

Thanks for maintaining this project! I have TP-Link TL-WN725N and Gentoo GNU/Linux on typical x86_64 machine (but actually I'm planning to use it on Raspberry Pi). I'd like to make...

Currently there's a bunch of issues with non-ASCII characters: - [ ] text gets cut in the output - [ ] random rubbish appears near the text - [ ]...

It's a minor issue that can be avoided using `-e` ``` $ echo '-i' > test.txt $ grep -r '\-i' test.txt:-i $ ngp '\-i' (produces no output) $ ngp -e...

``` $ CFLAGS="-fstack-protector-strong -O2" cmake . && make -j8 ... src/ngp_search.c: In function ‘get_file_name’: cc1: error: function may return address of local variable [-Werror=return-local-addr] src/ngp_search.c:60:10: note: declared here char copy[FILENAME_MAX];...

Thanks for this awesome tool! I've been mostly using Rust for the last few years professionally, so I'd love to have Rust highlighting support. Here's the [syntax doc](https://doc.rust-lang.org/reference/keywords.html), [syntax highlighting...

enhancement

hostapd and wpa_supplicant are two old mature wireless networking applications written in C, found across all Android devices, all typical desktop GNU/Linux distros and majority of routers. The latter is...

Thanks for this awesome crate! ```rust #[derive(Default, getset::Getters)] struct A { #[get = "pub"] b: Option, } #[derive(Default)] struct B; fn main() { let a = A::default(); let b: Option...

proposal

Thanks for this crate. It'd be handy to use it in async programs. `run: Box ()) + 'a>` causes ``` `dyn std::ops::FnMut()` cannot be sent between threads safely ``` in...