Daniil Baturin
Daniil Baturin
Do you have ideas for the UI? The problem with IPsec is that it allows hashes with widely variable lengths, so there must be some way to enter that.
That's a good idea! I will add a paragaph on useful options.
I've looked into it again and still looks as esoteric to me as it was when I last looked. :) Are there any ways to get two nodes to communicate...
Hi! Thanks, I'll have a look and get back to you.
Gitbook? No. Just no. For starters, the "free for open source" plan allows no more than five collaborators. Second. I would rather not trust a closed cloud service if I...
Oh man... We should document it indeed, it's much needed work, but it's this problem precisely: if we do it, we will be the first people ever to offer readable...
>Have you confirmed that it takes 10MB of space to parse? You are right! Parsing as such (`open_in Sys.argv.(1) |> Markup.channel |> Markup.parse_html |> Markup.signals`) only takes about 4MB. But...
>Could you more fully confirm this by draining the stream using Markup.drain? Interesting! It looks like calling `Markup.drain` reclaims all that memory and solves the problem. I'm going to run...
Wait, I completely misunderstood the purpose of `Markup.drain`. The point stands: `Markup.channel |> Markup.drain` doesn't consume 600MB of RAM while processing that file. But changing drain to `Soup.from_signals` consumes all...
>Or did you actually do `Markup.channel |> Markup.parse_html |> Markup.signals |> Markup.drain` Sorry, I think the first time I did it wrong indeed! I've just done `Markup.channel |> Markup.parse_html |>...