Skip to content

Commit b106b4d

Browse files
authored
Merge pull request #1297 from emberian/add-links-341
Add links 341
2 parents d57d7fe + 090a532 commit b106b4d

File tree

1 file changed

+28
-14
lines changed

1 file changed

+28
-14
lines changed

draft/2020-06-09-this-week-in-rust.md

Lines changed: 28 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Check out [this week's *This Week in Rust Podcast*]()
2020

2121
## News & Blog Posts
2222

23+
* [Announcing Rust 1.44.0](https://blog.rust-lang.org/2020/06/04/Rust-1.44.0.html)
2324
* [Enumerating monitors in Rust using Win32 API](https://patriksvensson.se/2020/06/enumerating-monitors-in-rust-using-win32-api/)
2425
* [Rust cli app integrated with slack](https://bprog.github.io/rust_slack_bot/)
2526
* [Hack week: miniCouchDB in Rust](https://www.garrensmith.com/blogs/mini-couch-hack-week)
2627
* [Zero To Production #1: toolchains, IDEs, CI](https://www.lpalmieri.com/posts/2020-06-06-zero-to-production-1-setup-toolchain-ides-ci/)
27-
* [Announcing Rust 1.44.0](https://blog.rust-lang.org/2020/06/04/Rust-1.44.0.html)
2828
* [From Rust to Svelte, what tech stack will I use](https://hugodaniel.pt/posts/browser-tech-stack-2020/)
2929
* [Graph & Tree Traversals in Rust](https://sachanganesh.com/programming/graph-tree-traversals-in-rust/)
3030
* [Programming languages: Rust enters top 20 popularity rankings for the first time](https://www.zdnet.com/article/programming-languages-rust-enters-top-20-popularity-rankings-for-the-first-time/)
@@ -35,14 +35,22 @@ Check out [this week's *This Week in Rust Podcast*]()
3535
* [The Story of Tail Call Optimizations in Rust](https://dev.to/seanchen1991/the-story-of-tail-call-optimizations-in-rust-35hf)
3636
* [Taking the Unhappy Path with Result, Option, unwrap and ? operator in Rust](https://dev.to/codeprototype/taking-the-unhappy-path-with-result-option-unwrap-and-operator-in-rust-482b)
3737
* [This Month in Rust OSDev (May 2020)](https://rust-osdev.com/this-month/2020-05/)
38+
* [This Month in Rust GameDev #10 - May 2020](https://rust-gamedev.github.io/posts/newsletter-010/)
3839
* [This month in rustsim #11 (April - May 2020)](https://www.rustsim.org/blog/2020/06/01/this-month-in-rustsim/)
3940
* [Why the developers who use Rust love it so much](https://stackoverflow.blog/2020/06/05/why-the-developers-who-use-rust-love-it-so-much/?cb=1)
4041
* [Zero To Production #1: Setup - Toolchain, IDEs, CI](https://www.lpalmieri.com/posts/2020-06-06-zero-to-production-1-setup-toolchain-ides-ci/)
4142
* [Memory-Safety Challenge Considered Solved? An Empirical Study with All Rust CVEs](https://arxiv.org/abs/2003.03296)
43+
* [Creating Your Own Programming Language with Rust](https://createlang.rs/)
44+
* [rust-analyzer changelog #28](https://rust-analyzer.github.io/thisweek/2020/06/08/changelog-28.html)
45+
* [Getting started with Rust/WinRT](https://kennykerr.ca/2020/06/05/getting-started-with-rust-winrt/)
4246
* [Chinese] [Simple sorting algorithms in Rust](https://www.bilibili.com/read/cv4991161)
4347
* [Indonesian] [Berbagai alasan melakukan Programming dalam Rust](https://dev.to/rizki96/berbagai-alasan-melakukan-programming-dalam-rust-p67)
4448
* [slides] [Rust in 15 Minutes](https://geigerkind.github.io/training_presentations/rust_in_15_minutes/presentation.html)
4549
* [video] [Rust Web development | Boilerplate free with Rocket](https://youtu.be/tjH0Mye8U_A)
50+
* [video] [Educational Rust Live Coding - Building a web app - Part 4](https://www.youtube.com/watch?v=Dj8i3rM8FIQ)
51+
* [video] [Iterators - Rust](https://www.youtube.com/watch?time_continue=1&v=HZftwxCIXqE&feature=emb_logo)
52+
* [video] [Browser computation with WebAssembly Live Stream](https://www.twitch.tv/occupy_paul_st)
53+
* [video] [Jonathan Teaches Jason Rust!](https://www.youtube.com/watch?v=Y5-ZgxfQvpc)
4654

4755
# Crate of the Week
4856

@@ -56,6 +64,10 @@ Thanks to [Davy Duperron](https://users.rust-lang.org/t/crate-of-the-week/2704/7
5664

5765
# Call for Participation
5866

67+
* [maud: Add an on-by-default "unstable" feature](https://github.com/lambda-fairy/maud/issues/187)
68+
* [maud: Change all uses of Span::def_site to Span::mixed_site](https://github.com/lambda-fairy/maud/issues/190)
69+
* [maud: Document "Allow arbitrary attribute syntax in class and ID names"](https://github.com/lambda-fairy/maud/issues/167)
70+
* [maud: Migrate to the third-party `quote!` macro](https://github.com/lambda-fairy/maud/issues/191)
5971

6072
Always wanted to contribute to open-source projects but didn't know where to start?
6173
Every week we highlight some tasks from the Rust community for you to pick and get started!
@@ -107,14 +119,12 @@ If you are a Rust project owner and are looking for contributors, please submit
107119
This is a new section containing the results of a weekly check on how rustc's
108120
perf has changed.
109121

110-
* [2020-06-02](https://github.com/rust-lang/rustc-perf/blob/master/triage/2020.md#2020-06-02)
111-
112122
## Approved RFCs
113123

114124
Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These
115125
are the RFCs that were approved for implementation this week:
116126

117-
* [Transition to rust-analyzer as our official LSP (Language Server Protocol) implementation](https://github.com/rust-lang/rfcs/pull/2912)
127+
*No RFCs were approved this week.*
118128

119129
## Final Comment Period
120130

@@ -128,28 +138,31 @@ decision. Express your opinions now.
128138

129139
### [Tracking Issues & PRs](https://github.com/rust-lang/rust/labels/final-comment-period)
130140

131-
* [disposition: merge] [`impl AsRef<[T]>` for `vec::IntoIter<T>`](https://github.com/rust-lang/rust/pull/72583)
141+
* [disposition: merge] [`impl ToSocketAddrs for (String, u16)`](https://github.com/rust-lang/rust/pull/73007)
142+
* [disposition: merge] [Stabilize `Option::zip`](https://github.com/rust-lang/rust/pull/72938)
143+
* [disposition: merge] [Stabilize `vec::Drain::as_slice`](https://github.com/rust-lang/rust/pull/72584)
132144
* [disposition: merge] [Add raw_ref macros](https://github.com/rust-lang/rust/pull/72279)
133-
* [disposition: merge] [Tracking issue for `std::io::{BufReader, BufWriter}::capacity`](https://github.com/rust-lang/rust/issues/68833)
145+
* [disposition: merge] [Print environment variables accessed by rustc as special comments into depinfo files](https://github.com/rust-lang/rust/pull/71858)
134146

135147
## New RFCs
136148

137-
* [add lang-team Major Change Proposals as a "pre-RFC" step](https://github.com/rust-lang/rfcs/pull/2936)
138-
* [Unsafe statics](https://github.com/rust-lang/rfcs/pull/2937)
139-
* [Request for creating pipes with fd other than 0,1,2](https://github.com/rust-lang/rfcs/pull/2939)
149+
*No new RFCs were proposed this week.*
140150

141151
# Upcoming Events
142152

143153
### Online
144-
* [June 3. Johannesburg, ZA - Remote - Johannesburg Rust Meetup](https://www.meetup.com/Johannesburg-Rust-Meetup/events/270827463/)
145-
* [June 8. Auckland, NZ - Remote - Rust AKL](https://www.meetup.com/rust-akl/events/266876685/)
146-
* [June 9. Seattle, WA - Remote - Seattle Rust Meetup](https://www.meetup.com/Seattle-Rust-Meetup/events/gskksrybcjbmb/)
147-
* [June 11. San Diego, CA - Remote - San Diego Rust Meetup](https://www.meetup.com/San-Diego-Rust/events/270938860/)
154+
* [June 9. Dallas, TX, US - Remote - Dallas Rust Second Tuesday](https://www.meetup.com/Dallas-Rust/events/mzzfsrybcjbmb/)
155+
* [June 10. Wroclaw, PL - Remote - Rust Wroclaw Meetup #20](https://www.meetup.com/Rust-Wroclaw/events/271034483/)
156+
* [June 11. Berlin, DE - Remote - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/txcprrybcjbpb/)
157+
* [June 11. San Diego, CA, US - Remote - San Diego Rust Meetup](https://www.meetup.com/San-Diego-Rust/events/270938860/)
158+
* [June 18. Zurich, CH - Remote - Embedded Rust Update: probe.rs](https://www.meetup.com/Rust-Zurich/events/271020472/)
159+
* [June 18. Turin, IT - Remote - Rust Turin Study Group](https://community.mozilla.org/events/gruppo-di-studio-di-rust-2/)
148160

149161
### North America
150-
* [June 3. Indianapolis, IN, US - Indy.rs Meetup](https://www.meetup.com/indyrs/events/dtqwprybcjbfb/)
151162
* [June 11. Columbus, OH, US - Columbus Rust Society Monthly Meeting](https://www.meetup.com/columbus-rs/events/dpkhgrybcjbpb/)
152163
* [June 11. Lehi, UT, US - Utah Rust - Lightning Talks](https://www.meetup.com/utah-rust/events/269263282/)
164+
* [June 17. Vancouver, BC, CA - Vancouver Rust - Rust Study/Hack/Hang-out night](https://www.meetup.com/Vancouver-Rust/events/qnrgnrybcjbwb/)
165+
* [June 18. Durham, NC - Triangle Rustaceans - Project Night & Lightning Talks](https://www.meetup.com/triangle-rustaceans/events/mfglwpybcjbdc/)
153166

154167
If you are running a Rust event please add it to the [calendar] to get
155168
it mentioned here. Please remember to add a link to the event too.
@@ -160,6 +173,7 @@ Email the [Rust Community Team][community] for access.
160173

161174
# Rust Jobs
162175
* [Pop! OS Software Engineer at System76, Remote US-based](https://system76.com/careers#software-engineer-pop-os)
176+
* [Software Engineer at Vehicle.Software](https://vehicle.software/careers/) (second listing on page)
163177

164178
*Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
165179

0 commit comments

Comments
 (0)