Iron(III) Oxide

Results 47 comments of Iron(III) Oxide

at the very least, I think it would be great if you could make a rule that anytime a new code item is created, that it must always contain documentation....

I'm not entirely convinced that increased documentation implies a reduction in signal-to-noise ratio. Because when you write the documentation, it will get displayed with a different color in the codebase...

I run `make run` in terminal. After it finished loading everything, I press any arbitary button on the keyboard and here is the output: ``` [W] kernel/console/src/lib.rs:53: Currently ignoring inputs...

Which of the subsystems are fundamental? Is it all the crates in the kernel directory? I think [flamegraph](https://crates.io/crates/flamegraph) seems like a good choice of benchmarking tool. It can help us...

I found another benchmarker: [bencher](https://github.com/bluss/bencher). It seems to be very lightweight with minimal dependencies (if any at all). Would this be a good choice?

> Thanks! The initial set of tests is decent, but there are a few more scenarios that ought to be tested. The major issue is that the sending and receiving...

what does the porting entail? Can you elaborate?

I noticed that `time::ClockType` is sealed. Do you want me to unseal it and write the implementation in each clock's crate? Or do you want me to write all the...

I'm working on TSC now. The trait `time::ClockSource` says in the function signature that `duration_to_unit` should return `::Unit `. But the documentation right above says that `Monotonic clocks should just...