erazor42·قبل 5 أشهر·discussSimpler just update your local network dns so whatevercompany.brain.com redirect to your local 10.0.0.3 mqtt
erazor42·قبل 11 شهرًا·discussAgree, I have implemented a few provider and every time they implemented their own interpretation of the spec. In the end you end up checking each provider to make sure everything works as expected.
erazor42·قبل 11 شهرًا·discussDepending on where you live yes in some country 300/400€ is 2/3 months salary
erazor42·قبل 11 شهرًا·discussYeah that’s exactly what I immediatly thought, stolen or bought. It is common today that some people sell their hair to make wig for rich people
erazor42·قبل سنتين·discuss> Has anyone else bootstrapped using Rust? What were your experiences?Yes, we are building a parsing platform in rust. (~50k loc) Stack: actix + diesel (async) for PG.Getting the right project structure was not simple (that could deserve a blog post). Performance is super nice if you do heavy IO.Beware of memory usage handling with actix.Day to day dev is a joy, once it compile you can be confident it will work as expected.Never .unwrap / panic !Use clippy to check your code.Once you have your project structure done, adding a new web handler is as fast as adding one in Django or Flask.