Myers Carpenter
Myers Carpenter
Any interest in [TTH](https://en.wikipedia.org/wiki/Merkle_tree#Tiger_tree_hash)?
+1 for this bug to get fixed. Just spent 3 hours trying to figure this out.
It worked fine for me in the Elixir sample apps I was building, but your question made me go back and check the example apps in this repo. I fixed...
I've been [yak shaving](http://joi.ito.com/weblog/2005/03/05/yak-shaving.html) all morning to get the sockjs-protocol tests to run for me. I can't get master of sockjs-protocol to run against master of sockjs-erlang without error. I...
I made what I want, not sure if this use case interests you: ```ruby require 'evil-proxy' EvilProxy::AgentProxyServer.class_eval do alias perform_proxy_request_without_hijack perform_proxy_request def perform_proxy_request(req, res, &block) puts req.host.inspect if req.host ==...
I think the wheel file it's downloading on mac doesn't have the prebuild rust binaries it should.
``` ❯ pip install -U setuptools wheel Requirement already satisfied: setuptools in /Users/myers/.pyenv/versions/3.10.1/lib/python3.10/site-packages (58.1.0) Collecting setuptools Downloading setuptools-60.5.0-py3-none-any.whl (958 kB) |████████████████████████████████| 958 kB 2.5 MB/s Requirement already satisfied: wheel in...
I wish it was as easy as having a DTLS implementation. You also need a userspace [SCTP](https://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol) stack. While you will see mention of SCTP in the erlang std lib,...
If you only wanted VoIP then you might not need SCTP. What I wanted was to be able to use the data channel, which requires SCTP.
@patrick91 I will work on some tests. The goal here is for HTML templates you need to pass fewer variables to the template if you have a page object that...