Victor Maslov
Victor Maslov
``` 1 verbose cli [ '/usr/bin/nodejs', '/usr/bin/npm', 'start' ] 2 info using [email protected] 3 info using [email protected] 4 verbose run-script [ 'prestart', 'start', 'poststart' ] 5 info lifecycle [email protected]~prestart: [email protected]...
See https://github.com/Nakilon/dhash-vips/issues/16#issuecomment-1100679575 Though note that according to my tests the comparison quality went down a bit, not sure why. Maybe the colorschemes are not really the same, but I suppose...
```ruby require "maxitest/autorun" describe "" do around do |test| catch(:_){ test.call } end it do throw :_ end end ``` ```none UncaughtThrowError: uncaught throw :_ ```
To be able to find the prevailing block.
I'm implementing [Befunge-98 in Ruby](https://github.com/Nakilon/befunge98). The problem is that according to the Lahey-space wrapping the backtracking a long delta is not the same as circling around a sphere -- it...
When the GAUGE value is 500, 600, it displays correctly with this: ```ruby "--left-axis-format", "%.0lf", ``` But when there are higher values, like 5000, 6000, it displays as just "5","6"....
```ruby require "maxitest/autorun" describe "" do [1, 2].each do |i| it "#{i}" do p i end end end ``` ``` $ bundle exec ruby temp.rb -l 5 Run options: -l...