Results 64 comments of Brian Maher

After using this a bit, I've come to the conclusion that it is better to use the Lua 5.3 idiom of using the __name field of the metatable. This change...

FWIW, I'd suggest using __name field of metatable to determine "object" vs "array" vs "null" vs "number". This aligns with Lua 5.3 luaL_newmetatable(L, name) method which records the name in...

@mpx do plan to follow up on this? If you would prefer to no longer maintain the lua-cjson code, I can take over ownership. Thanks, -Brian

What about option (4): Add a new option that allows numbers to be transformed from string into whatever type is desired? This means consumers of CJSON can choose option (1),...

Please see https://github.com/mpx/lua-cjson/issues/11 ...I agree with @mpx that this needs to be done on a per-value basis rather than a per-encode operation since you may want to mix an empty...

I just opened up https://github.com/zyedidia/micro/pull/1299 which supports multi-key bindings. To give it a try, pull my branch, build the code, and place this in `~/.config/micro/bindings`: ```json { "Ctrl-a": "StartOfLine", "Ctrl-e":...

Hi @adamchalmers , I've been noticing the websocket connects are getting prematurely closed. It may be an issue in our end (need to investigate further), but that seems to be...

Sorry for the delay, things are pretty busy for me, so I probably won't be able to give this a great deal of attention until the weekend. With that said,...

Unfortunately, I no longer use this library that I created and have been maintaining, so I don't have any interest in adding this support, however pull requests will be reviewed...

Thanks for the PR! My biggest concern is that we have an unsafe API that is taking an arbitrary Lua string and casting it. Therefore, if you pass in a...