Lev Kokotov
Lev Kokotov
`parse_result::ParseResult` is returned from `crate::query::parse` which is a public method but the result struct is private. This compiles and runs fine typically, but it's impossible to pass the output of...
I tried this code: ```rust #[derive(Copy, Clone)] enum Test { ValueA, ValueB, #[allow(dead_code)] Any } impl PartialEq for Test { fn eq(&self, other: &Test) -> bool { match *self {...
### Preliminary Checks - [X] I have reviewed the documentation: https://docs.openstatus.dev/ - [X] I have searched for existing issues: https://github.com/openstatusHQ/openstatus/issues - [X] This issue is not a question, general help...
### Description Let me preface this by saying I'm running the nvidia proprietary driver and an ultrawide screen in PIP mode (picture-in-picture), which simulates having two displays. One is connected...
### Description I'm trying to add the Icon Task List applet to my bottom panel, but it's not working. When selecting the applet from the applet list in Budgie Desktop...
### Features 1. [SDK] Add support for automatic batching for document upserts. Looking for review on the API before moving forward with PR, e.g. before adding tests. ```python from pgml...
The blog featured post animation switches to the second item in the list almost immediately after page load. This prevents the user from seeing the first featured post which is...
I've recently built [rwf](https://github.com/levkk/rwf) ([crates.io](https://crates.io/crates/rwf)) and I thought it could make a nice addition to [web frameworks](https://www.arewewebyet.org/topics/frameworks/). Thanks!
**Is your feature request related to a problem? Please describe.** Calling `Instant::now()` isn't free. In an app serving thousands of sockets, multiple tasks will be woken up in a single...
It would be cool to be able to resize the cache online, e.g. by setting new capacity. All items in the LRU set above capacity would be evicted.