|
Some saves:
`Rational(d,86400)` -> `d/86400r` Get rid of the variable `a` since it is used in only one place. `DateTime.new(0,1,1,0,0,0)` -> `DateTime.new(0,1,1)` also in newer ruby versions you can use numbered parameters to replace d with _1 and remove `|d|` Pretty sure there might be some more which i do not see immediately :) |
151 bytes (including the ruby -e, down from 174.) Thanks!