Uther's comments

Uther | 4 years ago | on: Why is my Rust build so slow?

While compilation time is a well known Rust pain point, Rust error messages are really one of the best part of the language.

Complicated error messages are clearly no a common occurrence unless you rely heavily on meta-programming tricks, and that is not common in Rust, unlike C++.

Uther | 4 years ago | on: Linux Rust Support

You can already write kernel modules in Rust too.

The point is to integrate the Rust language to the Linux infrastructure so you can merge rust drivers to the official code base.

Uther | 5 years ago | on: Five Years of Rust

While I would prefer brackets, that would not be enought to solve all the problems since, there would be conflict with array syntax too.

Uther | 6 years ago | on: From Zero to Main(): Bare Metal Rust

You have to be aware of this but most of the time this is not a problem. Most of the useless checks are optimized out, and if you suffer bound check performance somewhere in the program, and you know what you are doing, you can do unchecked indexing using an unsafe block with `get_unchecked()` .

Uther | 7 years ago | on: Redox OS 0.5.0

Servo is a complete experimental standalone web engine. It only use the Javascript engine from Firefox (Spidermonkey).

Firefox is only using some parts of Servo : the graphic renderer (WebRender) and the CSS engine (Stylo).

Uther | 8 years ago | on: Using Rust in Mercurial

It is not.

Go alone is easier than Rust. But since Rust has no GC, it is easier to embed, especially with a language with a Garbage collector like Python.

page 1