HackerTrans
TopNewTrendsCommentsPastAskShowJobs

erazor42

no profile record

comments

erazor42
·5 maanden geleden·discuss
Simpler just update your local network dns so whatevercompany.brain.com redirect to your local 10.0.0.3 mqtt
erazor42
·11 maanden geleden·discuss
Agree, 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 maanden geleden·discuss
Depending on where you live yes in some country 300/400€ is 2/3 months salary
erazor42
·11 maanden geleden·discuss
Yeah 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
·12 maanden geleden·discuss
khan academy is available in many language
erazor42
·2 jaar geleden·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.