Eric R. Schulz

Results 7 comments of Eric R. Schulz

Writing to a local file system is not implemented. One idea is to use the included SQLite database instead of a filesystem. Lua is used for simplicity as it only...

Please give a code example of using this table with luaproc.

`luastatic` generates a portable C file, so it could be modified to run in the kernel. For compiling Lua to an iso, see: https://github.com/ers35/luakernel

You need to link with the Lua library. For example, try adding `-l/usr/lib/x86_64-linux-gnu/liblua5.3.a` to the command line. Run this command to search for liblua.a on your system: `find /usr/lib -name...

How about this? Can you give a more specific example? ```lua -- string2.lua local string2 = {} function string2.hello() return "hello" end return string2 ``` ```lua -- main.lua local string2...

Sounds great. People already use luastatic and LuaRocks together, so creating a straightforward command makes sense. See https://github.com/mpeterv/luacheck/blob/9b6329da9717289ca44c1ada8c4ab73393bcbc35/scripts/build-windows.sh as an example. How can I help?

I had the same problem on Xubuntu 16.04. `sudo apt install ibus ibus-gtk ibus-gtk3`, logout, and login solved the problem for me.