Rust concurrency patterns: Natural born pipelines
https://medium.com/@polyglot_factotum/rust-concurrency-patterns-natural-born-pipelines-4d599e7612fc
https://medium.com/@polyglot_factotum/rust-concurrency-patterns-natural-born-pipelines-4d599e7612fc
Medium
Rust concurrency patterns: Natural Born Pipelines
There seems to be demand for a “Rust concurrent pipeline” guide à la https://blog.golang.org/pipelines, so let’s give it a try.
Build a sequence-based recommender system in Rust
https://maciejkula.github.io/2018/07/27/recommending-books-with-rust/
https://maciejkula.github.io/2018/07/27/recommending-books-with-rust/
maciejkula.github.io
Recommending books (with Rust) - Mostly Engineering
In this post, we’re going to build a sequence-based recommender system in Rust: a system that accepts a person’s reading history as input, and outputs recommendations on what to read next.
Building systems like this – like much of machine learning and data…
Building systems like this – like much of machine learning and data…
My experience with the Rust 2018 preview
https://boats.gitlab.io/blog/post/my-experience-with-rust-2018/
https://boats.gitlab.io/blog/post/my-experience-with-rust-2018/
withoutblogs
My experience with the Rust 2018 preview
Recently, I wrote a little a side project to sign git commits without gpg. When I did this, I decided to use the Rust 2018 edition. I also transitioned an existing library from Rust 2015 to Rust 2018 …
Writing a front-end WebAssembly framework in Rust: lessons learned
https://medium.com/@robert.balicki_2494/writing-a-front-end-webassembly-framework-in-rust-lessons-learned-7cc48ed27d96
https://medium.com/@robert.balicki_2494/writing-a-front-end-webassembly-framework-in-rust-lessons-learned-7cc48ed27d96
Medium
Writing a front-end WebAssembly framework in Rust: lessons learned
Introduction
2018 edition end of week post (2018-07-27)
https://internals.rust-lang.org/t/2018-edition-end-of-week-post-2018-07-27/8078
https://internals.rust-lang.org/t/2018-edition-end-of-week-post-2018-07-27/8078
Rust Internals
2018 Edition End of Week Post (2018-07-27)
This is the weekly Edition Status Update; it contains the state of the content areas surveyed this week. This is the third post in this series. You can read the second post here. This week will be the last status update before Preview 2. Note: there has…
The Embedded WG newsletter 8
https://internals.rust-lang.org/t/the-embedded-working-group-newsletter-8/8089
https://internals.rust-lang.org/t/the-embedded-working-group-newsletter-8/8089
Rust Internals
The Embedded Working Group Newsletter - 8
2018-07-29 This is the eighth newsletter of the Embedded WG where we highlight new progress, celebrate cool projects, thank the community, and advertise projects that need help! If you want to mention something in the next newsletter, make sure to leave…
Rust 2018 release schedule and extended beta
https://internals.rust-lang.org/t/rust-2018-release-schedule-and-extended-beta/8076
https://internals.rust-lang.org/t/rust-2018-release-schedule-and-extended-beta/8076
Rust Internals
Rust 2018 release schedule and extended beta
Hey all; we just published a broad overview of Rust 2018 over at the main Rust blog. I also wanted to share with you all some updates about the schedule and process by which we’ll be shipping Rust 2018. Here’s an overview of the dates and versions: …
Data manipulation in Rust (Part 1: nalgebra)
https://misoraclette.github.io/2018/08/04/data_manipulation.html
https://misoraclette.github.io/2018/08/04/data_manipulation.html
Miso and Raclette programming
Data manipulation in rust (Part 1 : nalgebra)
Introduction
Rust and the case of the redundant comparison
https://blog.dend.ro/rust-and-the-case-of-the-redundant-comparison/
https://blog.dend.ro/rust-and-the-case-of-the-redundant-comparison/
Solving the generalized streaming iterator problem without GATs
https://lukaskalbertodt.github.io/2018/08/03/solving-the-generalized-streaming-iterator-problem-without-gats.html
https://lukaskalbertodt.github.io/2018/08/03/solving-the-generalized-streaming-iterator-problem-without-gats.html
lukaskalbertodt.github.io
Solving the Generalized Streaming Iterator Problem without GATs · Lukasʼ Blog
A blog about programming, Rust, computer graphics and other stuff.
Stacked borrows: An aliasing model for Rust
https://www.ralfj.de/blog/2018/08/07/stacked-borrows.html
https://www.ralfj.de/blog/2018/08/07/stacked-borrows.html
www.ralfj.de
Stacked Borrows: An Aliasing Model For Rust
In this post, I am proposing “Stacked Borrows”: A set of rules defining which kinds of aliasing are allowed in Rust. This is intended to answer the question which pointer may be used when t...
intl_pluralrules - A new crate for CLDR plural rules
https://blog.mozilla.org/l10n/2018/08/03/intl_pluralrules-a-rust-crate-for-handling-plural-forms-with-cldr-plural-rules/
https://blog.mozilla.org/l10n/2018/08/03/intl_pluralrules-a-rust-crate-for-handling-plural-forms-with-cldr-plural-rules/
Mozilla L10N
intl_pluralrules: A Rust Crate for Handling Plural Forms with CLDR Plural Rules
intl_pluralrules is a Rust crate, built to handle pluralization. Pluralization is the foundation for all localization and many internationalization APIs. With the addition of intl_pluralrules, ...
Notes on two PRs that slightly improve Rust's performance
https://llogiq.github.io/2018/08/04/improve.html
https://llogiq.github.io/2018/08/04/improve.html
Rust concurrency patterns: No context, no cancel, no leaks
https://medium.com/@polyglot_factotum/rust-concurrency-patterns-no-context-no-cancel-no-leak-b6c1ec2dafa5
https://medium.com/@polyglot_factotum/rust-concurrency-patterns-no-context-no-cancel-no-leak-b6c1ec2dafa5
Medium
Rust concurrency patterns: No context, no cancel, no leaks
At the end of our previous article I wrote: