d-snp (Tinco Andringa)
- Login: d-snp
- Email: mail@tinco.nl
- Registered on: 11/20/2009
- Last sign in: 04/24/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
11/26/2020
-
04:57 PM Ruby Bug #17348 (Rejected): Shadowed method can not be evaluated on the line that it is shadowed
- I encountered this in the code a junior Rubyist wrote. Rewriting to more logical code solved our problem, but in my opinion it should not have been an error. I reduced the code to this:
``` ruby
def a
""
end
a = a[0]
puts a.ins...
06/14/2019
-
10:30 AM Ruby Feature #15799: pipeline operator
- From my perspective, the |> operator exists because in functional programming languages you have these increasingly nested function calls which have to end with a stack of parentheses that are hard to read. In Haskell I very frequently u...
05/10/2011
-
02:55 AM Ruby Bug #4662: Date#strftime %v gives allcaps instead of normal caps
- I have submitted a pull request for convenience:
https://github.com/ruby/ruby/pull/18 -
02:53 AM Ruby Bug #4662 (Closed): Date#strftime %v gives allcaps instead of normal caps
- Since the big strftime changes of past month strftime gives a capitalised month abbreviation like so:
'%v'=>[' 3-FEB-2001' {:mday=>3,:mon=>2,:year=>2001}]
This is different from before where:
'%v'=>[' 3-Feb-2001',{:md... -
01:23 AM Ruby Bug #4655: String#to_c does not support scientific notation
- > Issue #4655 has been updated by Kenta Murata.
>
> Status changed from Open to Closed
Thanks for accepting my patch! :) I'm a bit of a beginner with C, I
plan on submitting patches to bugs I find every now and then. Please
...
05/09/2011
-
08:56 AM Ruby Bug #4655: String#to_c does not support scientific notation
- I've submitted a pull request for this bug:
https://github.com/ruby/ruby/pull/16 -
07:45 AM Ruby Bug #4655 (Closed): String#to_c does not support scientific notation
- Specs have been added for this but I did not find an issue for it so I report it here.
Example:
assert_equals('2e3+2e4i'.to_c, Complex(2e3, 2e4))
05/05/2011
-
10:15 AM Ruby Bug #4571: YAML.load given an ISO8601 timestamp creates an incorrect value for usec
- I have submitted a pull request for this bug:
https://github.com/ruby/ruby/pull/15