Results 6 issues of kekeimiku

atom-one-light/atom-one-dark ![Screenshot_20220519_170159](https://user-images.githubusercontent.com/36557882/169255901-2ce81485-6fb6-4a54-a407-f27e1a662ab5.png) ![image](https://user-images.githubusercontent.com/36557882/169255679-8ef45cf2-80e2-4c35-b4e2-d5d52193c4dd.png)

color-inconsistency

https://github.com/rust-lang/rust/issues/10761 https://github.com/rust-lang/rust/issues/115271 In versions after v0.4.1, the pointer scanning speed will be 30% to 200% slower on some devices, mainly due to the above two problems. `write!` and `binary_search`. Of...

I noticed that there are many issues related to pointers, such as #301 #428 #375 #315 [#35](https://github.com/korcankaraokcu/PINCE/issues/35) and so on... For this I made a pointer scanner [PointerSearch-X](https://github.com/kekeimiku/PointerSearcher-X), unlike ugtrain,...

```rust fn main() { let pid = std::env::args().nth(1).unwrap().parse().unwrap(); let maps = proc_maps::get_process_maps(pid).unwrap(); for map in maps.into_iter().filter(|x| !x.is_write()) { println!( "{:x}-{:x} {:?}", map.start(), map.size() + map.start(), map.filename() ) } } ```...

bug
help wanted

https://github.com/rust-lang/rust