There's plenty of misinformation on Twitter and Reddit too. In fact they're overflowing with trolls, shills and censorship and you need to be very particular in the way you approach the information if it's to be at all useful.
I just read it and like it very much, especially for its brevity and because it is on-point.
If you have experience with low level languages, pointers, memory and actually have some programming experience, then this is your book, especially because it is so up-to-date.
But I would not recommend it to someone, who has no experience and wants to learn C as a first language.
this is a similar solution for transfering files without storing. it requires both sender an receiver to be online at the same time. https://github.com/warner/magic-wormhole
To be honest, what I am most interested in, is how you got the people to actually care. So what exactly did you do for marketing? Did it just work, or how exactly did you achieve initial traction?
Haha, this is actually still an open question. My marketing thus far has been exclusively just posting it on a couple subreddits and this Hacker News thread. I don't think I've yet achieved traction because there aren't enough users to sustain interest so most people get bored pretty quickly and log off, but I'm working on it! If I figure this out I'll let you know though.
I have tried out loki, too. But I was not satisfied because you have to run an extra server for it. I have only a very small app so I was searching for a much simpler solution and found https://goaccess.io/ . The nice thing is that it is very flexible (you can pipe your logs in command line, but also run as a server) and if you are using standard tools like e.g. nginx or apache, the setup only takes an evening :)
It is always a question of complexity and how much time you want to spend :) At first I used Multitail to peek into server logs via ssh. Then I switched to GoAccess and if you really have a greater infrastructure I would maybe switch to Loki or ELK.
I've used GoAccess in the past, but didn't find it a good fit esp. since I prefer JSON logs. I don't know if it supports this - maybe I didn't read enough docs - but at the time, I remember it was easier to spend an hour whipping up a tool in Go that did exactly what I wanted.
As for loki, it's a separate server but the setup takes maybe 10-30 minutes of reading some docs, maybe changing some config files and the systemd unit file to keep it up and running is less than 10 lines (most of which is boilerplate).
Of-course I have the benefit of a client library so I can just call a function on a struct at the end of a request with no need to worry about serializing the relevant data into some predetermined format, compression, etc.