Michael Truog
Michael Truog
@trueFireblade The issue is from cowboy 1.x (https://github.com/ninenines/cowboy/tree/1.1.x) which last had a change in 2017. I filed the issue because it was a difference between cowboy 1.x and 2.x that...
The clear goal was to have `cabal-install` compile from source. What is unclear is why `cabal-install` is unable to have a source code release that always compiles correctly from source...
@gbaz Other compilation would make the version dependency explicit in the build process, so it is clear. I see no reason why `cabal-install` is unable to do that for its...
@fzakaria Yes, the issue for that is #232 . The newer versions have a completely different API, so it would require a different macro for the support. However, there may...
@hdima I was wondering if you would want to combine efforts for the support of the Erlang binary term format in python and ruby. I have https://github.com/CloudI/CloudI/blob/master/src/api/python/erlang.py and https://github.com/CloudI/CloudI/blob/master/src/api/ruby/erlang.rb which...
@hdima I have modifications for MAP_EXT, ATOM_UTF8_EXT, and SMALL_ATOM_UTF8_EXT at https://github.com/okeuday/erlang_rb and https://github.com/okeuday/erlang_py . I know tests are lacking, but it would be nice to consolidate efforts.
@devinus https://rubygems.org/gems/erlang_rb/ and https://pypi.python.org/pypi/erlang_py/ have existed for awhile. I have been using the testing from erlport for the various Erlang binary term format implementations which have grown (https://github.com/okeuday/erlang_rb , https://github.com/okeuday/erlang_py...
@beano For lists, it seems best to use an object due to the possibility of the Erlang list being improper (when doing binary_to_term, e.g., https://github.com/okeuday/erlang_py/blob/5369bf7a0c73705a3c33f92ba60b808fe780c58e/erlang.py#L401-L409). That approach doesn't prevent you...
@beano As long as a Hash is being used in the Ruby source code for storing the Erlang map there shouldn't be a problem requiring changes (i.e., doesn't seem like...
@essen I think `'HTTP/1.1 -> HTTP/2'` is an idea separate from the `cowboy_req:version/1` value that is closer to a state machine transition, so something that could be returned from a...