Alexey Melnichuk

Results 86 issues of Alexey Melnichuk

I just try install busted and found couple problems. 1. bat file has mixed EOL (some lines have unix style and some - unix). (all commands like `@echo off` ends...

windows

MSVC uses current OS version by default. MinGW uses Win2k I think as WINVER. So e.g. in my example in `winreg` module I want to use `KEY_WOW64_64KEY` which avaliable only...

windows

At first question not related to windows only. I think I ask this before few times it past years. Why LuaRocks try copy `Lua` dir if rockspec [did not ask...

windows

I can not find way to pass Lua version suffix to makefile. I simply want to pass same value as `luarocks config --lua-ver`. I try `$(LUA_VER)` and `$(LUA_VERSION)` but without...

good first issue

i have 2 module : odbc.ex.Environment and odbc.ex.Connection each of them implement its own class. I wont reference from Environment module to Connection _class_ without specifying whole odbc.ex.Connection.Connection config.ld: ```...

mwe-needed

About changes in rockspec. In my tests it works for both static and dynamic versions of libzip.

On windows it could be done by `WaitSingleObject` and on pthread i think it could be done by [pthread_kill](http://stackoverflow.com/questions/5764045/how-to-know-if-a-pthread-died)

I find useful this module: (note: new thread call lua_init from env.) ``` Lua local llthreads = require"llthreads" local setmetatable = setmetatable local tonumber = tonumber local assert = assert...

ZMQ_Poller.remove create hole and after call `poll` socket id may change. This is testcase: ``` lua zmq = require "zmq" local wait do local ztimer = require "lzmq.timer" wait =...

Hello. I write extension plugin manager for [websocket](https://github.com/moteus/lua-websockets-extensions) and permessage-deflate extension. I test it with my websocket implementation and it pass all AutoBahn tests (client and server). I name it...