Fred Hebert
Fred Hebert
Yeah for the time being I'll stop investigating here and track the OTP repo's bug, seems related.
This function just sums up the values reported by the VM's many allocators: https://github.com/ferd/recon/blob/9efec263d84d0435230f4d3312a4afb352b8f71c/src/recon_alloc.erl#L207-L214 If there's a disagreement, it's either an consequence of very fast allocation and deallocation while the...
yeah that's a good idea for a more accurate result. I never had to run into that issue in the past (recon used to be a bunch of snippets coworkers...
I'll have to think about it. I'm deeply uncomfortable with people relying on these constructs in any kind of production code. They were experiments to explore some semantics for pipe...
@fenollp would you like to get ownership of this repo? I think I've hit what I wanted in terms of experimentation with it, and you seem more interested in driving...
heh, I can't do it as long as fenollp/fancyflow already exists
I'm fine with the switch if eunit users end up having a better experience. I personally don't use the tool, so I otherwise don't have a stake in this aside...
Can `cf` be patched to not have these bugs instead of having to support and maintain two libraries at once?
@tsloughter I would have expected that one of the newer releases would be fixed? This is an issue from a year ago. Is it still active on 3.18 or even...
@jlouis use a simple thing like a dumb web server: ``` bash $ while true ; do echo -e "HTTP/1.1 200 OK\r\nConnection:close\r\nContent-Length: ${#$(date)}\r\n\r\n$(date)" | nc -l -p 8081 ; done...