Christopher Mahoney

Results 45 comments of Christopher Mahoney

Yeah, the office of information technology at our university has seriously messed something up. On IPv6 they aren't able to throttle our connection so they throttle our IPv4 bandwidth based...

Commenting since it's a "good-first-issue". The issue is correct the example grammar does allow every `ident` after the first to start with a digit. The text above the example in...

`Command::withTimeout` should also receive an overload.

`waitTime(t)` seems like a good replacement name.

An alternative solution to #654 would be to use the [binary_heap_plus](https://crates.io/crates/binary-heap-plus) crate which supports custom comparison functions. One problem is their MSRV is 1.56 compared to Itertool's 1.32. I haven't...

I agree with @zslayton that this crate should remain as a library. But I think your idea is a good idea as a separate utility

I have a new idea for this type that I find would solve the problem elegantly. ```rust // status quo pub enum NetworkSize { V4(u32), V6(u128), } ``` In this...

I agree, looking into this project from the outside I see a few potential blockers: - [ ] Decide how to handle Ipv{4,6}Network::size() on maximum networks #130 #178 - [...

I implemented [something similar](https://github.com/FRC5881/2024Robot/blob/main/src/main/java/frc/robot/utils/SendableChooserCommand.java) recently. The `Consumer` rubs me the wrong way (so does hard coding SmartDashboard like I did). It's a good way to add this change within the...

Dashboards support starting and stopping commands that you upload. https://docs.wpilib.org/en/stable/docs/software/dashboards/shuffleboard/advanced-usage/shuffleboard-commands-subsystems.html#displaying-commands https://docs.wpilib.org/en/stable/docs/software/dashboards/glass/command-based-widgets.html