tim2CF
tim2CF
Hello! Thanks for article. I have some questions 1) What's a point to create Distillery releases when you have full-operational Erlang and Elixir inside Docker image (that is used to...
Hi again @gomoripeti Thanks for response! This bug appears if I'm trying to define any custom protocol, so minimal Elixir code is ```elixir defprotocol Foo do def bar(_) end ```...
The same issue with latest vim and hie-8.6.5 on macOS
@lpil that's fine, but top-level expressions based variant is not compiling (even if patterns are exhaustive) https://github.com/alpaca-lang/alpaca/issues/269
not use `__before_compile__/1` ? :)
I meant not exactly GHC.Generics, but some sort of protobuf AST which can be used to fold protobuf messages in generic way. Or at least some sort of protobuf reflection...
Well, maybe not data itself, but schema of data. Information about, types, names and indexes of messages in form of Haskell terms. Protobuf reflection API exists in some implementations. I'm...
@Gabriel439 cool, thanks for the link! I'm building library for signing/verifying protobuf messages in deterministic way, and wanna to support both Haskell implementations, because I'm using both of them. We...
Probably gRPC C code is causing this right? `receiveLongServerStream` in my example is client-side listener, basically subscription for server events with some attached IO handler, and it has very big...