Hi, sorry, yes it's `comparison of Float with 0 failed`, probably there was some typo. I agree it should raise or return. But it shouldn't raise ArgumentError. Anyway, it probably has the lowest priority because it doesn't cause any iss...SouravGoswami (Sourav Goswami)
When I have a Float::NAN as a number, I expect all the method to work properly. For example, `Float::NAN - 1` gives NAN. But Float::NAN.to_i raises FloatDomainError. But in case of clamp(), Float::NAN.clamp(0, 100) returns `Argumen...SouravGoswami (Sourav Goswami)
Both strip(), and rstrip() will delete \u0000 from the end of a string. But I have a string that has "\u0000hello\u0000". Output from strip, lstrip and rstrip: "\u0000hello\u0000".strip # => "\u0000hello" "\u0000hello\u0000".lstri...SouravGoswami (Sourav Goswami)
IRB also crashes when you write: a = 5 or any line of code, and press the Delete key. The error goes like this: `irb(main):001:0> puts ?? Traceback (most recent call last): 35: from /home/sourav/.rvm/rubies/ruby-2.7.0-preview1/bin/...SouravGoswami (Sourav Goswami)
Hello I am using the rvm 2.7 preview version of Ruby. [I also tried the git version yesterday, which has the same problem mentioned below]. I am unable to use keys like End, Home, Insert etc. The IRB crashes (with TypeError) when yo...SouravGoswami (Sourav Goswami)
Well, on Linux Kernel 4.19+ the fs.protected_regular and fs.protected_fifos sysctls were introduced in order to make some data spoofing attacks harder. https://github.com/systemd/systemd/blob/03b6fa0c5b51b0d39334ff6ba183a3391443bcf6/N...SouravGoswami (Sourav Goswami)