Results 28 comments of Poga Po

I haven't take a look at [actix-net](https://github.com/actix/actix-net) and [actix-web 1.0](https://github.com/actix/actix-web/issues/722) yet. However, since they will be the main focus for the future actix. I will try to figure out if...

https://github.com/Chris-Ricketts/actix-broker might be a potential solution

Also, only one actor per type can be registered to the registry, since `LuaActor` is a concrete type, we need to work around that.

[Actix 0.7.10](https://github.com/actix/actix/releases/tag/0.7.10) provides `WeakAddr` for weak referencing an actor, which can be used to provide custom registry.

Have you tried https://github.com/hoelzro/lua-repl? It requires `debug` lib, so you need to create a Lua VM with [`rlua::Lua::new_with_debug`](https://docs.rs/rlua/0.15.2/rlua/struct.Lua.html#method.new_with_debug), which is unsafe. ~~I'm not sure if you can make a repl...

Or you can have a simple REPL with something like this: ```lua print("input>") local exp = io.read() local ret = assert(load("return " .. exp))() if ret then print("ret " .....

Yeah that would be great. Unfortunately most authors don't release code together with their papers. Manually asking for codes of each paper is quite time-consuming. If you already got the...

Sure. Send a PR if you find anything you want to be included in the list.

It would be great to have separated options at least for `zh-Hant`, `zh-Hans`, and `zh-Hant-HK`. We(g0v.social) is an active instance with primaily `zh-Hant`, some `zh-Hant-HK`, and some `Taiwanese(Hokkien)`, `Taiwanese Hakka`...

Thanks for the clarification. I tried `memdb` and got this error: ``` /Users/poga/projects/hd_test/node_modules/sodium-signatures/sodium.js:9 return sodium.crypto_sign_verify_detached(signature, message, publicKey) ^ Error: argument publicKey must be a buffer at Error (native) at Object.exports.verify...