Skip to content

Commit d59dc4a

Browse files
committed
prepares draft of 436
Signed-off-by: Nell Shamrell <[email protected]>
1 parent 518a32b commit d59dc4a

File tree

1 file changed

+3
-75
lines changed

1 file changed

+3
-75
lines changed

draft/2022-03-23-this-week-in-rust.md renamed to draft/2022-03-30-this-week-in-rust.md

Lines changed: 3 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Title: This Week in Rust 435
2-
Number: 435
3-
Date: 2022-03-23
1+
Title: This Week in Rust 436
2+
Number: 436
3+
Date: 2022-03-30
44
Category: This Week in Rust
55

66
Hello and welcome to another issue of *This Week in Rust*!
@@ -15,57 +15,16 @@ If you find any errors in this week's issue, [please submit a PR](https://github
1515
## Updates from Rust Community
1616

1717
### Official
18-
* [video] [2022-03-21 Cross Team Collaboration Fun Times (CTCFT)](https://www.youtube.com/watch?v=GJp0W_Pg-1g)
1918

2019
### Foundation
21-
* [Rust Community Grants Program - Survey Responses](https://foundation.rust-lang.org/news/2022-03-17-community-grants-program-survey-responses/)
22-
* [Announcing three new Rust Foundation Board Members](https://foundation.rust-lang.org/news/2022-03-16-news-announcing-three-new-board-members-copy/)
2320

2421
### Project/Tooling Updates
25-
* [Rust-Analyzer Changelog #121](https://rust-analyzer.github.io/thisweek/2022/03/21/changelog-121.html)
26-
* [Rust superpowered DHCP cli with Rhai scripts](https://leshow.github.io/post/dhcpm/)
27-
* [Fornjot (Code-CAD in Rust) - Weekly Dev Log - 2022-W11](https://www.fornjot.app/blog/weekly-dev-log/2022-w11/)
28-
* [A Year of BonsaiDb: A retrospective and looking to the future](https://bonsaidb.io/blog/one-year-anniversary/)
29-
* [Slint (GUI crate) weekly update](https://slint-ui.com/thisweek/2022-03-21.html)
30-
* [This week in Fluvio #25: the programmable streaming platform](https://www.fluvio.io/news/this-week-in-fluvio-0025/)
31-
* [Nushell 0.60](https://www.nushell.sh/blog/2022-03-22-nushell_0_60.html)
32-
* [Skytable 0.7.4 is here: authn, entity syntax, fixes and more](https://blog.skytable.io/skytable-0-7-4-is-here/)
33-
* [Boa release v0.14](https://boa-dev.github.io/posts/2022-03-15-boa-release-14/)
3422

3523
### Observations/Thoughts
36-
* [Rust is minimalist](https://kerkour.com/rust-is-minimalist)
37-
* [Rustc Reading Club Phase I Retrospective](https://mojosd.medium.com/rrc-phase-i-retrospective-74141fb246e4)
38-
* [Rust's Unsafe Pointer Types Need An Overhaul - Faultlore](https://gankra.github.io/blah/fix-rust-pointers/)
39-
* [Learning Rust: My 6 Key Moments](https://apollolabsblog.hashnode.dev/learning-rust-my-6-key-moments)
40-
* [I do understand the * operator in Rust now](https://micouy.github.io/rust-dereferencing/)
41-
* [The code is the specification? Introducing cargo spec](https://www.cryptologie.net/article/553/the-code-is-the-specification-introducing-cargo-spec/)
42-
* [Functional Futures: Live-Coding Rust with Tim McNamara](https://serokell.io/blog/live-coding-rust-with-tim-mcnamara)
43-
* [Help stabilize hyper in curl](https://seanmonstar.com/post/678895803144830976/help-stabilize-hyper-in-curl)
44-
* [Do we really need language support for self-references?](https://robinmoussu.gitlab.io/blog/post/2022-03-16_do_we_really_need_language_support_for_self_references/)
45-
* [video] [Runtime-agnostic async crates by Zeeshan Ali](https://www.youtube.com/watch?v=w1vKAUor-4o)
46-
* [video] [Tauri Foundations by Daniel Thompson-Yvetot](https://www.youtube.com/watch?v=u4OsO6dow0c)
47-
* [audio] [id3 with Roel](https://rustacean-station.org/episode/060-roel/)
4824

4925
### Rust Walkthroughs
50-
* [Procedural macros under the hood: Part I](https://blog.jetbrains.com/rust/2022/03/18/procedural-macros-under-the-hood-part-i/)
51-
* [A tour of the Rust and C++ interoperability ecosystem](https://blog.tetrane.com/2022/Rust-Cxx-interop.html)
52-
* [Architecture Experiment: Moving a front-end to Rust and WASM](https://nutsys.com/blog/architecture-experiment-rust-wasm-1/)
53-
* [Web Socket for Productivity in Rust](https://www.ahmadrosid.com/blog/rust-websocket)
54-
* [Advanced logging in rust with log4rs: rotation, retention, patterns, multiple loggers](https://medium.com/nikmas-group/advanced-logging-in-rust-with-log4rs-2d712bb322de)
55-
* [Why your first FizzBuzz implementation may not work](https://chrismorgan.info/blog/rust-fizzbuzz/)
56-
* [ZH] [Exploring Rust Mobile Development and Cross-Platform Patterns (Rust 移动开发与跨平台模式探究)](https://zhuanlan.zhihu.com/p/484269271)
57-
* [series] [video] [Writing a Programming Language (in Rust) 22: Laurel: Continuing a bash script port](https://www.youtube.com/watch?v=OynJIFEsf3o)
58-
* [video] [Fyrox - Making an Animation Blending State Machine Editor](https://www.youtube.com/watch?v=qkgaY7FwPJU)
59-
* [video] [Petrochenkov reviews the name resolution code](https://www.youtube.com/watch?v=Y1hvNWUbSDk)
60-
* [video] [UIUC CS 128 Honors Rust Lectures](https://www.youtube.com/playlist?list=PLezlz_6l_jm2MU-yfzKWerZV1rai71bw4)
6126

6227
### Miscellaneous
63-
* [Cross-platform Brainfuck Interpreter implementation in Rust - Part 1](https://rtoch.com/posts/brainfuck-interpreter-implementation-part-1/)
64-
* [Cross-platform Brainfuck Interpreter implementation in Rust - Part 2](https://rtoch.com/posts/brainfuck-interpreter-implementation-part-2/)
65-
* [Rust talks I2C on Apache NuttX RTOS](https://lupyuen.github.io/articles/rusti2c)
66-
* [Rust Patches For The Linux Kernel Updated A Fifth Time With New Features](https://www.phoronix.com/scan.php?page=news_item&px=Rust-For-Linux-v5)
67-
* [DE] [Programmiersprache: Rust könnte neue Technik für Unsafe Pointer bekommen](https://www.golem.de/news/programmiersprache-rust-koennte-neue-technik-fuer-unsafe-pointer-bekommen-2203-164046.html)
68-
6928

7029
## Crate of the Week
7130

@@ -84,10 +43,6 @@ Every week we highlight some tasks from the Rust community for you to pick and g
8443

8544
Some of these tasks may also have mentors available, visit the task page for more information.
8645

87-
**CAD97/tracing-filter**
88-
89-
* [Collecting usage desires](https://github.com/CAD97/tracing-filter/discussions/1)
90-
9146
If you are a Rust project owner and are looking for contributors, please submit tasks [here][guidelines].
9247

9348
[guidelines]: https://users.rust-lang.org/t/twir-call-for-participation/4821
@@ -260,33 +215,6 @@ Email the [Rust Community Team][community] for access.
260215

261216
# Rust Jobs
262217

263-
**Bionaut Labs**
264-
265-
*[Embedded Software Engineer (Senior) (Remote)](https://www.indeed.com/viewjob?jk=bd2d65c6b37d561c)
266-
267-
**OCR Labs**
268-
269-
* [Rust 🦀 Developer (Remote)](https://github.com/OCRLabs/jd-rust-engineer)
270-
271-
**Komodo**
272-
273-
* [Software Developer interested in learning Rust (Remote)](https://utxo-ltd.breezy.hr/p/c374829c873c01-software-developer-interested-in-learn-rust)
274-
275-
**Nimiq**
276-
277-
* [Blockchain Core Engineer (Remote)](https://rustjobs.dev/featured-jobs/Nimiq-Blockchain-Protocol-Core-Engineer-Rust-iAd8SGJPRzrYctf2u7MG)
278-
279-
**Kollider**
280-
281-
* [Senior Frontend Engineer - Rust (Remote)](https://careers.kollider.xyz/senior-frontend-engineer/en)
282-
* [Junior Backend Engineer - Rust (Remote)](https://careers.kollider.xyz/junior-backend-engineer/en)
283-
284-
**Kraken**
285-
286-
* [Engineering Manager - Rust - Core Backend (Remote)](https://jobs.lever.co/kraken/53def500-b146-40da-89a8-98adfd7e84e4)
287-
* [Rust Engineer, Desktop GUI - Cryptowatch (Remote)](https://jobs.lever.co/kraken/2442ee5c-56b6-4a73-a477-8cdda2b218d5)
288-
* [Site Reliability Engineer - Rust - Core Backend (Remote)](https://jobs.lever.co/kraken/1c6b290f-e430-430d-9b40-a258d07686b0)
289-
290218
*Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
291219

292220
# Quote of the Week

0 commit comments

Comments
 (0)