Ari Seyhun
Ari Seyhun
Given the following code: ```rust use lunatic::{ process::{AbstractProcess, ProcessRef, Request, RequestHandler, StartProcess}, serializer::Json, }; struct MyProcess; impl AbstractProcess for MyProcess { type State = Self; type Arg = (); fn...
The Mailbox prameter in the `spawn` and `spawn_link` functions is expected to be the last parameter. I think it might make more sense for it to be first, since it's...
**Describe the bug** When using `tokio::select!` with one of the async expressions being `conn.read(&mut buf)`, it will cause `conn.write_all().await` to await forever when called in another handler. **To Reproduce** ```rust...
For something like fall-through routing, it would be useful to return an iterator of values that match the route. An example might be: ```rust let mut router = Router::new(); router.insert("/users/:id",...
The player jumps much lower when the frame rate is limited compared to when it's unlimited. How can I ensure the jump height does not change based on the frame...
Firstly, thanks for this library. What you guys are doing is so valuable! I've followed the book guide and implemented the bank service with postgres persistent data.. my next question...
This pull request adds the ability to use a `.svgo.yaml` file for configuring the loader.
I've created a function to convert the delta to miliseconds: ```js const microsecondsPerQuarter = ( midi.tracks[0].find(({ setTempo }) => setTempo).setTempo ).microsecondsPerQuarter; const deltaToMs = (delta, bpm = 110) => (60_000_000...
I'm sorry if this may be a duplicate, but I've gone down a bit of a rabbit hole trying to get this to work. I have a trait `Subscriber` which...
I have an app which uses postprocess, so renders to an image texture. Though, the image texture is not 1:1 with the window size, and instead is scaled down (for...