Michael Truog
Michael Truog
@bombela While libdwarf doesn't enforce an installation directory ([based on this](https://github.com/davea42/libdwarf-code/blob/d307e3417041ca9498be6df6d9bbc98fc94fd759/src/lib/libdwarf/README#L33-L36)) it looks like installation is expected to have its own libdwarf directory because it needs to avoid any potential...
No stacktrace went to the Erlang/OTP kernel logger for the problem. Only got a timeout from the HTTP client on the second request. Was using [current cowboy master](https://github.com/ninenines/cowboy/tree/8795233c57f1f472781a22ffbf186ce38cc5b049), [current cowlib...
@Mikolaj From what I have seen, the cabal-install releases 3.2.0.0, 3.4.0.0, 3.4.1.0 and 3.6.2.0 have source downloads that are unable to bootstrap. The 3.6.2.0 also does not have a valid...
@josevalim If you used the name `application:get_root_process/1` the concept would be more general because it looks like there isn't a requirement for the root process to be a supervisor. It...
@elbrujohalcon In [CloudI](https://cloudi.org) there is a flexible approach for representing dynamic callback functions as a few separate types: ```erlang {Module :: module(), FunctionName :: atom()} | {{Module :: module(), FunctionName...
i think this is a problem when not using active receives... so a problem with passive receives and all sends. The timeout being at: https://github.com/zeromq/erlzmq2/blob/master/src/erlzmq.erl#L189 https://github.com/zeromq/erlzmq2/blob/master/src/erlzmq.erl#L254 I think this behaviour...
It would also help if it was determined at what point jiffy locks up the scheduler, unless it has a stable version that uses the dirty scheduler now (I know...
@lcwxz1989 records only exist during preprocessing, so if you want them to automatically go to/from json with jsx, you will need a parse transform. I have one at https://github.com/okeuday/record_info_runtime/ which...
2. `protocol.hrl` is a generic name and while most source code should use `-include_lib("epgsql/include/protocol.hrl")` that is not always the case. If `protocol.hrl` is moved into the `src` directory as described,...
I am not attempting to say you shouldn't implement the approach described above. However, I have found it necessary to always use the indent size on the next line in...