Emanuel Czirai
Emanuel Czirai
interesting... >opt-level > > The opt-level setting controls the -C opt-level flag which controls the level of optimization. Higher optimization levels may produce faster runtime code at the expense of...
Question: how would you like to handle the case when that `text` &str there as the arg to `print_at` and `print_at_rep`, contains a `\0` (null byte) as part of the...
> There is an open issue for high CPU usage at #2665 which appears to describe very similar symptoms. To summarize, the solution for that seems to be: > Please...
This might not apply here in the case of wezterm(aside from the fact that they're both written in Rust and maybe using Vec\`s), but [here](https://github.com/alacritty/alacritty/issues/5438#issuecomment-1289879715)'s what I'm doing to alacritty...
Maybe you can try to set picom opacity(transparency) for other/normal windows just to see if picom can do it: https://wiki.archlinux.org/title/Picom#Opacity Otherwise you can try to temporarily replace picom with xfwm4...
> > EDIT: as per [above](https://github.com/alacritty/alacritty/issues/6419#issuecomment-1282845188) did you ensure you're using GLX? eg. search in ~/.local/share/xorg/Xorg.0.log (or wherever it is on your system) > > Hey, it seems xorg dir...
I encounter this warning when I try to have the lib inside the bin project, aka the `lib.rs` and the `main.rs` in `src/`, like the following: `$ cargo new dual_bin_and_lib_special_module_name`...
**tl:dr:** To repro just `chmod a-x your/rustc`, `cargo clean` then `cargo build`, now it's cached, do `chmod u+x your/rustc`, run `cargo build`, same (cached)error. ---- This cache reusal in step...
> Is there anyway to find out what is causing it to revert, specifically? Yes, you can [hook](https://www.opensourceforu.com/2011/08/lets-hook-a-library-function/) the X function(s) that are being used to set the gamma and...
From my tests, the exit with no message happens due to this: https://github.com/pkgcore/pkgcore/blob/1499b0d68307042476402890890f16bd6d060932/src/pkgcore/ebuild/repository.py#L116-L118 ```python # Manifest file is current and not forcing a refresh if not force and manifest.distfiles.keys() ==...