Jason Youngberg
Jason Youngberg
A flashlight tool should be added to help with controlling objects in the dlc, such as the raft.
### Describe the bug If I try to go to `/Android/data`, nothing is there. ### The log file and images/videos  ### Steps To Reproduce ```markdown 1. Open `/Android/data` 2....
`cargo run --quiet` works fine, but when I try to run `cargo test --quiet`, qemu gives the error `qemu-system-x86_64: --quiet: invalid option`
The example code won't compile. ``` error[E0433]: failed to resolve: could not find `main` in `tokio` --> src\main.rs:4:10 | 4 | #[tokio::main] | ^^^^ could not find `main` in `tokio`...
When executing a Rust program using the `bacon run` command for the first time, the standard output is flushed on every newline. However, on subsequent runs, flushing appears to occur...
If you want to use a fallback char, you have to use code like this ```rust noto_sans_mono_bitmap::get_raster(c, FONT_WEIGHT, FONT_SIZE) .or(noto_sans_mono_bitmap::get_raster( "\u{FFFD}', FONT_WEIGHT, FONT_SIZE, )) .expect("fallback raster not found") ``` which...
I've wrote an implementation of Debug for most types, but I can't figure out how to do `FrameBufferResponse`, since it gives an iterator and not a slice. Also should it...
### Summary Running `cargo clippy` on https://github.com/jasondyoungberg/my-os/tree/b1875e12124b634e9cb90b9d5cce4bb8b327826d causes an error [rustc-ice-2024-05-25T15_13_29-5792.txt](https://github.com/rust-lang/rust-clippy/files/15444030/rustc-ice-2024-05-25T15_13_29-5792.txt) ### Version ```text rustc 1.80.0-nightly (36153f1a4 2024-05-24) binary: rustc commit-hash: 36153f1a4e3162f0a143c7b3e468ecb3beb0008e commit-date: 2024-05-24 host: x86_64-pc-windows-msvc release: 1.80.0-nightly LLVM version:...
[`MpResponse::cpus_mut`](https://docs.rs/limine/latest/limine/response/struct.MpResponse.html#method.cpus_mut) gives an exclusive reference to all Cpu structs, but all processors get a shared reference at their entry point, causing mutable aliasing and UB. ```rs extern "C" fn kmain()...