oktoberfest6

Results 5 comments of oktoberfest6

I solved my issue using os.date("%z") ``` print("ts1 iso8601 local:", d1local:fmt("${iso}") .. os.date("%z", ts1)) --> ts1 iso8601 local: 2023-10-29T02:00:00+0200 print("ts2 iso8601 local:", d2local:fmt("${iso}") .. os.date("%z", ts2)) --> ts2 iso8601 local:...

Hi, lcurl.dll depends on the libcurl library. Which tool do you use to compile lua-curl ? This tool provides the necessary files (header, .lib) to compile and you will certainly...

I encouter today the same problem. ``` local base64 = require('base64') local s = "a" local b = base64.encode(s) print(b) --> YQ== local s2 = base64.decode(b) print(s == s2) -->...

Hello, I also observed the same phenomenon. Using the script below I have three different behaviors: - the script receives the payload and displays "received message #msg = 200000" -...

@Tieske: thanks for the fix! I also noticed that you implemented (since 1.0.0) signal_idle and signal_code, which are a nice way to detect timeouts when using the module with external...