Nemo157
Nemo157
When using the `systemd` service there are no logs visible, and similar can be simulated with `hypridle | cat -`. My assumption is this is related to a lack of...
I've noticed a few times some games will increase the inhibit count but never decrease it again. Checking the spec I noticed this part: > Inhibition will stop when the...
This comment here is incorrect: https://github.com/launchbadge/sqlx/blob/2e1658e08b053f66102b5beabc7fdd4ac28e3a48/sqlx-core/src/postgres/types/chrono/datetime.rs#L79-L81 If you have a connection set to use a non-UTC timezone you will get a response with timestamps in that timezone. After overriding the...
### Summary When splitting a public module up into sub-modules for code-organization purposes, you can commonly have a sub-module with the same name as the public module. This is fine...
```rust struct Foo(usize); impl Foo { fn next(&mut self) -> Option { self.0 += 1; match self.0 { i if i > 3 => None, 3 => Some(Err(3)), i =>...
I'm really not sure where the issue is, I spent a while trying to come up with something more useful to open an issue about, but I couldn't track down...
I'm playing around with some layout ideas at the moment, and one thing I think would be very useful is a window that dynamically shows the members of the last...
I tried using tmux's `monitor-activity` setting to mark a background window containing iamb when something changes, but this seems to trigger the instant I move off the window. I wonder...
I want to have my default layout with a `:chats` pane on the left, but configured layouts get the space split evenly between the `split`s making it way too big....
### Describe the bug When using a renamed dependency in one crate of a workspace (e.g. as is useful for testing macro hygienity) the `workspace-duplicate` lint triggers with no way...