ImperialCollegeLondon / ImperialCollegeLondon/StrataTrapper
Introduce text progress bar
- Dominant language
- MATLAB
- Stars
- 13
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
Example in Rust for reference:
```rust
use std::{io::{self, Write}, thread, time::Duration};
fn main() {
for i in 0..=100 {
let width = 40;
let filled = i * width / 100;
let empty = width - filled;
print!(
"\r[{}{}] {:3}%",
"#".repeat(filled),
" ".repeat(empty),
i
);
io::stdout().flush().unwrap();
thread::sleep(Duration::from_millis(50));
}
println!(); // final newline
}
```
Contributor guide
No contributing guide indexed for this repository
Research direction
No target file, entry point, or test is named. Search the repository for the relevant output path and compare its needs with the Rust reference; done means a text progress bar is integrated with the intended output and its behavior is verified.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- matlab, rust
- Domain
- cli
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100