nanobowers

Results 31 comments of nanobowers

@colinlieberman it's due to this line in the pre-normalization step: ``` ruby text.gsub!(/^\s?an? /i, '1 ') ``` which converts any a/an followed by a space into the numeric '1' which...

Hi @viraptor I've been working on some feature branches with improved types support, num.cr support and more tests. Per your report I've made updates just now that should allow you...

@viraptor, I updated handing of `is None` and `is not None` with some added tests just a moment ago, which should take care of the last concern. As for the...

iirc, [py2rb](https://github.com/nanobowers/py2cr) handles the for-else case with what @jayvdb describes.

@dgutov Unfortunately any arbitrary Ruby program is not a valid Crystal program. It is possible to create very simple (trivial) Ruby programs that can compile as valid Crystal, but this...

I have the same issue: test code: ```ruby #!/usr/bin/env ruby require 'psych' require 'pp' pp Psych.load_file(ARGV.first) ``` ___ *bad.yaml* contains (note the single space before abc): ``` abc: 123 xyz:...

Further diagnosis: #parse_stream correctly throws a syntax error: ``` 2.1.5 :257 > Psych.parse_stream(" a: 1\nb: 2") Psych::SyntaxError: (): did not find expected at line 1 column 1 from /home/ben/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/psych.rb:373:in `parse'...

@tenderlove maybe someone else can take a look at this? I isolated the problem, but am not sure how to fix it without breaking other stuff. I feel like the...

Hi @mrkn and @kojix2 , I think that getting proper support for 256 colors (and 24-bit) is necessary to fix this issue and to support heatmap plots (#29 ). As...

@mrkn I am now running into this issue in trying to enable heatmap support. For heatmap, storing the colors as Colors::RGB objects is preferable compared to a single integer. This...