Vladimir Ulianitsky
Vladimir Ulianitsky
> That "illegal hardware instruction" might actually be stack overflow. It is, see #13 I wish I'd seen that issue before I spent two hours debugging
[This](https://github.com/uvlad7/xml2json-rb/blob/0e794a5e5b12632a6a3c69b96147cf5955ff80e0/ext/xml2json/jagnus/src/lib.rs#L44) can be an implementation example
I don't see any of these checks anywhere in the source code other than the tests.
Well, maybe I'll do that if you accept a full rewrite of the parser. I think an implementation using [parslet](https://github.com/kschiess/parslet) would be nice. [Here](https://github.com/taichi-ishitani/rb_json5/tree/master/lib/rb_json5/parser) is an example of json5 parser...
I'm also not sure what to do with it, probably just highlight the pitfall in the docs is OK. Usually this has no effect.
No, I never needed that. Actually, I used `Arg::keepAlive` only in constructor and have never ran into `keepAlive` on exception issue, too. I just noticed it can happen.
I need your help, I updated `oxi-test` gem to work with jruby for `rb-sys` CI tests, but env preparation [fails](https://github.com/uvlad7/oxi-test/actions/runs/7226128416/job/19691033962) and I don't understand why. UPD: Just `cargo-binstall` action doesn't...
So, it [works](https://github.com/uvlad7/oxi-test/actions/runs/7292391087) on ubuntu and macos, but I'm not able to make it work on windows [Here](https://sprunge.us/xJRUHs) is a Makefile generated on Jruby, and [here](https://sprunge.us/OwmFeB) - on MRI. The...
It appears that `actions/setup-java` breaks `oxidize-rb/actions/setup-ruby-and-rust` cache on macos - cargo suddenly becomes linux binary. I had to run `gh cache delete --all` to [bypass](https://github.com/uvlad7/rb-sys/actions/runs/7306198300/job/19910731044) this.
@dElogics you should understand the difference between custom cookies ('CURLOPT_COOKIE') and cookies in the internal engine (`CURLOPT_COOKIELIST`). The first ones are what `cookies=` sets and `cookies` returns. The last ones...