Ben Naylor
Ben Naylor
@lopopolo - Thoughts on difficulty? Medium?
I've been playing around a little bit with `irb` and some of these kwargs in things such as `Time` and `String`. As per the description, there is validation on the...
Ah, I stumbled upon the actual `kwargs` structure that mruby uses: https://github.com/artichoke/artichoke/blob/trunk/artichoke-backend/vendor/mruby/include/mruby.h#L948-L1001 The most interesting part (their examples are very nice too): ```c struct mrb_kwargs { uint32_t num; /* number...
Suspect: ```console [3.1.2] > s = "\u{1F600}" => "😀" [3.1.2] > s.force_encoding(Encoding::ASCII) => "\xF0\x9F\x98\x80" [3.1.2] > t = s.b => "\xF0\x9F\x98\x80" [3.1.2] > s == t => false [3.1.2] >...
@AI-Mozi In case it helps, I think this line in the Ruby docs is the crux of the issue: > Returns false if the two strings' encodings are not compatible...
In saying this: ```console [3.1.2] > u = "\xD6".force_encoding(Encoding::ISO_8859_1) => "\xD6" [3.1.2] > v = "\xD6".force_encoding(Encoding::ISO_8859_2) => "\xD6" [3.1.2] > u == v => false ``` :point_up: I'm not sure...
Just tidying up old issues I created a long time ago and am not following up on. Cheers though!
Oh nice :broom:ing. Yeah, I think this makes sense to close. A quick grep for `mruby-time` only shows things in `vendor/` which feels like that's the main goal here :-D.
I've recently moved something from our setup to the latest version of nchan and have been looking at this error. I have found a way to reproduce via docker, and...
Another less consistent way to get the spool error: 1. Post a message onto the queue ```shell $ curl -X POST -d "hello" "http://localhost:8000/pub" ``` 2. Listen to the websocket...