Lakshya Kumar

Results 58 comments of Lakshya Kumar

I tried running this command ``` $ time cargo run seq 4e4000003 4e4000003 > out.txt Compiling coreutils v0.0.26 (/home/carbrex/uutils/coreutils) Finished dev [unoptimized + debuginfo] target(s) in 6.31s Running `target/debug/coreutils seq...

Upon further investigation I found that seq supports floating point only upto f128(128 bit floating point number). For example, `seq 11e4931 11e4931` works but `seq 12e4931 12e4931` throws an error.

> Hi again! I made a mistake and merged your other PR a bit too quickly, which is why the other maintainers had to do a force-push. Sorry ^^' >...

Thanks for your patience! Its ready to be reviewed now. I was not able to remove this [Add test for ignoring time-style if time not defined](https://github.com/uutils/coreutils/pull/6172/commits/3a13d3e43f3810fa5cd3c00fe77e05a602989cac) commit using rebase as...

> please fix the lint I think all the lint tests have passed, haven't they?

> Seems that it needs more work: With this PR: > > ``` > ./target/debug/coreutils env -i -0 -u=kQ4dALb1 A=0d CZj=lYr > env: cannot unset '=kQ4dALb1': Invalid argument > ```...

These are some other results with GNU that don't match: ``` $ env -0 -u=kQ4dALb1 - A=0d CZj=lYr A=0dCZj=lYr $ env -0 -u=kQ4dALb1 - A=0d CZj=lYr A=0dCZj=lYr $ env -u=kQ4dALb1...

I am converting this to a draft pr until I fix these.

Some more deviations from gnu are ``` $ env D=ddsa - A=0d CZj=lYr env: ‘-’: No such file or directory $ cargo run env D=ddsa - A=0d CZj=lYr D=ddsa A=0d...

I am having the same problem, ``` sudo dmesg | grep rtw [ 2.986397] rtw_8822ce 0000:01:00.0: enabling device (0000 -> 0003) [ 2.986786] rtw_8822ce 0000:01:00.0: firmware: direct-loading firmware rtw88/rtw8822c_fw.bin [...