clotodex
clotodex
Will check it out when I find time, now that wlroots16 is merged
With wlroots16 this is not as crucial to a lot of bugs anymore. However this is still unsolved for some (@oddlama) Further this could be a neat solution for "GPU-workspaces"....
Another thought, do you have a HiDpi screen? Since qtile right now can not define layouts and bar etc on scaled outputs https://github.com/qtile/qtile/issues/3646
https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3671 I will try that soon to see if that works Thoughts: - I assume this is an nvidia bug - I guess this also is not a bug on...
Could this be related to #3881 (see sub-issue [3] and [4])?
I think two things could be cool - #codex-ignore and #codex-on/off - a special command that ignores all special comment types (since this is sth I would like to do...
I have the same issue - also switching between the APIs is a common use case for us. With weaviate this is impossible due to the moduleConfig being tied hard...
This should normally be taken care of the ozone platform in electron *BUT* I am facing the same issue on wayland, and the commandline flags either dont have effect or...
For me it worked. I used it like this ```rust let loaded: Vec = serde_json::Deserializer::from_str(&std::fs::read_to_string(file)?) .into_iter::() .collect::()?; ```
This was my naive approach (not working with gigantic data amounts though) ```rust std::fs::write( file, your_vec .into_iter() .map(|e| serde_json::to_string(&e)) .collect::()? .join("\n"), )?; ```