Don't change the language to make it easier (unless that can be a free lunch), but get someone doing a "Today in rust" or "Doing X in rust" blog/vlog. Also please get some sort of RNG into the main language (not as a crate).
Any particular reason rng must be in the stdlib? It's an "official" crate, maintained by the Rust developers. In general Rust tries to keep things out of its stdlib instead opting for crates. It lets these evolve independently of the stdlib (not tied to rustc releases), and also lets them have their own versioning (none of that urllib2 urllib3 nonsense)
Rust's 2017 Roadmap
21–30 of 274 posts
Re: Rust's 2017 Roadmap
#22> Plans include a new book, You should consider publishing an official, printed book. I would totally pay $30-40 for something like this. And once it's already written, the actual publishing shouldn't be too time consuming (but idk lol). I think that there's a lot of people who'd buy it just to support the project. On one hand, I do have environmental concerns, but on the other hand, I feel like my retention rate wit…
It will be printed by No Starch.
Re: Rust's 2017 Roadmap
#23Earlier quoted context omitted.
What advantage would putting an RNG into the language do? Are there any languages where an RNG is a language construct?
I think they mean stdlib. RNG is not in the language for any language I can think of.
Re: Rust's 2017 Roadmap
#24Earlier quoted context omitted.
Any particular reason rng must be in the stdlib? It's an "official" crate, maintained by the Rust developers. In general Rust tries to keep things out of its stdlib instead opting for crates. It lets these evolve independently of the stdlib (not tied to rustc releases), and also lets them have their own versioning (none of that urllib2 urllib3 nonsense)
I would say random numbers are a fairly core programming construct for a standard library. They're important, difficult to get right, and have huge implications if you get them wrong.
Re: Rust's 2017 Roadmap
#25> Plans include a new book, You should consider publishing an official, printed book. I would totally pay $30-40 for something like this. And once it's already written, the actual publishing shouldn't be too time consuming (but idk lol). I think that there's a lot of people who'd buy it just to support the project. On one hand, I do have environmental concerns, but on the other hand, I feel like my retention rate wit…
Rust needs a Rust book not written by the Rust developers. "Rust for Dummies", if you will.
Re: Rust's 2017 Roadmap
#26What I actually would like is a few "Books" like "Rust for C++ people", "Rust for Go people", etc. Those would describe in many examples how things that are achieved in language X using A, B, and C can be done with D in Rust.
Personally, I would like a "Rust for Gophers" book that would describe things like how does Rust do composing (that is, how to do what Go calls embedding), interfaces in Rust (with dynamic vs static dispatch), HTTP in Rust (this may be waiting for Tokio?), how to model your application's types and not get into who-owns-what traps.
Also, what I really want is some kind of a list of Rust "warts" and their explanation. Like the fact that sometimes you can't do a.b().c(), but have to write tmp = a.b(); tmp.c().
Re: Rust's 2017 Roadmap
#27> Plans include a new book, You should consider publishing an official, printed book. I would totally pay $30-40 for something like this. And once it's already written, the actual publishing shouldn't be too time consuming (but idk lol). I think that there's a lot of people who'd buy it just to support the project. On one hand, I do have environmental concerns, but on the other hand, I feel like my retention rate wit…
Rust needs a Rust book not written by the Rust developers. "Rust for Dummies", if you will.
https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...
Re: Rust's 2017 Roadmap
#28Earlier quoted context omitted.
I've used VSCode, you have to pick the GNU abi and install a couple plugins but it works reasonably well.
I think VS Code is what the community is rallying around to become the flagship cross-platform Rust IDE, with intellij-rust as the second choice.
Re: Rust's 2017 Roadmap
#29Earlier quoted context omitted.
I've used VSCode, you have to pick the GNU abi and install a couple plugins but it works reasonably well.
I think VS Code is what the community is rallying around to become the flagship cross-platform Rust IDE, with intellij-rust as the second choice.
Re: Rust's 2017 Roadmap
#30Earlier quoted context omitted.
I've used VSCode, you have to pick the GNU abi and install a couple plugins but it works reasonably well.
I think VS Code is what the community is rallying around to become the flagship cross-platform Rust IDE, with intellij-rust as the second choice.