Rob Gries
Rob Gries
From https://michaelwoerister.github.io/2015/03/27/rust-xxdb.html > Unbeknownst to most Rustaceans, two little helpers have found their way into almost any Rust installation over the last few months: `rust-gdb` and rust-lldb. These are two...
@chaoyangnz All contributions, such as Pull Requests or comments, are welcome 😄 Feel free to open any PRs or comment with any questions, and I'll do my best to accommodate...
More thoughts: `wasm` arch could be a shim for running scheduler and interprocess code directly in browser. Printing and keyboard input would be done through javascript event listeners. This feature...
Hey @IsaacWoods, my kernel supports both 32 bit and 64 bit targets. I think you may have wandered into my repo through your `blog_os` issue :-) Your suggestion is good...
No need to apologize! I appreciate the contribution
If you're interested in priority preemptive scheduling, I recently merged it in: https://github.com/robert-w-gries/rxinu/pull/68 The kernel is a lot more stable now. After moving to the `rust-osdev/x86_64` crate and making some...
I had to modify the rodio `Cargo.toml` and add the following feature before getting webassembly to work: ``` [features] ... wasm-bindgen = ["cpal/wasm-bindgen"] ``` I tried the following in my...
I'm running into the same problem as #310. I am running rodio webassembly on the main thread, so I can't call `sleep_until_end()`. I can't use a web worker to run...
Thanks @glalonde, the problem was that I was keeping a reference to the `OutputStreamHandle` instead of the `OutputStream`. I think `rodio` has more problems with choppy playback than using `cpal`...
I ran into an issue specific to Chrome where `AudioContext`s are suspended until there's been user input, such as clicking a play button: https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#webaudio `rodio` provides no method for resuming...