Adrian Stanciu

Results 5 comments of Adrian Stanciu

There are 2 new lines in your output: - the latest called `writeln!` in `ReportHandler::debug` impls - the `eprintln!` that actually outputs to `stderr`: https://github.com/rust-lang/rust/blob/bc8ad24020a160e1acd7ac9f7671947dcc01264c/library/std/src/process.rs#L2045 It's deceptively easy in the...

These are mostly paid-for videos. I'll try to find an example that doesn't require a `cookies.txt` file.

I have moved the parsing of `.rsp` files before the parameter processing. `recursing` is used to mark the first call of `ProcessCommandLineSwitches`. `shouldRecurse` decides if we should go one level...

No, sorry. Should have asked for a review. You can still access my branch and send feedback. The fix was working but the code was really ugly.

Not sure if related but I get the same kind of behavior with C# code ran in a PowerShell (Core & Legacy) console. ```csharp Console.BackgroundColor = ConsoleColor.Red; Console.ForegroundColor = ConsoleColor.Black;...