Mark Meeus

Results 11 issues of Mark Meeus

Hi, Thanks for the great lib, awesome work! We are building a system where we have to process a stream of messages from a remote system. To be more precise,...

Hi, I've been using an adaptation of your btree code in a project of mine (https://github.com/markmeeus/MarcelloDB) I noticed an error in the implementation of the btree: When deleting backwards, and...

There is this closed issue related to string.gmatch: https://github.com/rvirding/luerl/issues/43 I would guess that the trickiness of implementing this is the stateful iterator gmatch should return. Erl_func can't have mutable variables....

The following Lua script creates a function and stores that function in a global table `rememberedFunctions` This anonymous function is created with an environment to hold an argument from the...

after running this code: ``` result, error = pcall(function() ipairs("hello") end) ``` The error variable contains `badarg in ipairs: []` Expected: `badarg in ipairs: ["hello"]` The reason for this formatting...

status:answered
status: merged

Give this script ```lua print("line1") for i=1,10 do print("line3") noSuchFunction() end ``` The call to nuSuchFunction() throws an error, at which point the luerl stack looks like this: ``` [...

On macos, the vips library needs to be installed before doing the npm setup. Otherwise npm install image-resizer will fail.

The current implementation of enabling/disabling observers has side effects into other threads. I understand that the set of observers per model should be global, but disabling an observer is usually...

No point in having comparer objects being created all the time

IndexesTest should be refactored to DRY-out all the data creation.

enhancement