maxer137
maxer137
> Here's the manage channel code. One thing I'd like to note is that it seems both of these buttons appear even if you lack the relevant perms, so some...
I had some discussion with some friends about this. I would hope it's not the case, but I can image some people checking the output of seq to see if...
It appears that this might be an issue with the BigDecimal crate. When trying to parse the argument, it will convert the string `4e4000003` into a string with a four...
But it seems like uutils/coreutils does the string conversion. For some reason, we're turning `4e4000003` into a string with a four followed by 4000003 zeroes? The issue still ends up...
Indeed. Using BigDecimal we are able to go up to much larger values than originally in GNU seq. I have removed the zero padding from `parse_decimal_and_exponent` and `parse_decimal_no_exponent` in #6185...