Pierre Chapuis

Results 20 issues of Pierre Chapuis

You [use tostring](https://github.com/nrk/redis-lua/blob/4408c3d686ffd1f2689c0561a166821785cc09ec/src/redis.lua#L412) to convert numbers to the Redis protocol format. This does not work correctly with integers above `10^14`: ``` > =tostring(10^14-1) 99999999999999 > =tostring(10^14) 1e+14 ``` It is...

For instance: ``` local function map(t: {A}, f: function(A):(B)): {B} local r = {} for i, v in ipairs(t) do r[i] = f(v) end return r end local function f(a:...

feature request

I wanted to bind an event from [an external component library](https://component.kitchen/elix/ListComboBox) that uses snake-case. The event is called `selected-index-changed`. I tried this: ... but it turns out that doesn't work...

- use --testing flag to avoid timestamp issue - add an empty config file for tests/simple

When used in a C program that also uses OpenSSL (or another library that uses OpenSSL), re-initializing OpenSSL like `initall()` does will cause issues. There should be a way to...

enhancement

`make test_macosx` returns this: ``` make test_posix "SOCC=MACOSX_DEPLOYMENT_TARGET=10.3 cc -dynamiclib -single_module -undefined dynamic_lookup -fPIC" MACOSX_DEPLOYMENT_TARGET=10.3 cc -dynamiclib -single_module -undefined dynamic_lookup -fPIC ffi.o ctype.o parser.o call.o -o ffi.so LD_LIBRARY_PATH=./ lua test.lua...

Is there a reason why the rockspec constrains LuaSocket to `= 3.0rc1-2` (as of 4.6.0)? This is an old version which does not work well with Lua 5.4.3+ because of...

This implementation only supports the MD5 algorithm. We could implement [MD5-sess](http://tools.ietf.org/html/rfc2617#section-3.2.2.2) as well. However MD5-sess is not very useful and is stateful (HA1 must not be recalculated after the 1st...

Currently this implementation does not re-use nonces, so we make `2*n` requests. Implementing it would allow us to make only n+1 requests. Note: if somebody wants to implement this, please...

enhancement