<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Scott Beeker</title>
    <description>The latest articles on Forem by Scott Beeker (@scottbeeker).</description>
    <link>https://forem.com/scottbeeker</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F208832%2F198356e1-0df9-4316-90fa-a71c9887ae67.jpg</url>
      <title>Forem: Scott Beeker</title>
      <link>https://forem.com/scottbeeker</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/scottbeeker"/>
    <language>en</language>
    <item>
      <title>Turing JSON Into a Dart Object - Flutter Protip 5/11/2023</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Thu, 11 May 2023 21:56:14 +0000</pubDate>
      <link>https://forem.com/scottbeeker/turing-json-into-a-dart-object-flutter-protip-5112023-1a7g</link>
      <guid>https://forem.com/scottbeeker/turing-json-into-a-dart-object-flutter-protip-5112023-1a7g</guid>
      <description>&lt;p&gt;Today I wanted to talk about a great utility in the Dart language called&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;dart:convert
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here is an example of how to use the dart:convert library to encode a Dart object into a JSON-encoded string:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import 'dart:convert';

void main() {
  Map&amp;lt;String, dynamic&amp;gt; person = {
    'name': 'John Doe',
    'age': 30,
    'email': 'john.doe@example.com'
  };

  String jsonEncoded = jsonEncode(person);
  print(jsonEncoded); // outputs {"name":"Hire You","age":18,"email":"me@scottbeeker.com"}
}
import 'dart:convert';

void main() {
  Map&amp;lt;String, dynamic&amp;gt; person = {
    'name': 'Hire You',
    'age': 33,
    'email': 'me@scottbeeker.com'
  };

  String jsonEncoded = jsonEncode(person);
  print(jsonEncoded); // outputs {"name":"John Doe","age":33,"email":"me@scottbeeker.com"}
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;**&lt;br&gt;
The &lt;code&gt;dart:convert&lt;/code&gt; library in Dart provides encoders and decoders for converting between different data representations , including JSON and UTF-8. It provides a number of classes for converting between data representations, such as Codec, Decoder, Encoder, and Sink.&lt;/p&gt;

&lt;p&gt;One common use-case of the dart:convert library is to encode or decode JSON data. You can use the &lt;code&gt;jsonEncode()&lt;/code&gt; method to convert a Dart object into a JSON-encoded string, and the &lt;code&gt;jsonDecode()&lt;/code&gt;method to convert a JSON-encoded string into a Dart object.&lt;/p&gt;

&lt;p&gt;Here is an example of how to use the dart:convert library to encode a Dart object into a JSON-encoded string:&lt;br&gt;
**&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
import 'dart:convert';

void main() {
  Map&amp;lt;String, dynamic&amp;gt; person = {
    'name': 'John Doe',
    'age': 30,
    'email': 'john.doe@example.com'
  };

  String jsonEncoded = jsonEncode(person);
  print(jsonEncoded); // outputs {"name":"John Doe","age":30,"email":"john.doe@example.com"}
}
And here is an example of how to use the dart:convert library to decode a JSON-encoded string into a Dart object:

import 'dart:convert';

void main() {
  String jsonEncoded = '{"name":"Hire You","age":33,"email":"me@scottbeeker.com"}';

  Map&amp;lt;String, dynamic&amp;gt; person = jsonDecode(jsonEncoded);
  print(person['You']); // outputs "Hire You"
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Follow me:&lt;br&gt;
&lt;a href="https://twitter.com/scott_beeker"&gt;https://twitter.com/scott_beeker&lt;/a&gt;&lt;br&gt;
&lt;a href="https://linkedin.com/in/realscottbeeker"&gt;https://linkedin.com/in/realscottbeeker&lt;/a&gt;&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>dart</category>
      <category>mobile</category>
      <category>protip</category>
    </item>
    <item>
      <title>RIP BOB LEE</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Thu, 06 Apr 2023 02:00:34 +0000</pubDate>
      <link>https://forem.com/scottbeeker/rip-bob-lee-4jc0</link>
      <guid>https://forem.com/scottbeeker/rip-bob-lee-4jc0</guid>
      <description>&lt;p&gt;RIP to one of the greatest innovators in the 21st century&lt;/p&gt;

&lt;p&gt;&lt;a href="https://observer.com/2023/04/bob-lee-death-tech-exec-reaction/"&gt;https://observer.com/2023/04/bob-lee-death-tech-exec-reaction/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Javascript Dictionary: globalThis</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Sun, 26 Mar 2023 06:10:34 +0000</pubDate>
      <link>https://forem.com/scottbeeker/javascript-dictionary-globalthis-267c</link>
      <guid>https://forem.com/scottbeeker/javascript-dictionary-globalthis-267c</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1y6Q5JT7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4s5vfhtlrnp4jk5tm57e.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1y6Q5JT7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4s5vfhtlrnp4jk5tm57e.jpg" alt="Image description" width="474" height="215"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;globalThis&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Is a  built-in object introduced in ECMAScript 2020 that provides a standard way to access the global object across different environments , such as browser and Node.js. This object allows developers to write code that is more portable and works consistently across different environments.&lt;/p&gt;

&lt;p&gt;Previously, different JavaScript environments had different ways to access the global object, such as window in browsers and global in Node.js. The globalThis object serves as a universal way to access the global object , making it easier to write code that can run in different environments without having to modify it.&lt;/p&gt;

&lt;p&gt;Polyfills are available for older environments that do not support globalThis, and TypeScript 3.4 introduced support for type-checking globalThis.&lt;/p&gt;

&lt;p&gt;Overall, globalThis is an important addition to the JavaScript language that helps to improve the consistency and portability of JavaScript code across different environments.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;if (typeof globalThis === 'object') {
  // globalThis is defined in the current environment
  globalThis.myVar = 'Hello world';
} else {
  // globalThis is not defined, falling back to other methods
  if (typeof window === 'object') {
    window.myVar = 'Hello world';
  } else if (typeof self === 'object') {
    self.myVar = 'Hello world';
  } else if (typeof global === 'object') {
    global.myVar = 'Hello world';
  }
}

console.log(myVar); // Outputs 'Hello world' in any environment
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code checks if the&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;globalThis
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;property is defined in the current environment, and if it is, sets a variable called myVar on it. If globalThis is not defined, the code falls back to other methods to set the variable on the global object. Finally, the code outputs the value of myVar to the console, which should be 'Hello world' in any environment.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>typescript</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>(Exchange Social Media) Monday Social</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Mon, 19 Dec 2022 10:15:36 +0000</pubDate>
      <link>https://forem.com/scottbeeker/exchange-social-media-monday-social-4a1o</link>
      <guid>https://forem.com/scottbeeker/exchange-social-media-monday-social-4a1o</guid>
      <description>&lt;h2&gt;
  
  
  Happy Monday!!!
&lt;/h2&gt;

&lt;p&gt;Let's expand our networks follow me and comment below your Github, Twitter, and Linkedin. &lt;/p&gt;

&lt;p&gt;I'll follow back!!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/dangolbeeker" rel="noopener noreferrer"&gt;https://github.com/dangolbeeker&lt;/a&gt;&lt;br&gt;
&lt;a href="https://twitter.com/scott_beeker" rel="noopener noreferrer"&gt;https://twitter.com/scott_beeker&lt;/a&gt;&lt;br&gt;
&lt;a href="https://linkedin.com/in/realscottbeeker" rel="noopener noreferrer"&gt;https://linkedin.com/in/realscottbeeker&lt;/a&gt;&lt;/p&gt;

</description>
      <category>emptystring</category>
    </item>
    <item>
      <title>ISO: React Contributors</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Sat, 10 Dec 2022 21:22:25 +0000</pubDate>
      <link>https://forem.com/scottbeeker/iso-react-contributors-4n0m</link>
      <guid>https://forem.com/scottbeeker/iso-react-contributors-4n0m</guid>
      <description>&lt;p&gt;_Looking for contributors for a Developer Social Media React/PHP Project.&lt;br&gt;
_&lt;br&gt;
*&lt;em&gt;Follow me and shoot me a dm on twitter for more info...&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
&lt;a href="https://twitter.com/scott_beeker"&gt;https://twitter.com/scott_beeker&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Anything C can do Rust can do Better</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Fri, 02 Dec 2022 05:32:51 +0000</pubDate>
      <link>https://forem.com/scottbeeker/anything-c-can-do-rust-can-do-better-2a9a</link>
      <guid>https://forem.com/scottbeeker/anything-c-can-do-rust-can-do-better-2a9a</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;C++ and Rust are both system programming languages that can be used to produce software and software platforms. They are both capable of interacting with low-level components such as operating systems or firmware on a microcontroller, or at a high level for application development.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;"In Android 12 we announced support for the Rust programming language in the Android platform as a memory-safe alternative to C/C++. Since then we’ve been scaling up our Rust experience and usage within the Android Open Source Project (AOSP)."&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Android Team (Google) 2022&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As Rust slowly replaces C++ what are you waiting for? Are you learning Rust yet?&lt;/p&gt;

&lt;p&gt;Rust Learning:&lt;/p&gt;

&lt;h2&gt;
  
  
  Table of Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Books&lt;/li&gt;
&lt;li&gt;
Videos

&lt;ul&gt;
&lt;li&gt;Playlists&lt;/li&gt;
&lt;li&gt;Presentations&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Podcasts&lt;/li&gt;
&lt;li&gt;Rust in practice&lt;/li&gt;
&lt;li&gt;Best Practices/Style Guides&lt;/li&gt;
&lt;li&gt;Cheat sheets&lt;/li&gt;
&lt;li&gt;Rust internals&lt;/li&gt;
&lt;li&gt;Compilation&lt;/li&gt;
&lt;li&gt;FFI&lt;/li&gt;
&lt;li&gt;CI / Testing&lt;/li&gt;
&lt;li&gt;Debug / Profiling&lt;/li&gt;
&lt;li&gt;Are we ... yet?&lt;/li&gt;
&lt;li&gt;Comparison with Other Languages&lt;/li&gt;
&lt;li&gt;Applications / Libraries / Tools&lt;/li&gt;
&lt;li&gt;
Language stuff

&lt;ul&gt;
&lt;li&gt;Async&lt;/li&gt;
&lt;li&gt;Closures&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Enums&lt;/li&gt;
&lt;li&gt;Errors&lt;/li&gt;
&lt;li&gt;Iterators&lt;/li&gt;
&lt;li&gt;Lifetime&lt;/li&gt;
&lt;li&gt;MIR&lt;/li&gt;
&lt;li&gt;Modules&lt;/li&gt;
&lt;li&gt;Option &amp;amp; Result&lt;/li&gt;
&lt;li&gt;Ownership / Concurrency&lt;/li&gt;
&lt;li&gt;Privacy&lt;/li&gt;
&lt;li&gt;Strings&lt;/li&gt;
&lt;li&gt;Syntax extensions&lt;/li&gt;
&lt;li&gt;Traits&lt;/li&gt;
&lt;li&gt;Unsafe&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Playground&lt;/li&gt;
&lt;li&gt;Locale links&lt;/li&gt;
&lt;li&gt;
People

&lt;ul&gt;
&lt;li&gt;Fearless Rust Bloggers&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Tutorials &amp;amp; Workshop Materials&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Books
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/stable/book/"&gt;The Rust Programming Language&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/book"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/stable/reference/"&gt;The Rust Reference&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/reference"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/stable/nomicon/"&gt;The Rustonomicon - The Dark Arts of Advanced and Unsafe Rust Programming&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/nomicon"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/stable/unstable-book/"&gt;The Unstable Book&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/rust/tree/master/src/doc/unstable-book"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/edition-guide/"&gt;The Rust Edition Guide&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/edition-guide"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://rust-lang.github.io/async-book/"&gt;The Rust Async Book&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/async-book"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://rust-lang-nursery.github.io/rust-cookbook/"&gt;Rust Cookbook&lt;/a&gt; - &lt;a href="https://github.com/rust-lang-nursery/rust-cookbook"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://www.oreilly.com/content/why-rust/"&gt;Why Rust?&lt;/a&gt; - &lt;a href="https://github.com/jimblandy"&gt;Jim Blandy&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://rust-embedded.github.io/book/intro/index.html"&gt;The Embedded Rust Book&lt;/a&gt; - &lt;a href="https://github.com/rust-embedded/book"&gt;repo&lt;/a&gt; - Rust Embedded WG&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.ralfj.de/projects/rust-101/main.html"&gt;Rust-101&lt;/a&gt; - Ralf Jung&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/rust-essentials-second-edition"&gt;Rust Essentials&lt;/a&gt; -  Ivo Balbaert&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://shop.oreilly.com/product/0636920040385.do"&gt;Programming Rust&lt;/a&gt; - &lt;a href="https://github.com/jimblandy"&gt;Jim Blandy&lt;/a&gt;, Jason Orendorff&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/mastering-rust-second-edition"&gt;Mastering Rust - Second Edition&lt;/a&gt; - Rahul Sharma &amp;amp; Vesa Kaihlavirta&lt;/li&gt;
&lt;li&gt;🔜 &lt;a href="https://www.manning.com/books/refactoring-to-rust"&gt;Refactoring to Rust&lt;/a&gt; - &lt;a href="https://github.com/natemara/refactoring-to-rust"&gt;repo&lt;/a&gt; - Nate Mara&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/brson/rust-anthology"&gt;Rust Anthology&lt;/a&gt; - &lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🔜 &lt;a href="https://www.manning.com/books/rust-in-action"&gt;Rust in Action&lt;/a&gt; - &lt;a href="https://github.com/rust-in-action/code"&gt;repo&lt;/a&gt; - &lt;a href="https://github.com/timClicks"&gt;Tim McNamara&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🔜 &lt;a href="https://zero2prod.com"&gt;Zero To Production In Rust&lt;/a&gt; - &lt;a href="https://github.com/LukeMathWalker/zero-to-production"&gt;repo&lt;/a&gt; - &lt;a href="https://github.com/LukeMathWalker"&gt;Luca Palmieri&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/network-programming-rust"&gt;Network Programming in Rust&lt;/a&gt; - Abhishek Chanda&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/learning-rust"&gt;Learning Rust&lt;/a&gt; -  Paul Johnson, Vesa Kaihlavirta&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/rust-cookbook"&gt;Rust Cookbook&lt;/a&gt; -  Vigneshwer Dhinakaran&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://learning-rust.github.io/"&gt;Learning Rust&lt;/a&gt; - &lt;a href="https://github.com/dumindu"&gt;Dumindu Madunuwan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://stevedonovan.github.io/rust-gentle-intro/readme.html"&gt;A Gentle Introduction To Rust&lt;/a&gt; - &lt;a href="https://github.com/stevedonovan"&gt;Steve Donovan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/dp/0999361805/"&gt;Step Ahead with Rust&lt;/a&gt; - Jonathan Creekmore&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://www.amazon.com/dp/1788390636"&gt;Rust Programming By Example&lt;/a&gt; - Guillaume Gomez and Antoni Boucher&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.apress.com/us/book/9781484234679"&gt;Beginning Rust - From Novice to Professional&lt;/a&gt; - Carlo Milanesi&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/dp/1788399978"&gt;Hands-On Concurrency with Rust&lt;/a&gt; - Brian Troutwine&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/dp/1788839358"&gt;Hands-On Functional Programming in Rust&lt;/a&gt; - Andrew Johnson&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://pragprog.com/titles/hwrust/hands-on-rust"&gt;Hands-On Rust Effective Learning through 2D Game Development and Play&lt;/a&gt; - Herbert Wolverson&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/web-development/hands-microservices-rust"&gt;Hands-On Microservices with Rust&lt;/a&gt; - Denis Kolodin&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/hands-data-structures-and-algorithms-rust"&gt;Hands-On Data Structures and Algorithms with Rust&lt;/a&gt; - Claus Matzinger&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/Rust-Standard-Library-Cookbook-leverage/dp/1788623924"&gt;Rust Standard Library Cookbook&lt;/a&gt; - Daniel Durante, Jan Nils Ferner&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/Rust-Quick-Start-Guide-programming/dp/1789616700"&gt;Rust Quick Start Guide&lt;/a&gt; - Daniel Arbuckle&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/Rust-High-Performance-performance-applications/dp/178839948X"&gt;Rust High Performance&lt;/a&gt; - Iban Eguia Moraza&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://pragprog.com/book/khrust/programming-webassembly-with-rust"&gt;Programming WebAssembly with Rust&lt;/a&gt; - Kevin Hoffman&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.co.uk/Hands-Microservices-Rust-2018-Scalable/dp/1789342759/ref=sr_1_6?s=books&amp;amp;ie=UTF8&amp;amp;qid=1545340800&amp;amp;sr=1-6&amp;amp;keywords=rust"&gt;Hands-On Microservices with Rust 2018: How To Build Scalable and Reliable RESTful Microservices&lt;/a&gt; - Denis Kolodin&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/hands-data-structures-and-algorithms-rust"&gt;Hands-On Data Structures and Algorithms with Rust&lt;/a&gt; - Claus Matzinger&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.amazon.com/Complete-Rust-Programming-Reference-Guide/dp/1838828109"&gt;The Complete Rust Programming Reference Guide: Design, develop, and deploy effective software systems using the advanced constructs of Rust&lt;/a&gt; - - Vesa Kaihlavirta, Rahul Sharma, Claus Matzinger&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Dhghomon/easy_rust"&gt;Easy Rust&lt;/a&gt; - David MacLeod&lt;/li&gt;
&lt;li&gt;🔜 &lt;a href="https://www.manning.com/books/rust-web-development"&gt;Rust Web Development&lt;/a&gt; - &lt;a href="https://github.com/Rust-Web-Development/code"&gt;repo&lt;/a&gt; - Bastian Gruber&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://lborb.github.io/book/"&gt;The Little Book of Rust Books&lt;/a&gt; - &lt;a href="https://github.com/lborb/book"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.manning.com/books/rust-servers-services-and-apps"&gt;Rust Servers, Services, and Apps&lt;/a&gt; - Prabhu Eshwarla&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.manning.com/books/code-like-a-pro-in-rust"&gt;Code Like a Pro in Rust&lt;/a&gt; - Brenden Matthews&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://nostarch.com/rust-rustaceans"&gt;Rust for Rustaceans&lt;/a&gt; - Jon Gjengset&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://rftgu.rs/"&gt;Rust From the Ground Up&lt;/a&gt; - Matthew Provost&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Videos
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Playlists
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://www.youtube.com/playlist?list=PLo3w8EB99pqJ74XIGe72c9hBZWz9Y16cY"&gt;Rust and the Future of Systems Programming&lt;/a&gt; - Mozilla&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=jywiVWKm1TI&amp;amp;list=PL85XCvVPmGQj9mqbJizw-zi-EhcpS5jTP"&gt;RustFest Zürich 2017&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=y-ks-_VDkiA&amp;amp;list=PL0Fqs05rod8D80WKBCeT326CT8vcAm_N9"&gt;ABitWiseGuy Tutorials&lt;/a&gt; - ABitWiseGuy&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=vOMJlQ5B-M0&amp;amp;list=PLVvjrrRCBy2JSHf9tGxGKJ-bYAN_uDCUL"&gt;dcode Tutorials&lt;/a&gt; - dcode&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=Idys2BAmqIU&amp;amp;list=PLCqkr2gc0bmZZOvjXC6BJGTGEuah_1Hbi"&gt;maxday_coding&lt;/a&gt; - ASMR Live Coding&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=EYqceb2AnkU&amp;amp;list=PLJbE2Yu2zumDF6BX6_RdPisRVHgzV02NW"&gt;Tensor Programming Tutorials&lt;/a&gt; - Tensor Programming&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UCZ_EWaQZCZuGGfnuqUoHujw"&gt;Hello Rust!&lt;/a&gt; - Matthias Endler&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UC0yCXVwW6FdDQGYA-3OWXxw/"&gt;YouCodeThings&lt;/a&gt; - Andrew Jakubowicz&lt;/li&gt;
&lt;li&gt;⭐ 🔜 &lt;a href="https://www.manning.com/livevideo/rust-in-motion"&gt;Rust in Motion&lt;/a&gt; - Video course by &lt;a href="https://github.com/carols10cents"&gt;Carol Nichols&lt;/a&gt; and Jake Goulding&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.packtpub.com/application-development/learn-rust-7-days-video"&gt;Learn Rust in 7 Days&lt;/a&gt; - Matthew Stoodley&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=Az3jBd4xdF4&amp;amp;list=PLLqEtX6ql2EyPAZ1M2_C0GgVd4A-_L4_5"&gt;Rust Tutorial&lt;/a&gt; - Doug Milford&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=bR4nGWmfzTk&amp;amp;list=PLVhhUNGAUIQScqB26DdUq4n1Y2n3auM7X"&gt;Rust&lt;/a&gt; - Crazcalm's Tech Stack&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/playlist?list=PLQXBtq4j4Ozkx3r4eoMstdkkOG98qpBfg"&gt;Rust Advent of Code 2019&lt;/a&gt; - Brian Myers&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/playlist?list=PLK_g1a_cAfaaAO6io1Tluy7EZXhAAK1lC"&gt;The Rust Programming Language | Tutorials&lt;/a&gt; - danlogs&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UCpeX4D-ArTrsqvhLapAHprQ/videos"&gt;Ryan Levick's Rust Stream&lt;/a&gt; - Ryan Levick&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/playlist?list=PLqbS7AVVErFiWDOAVrPt7aYmnuuOLYvOa"&gt;Crust of Rust&lt;/a&gt; - Jon Gjengset&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=OX9HJsJUDxA&amp;amp;list=PLai5B987bZ9CoVR-QEIN9foz4QCJ0H2Y8"&gt;ULTIMATE Rust Lang Tutorial!&lt;/a&gt; - Let's Get Rusty&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=gesNaLkUJeA&amp;amp;list=PLP2yfE2-FXdQmXLvrQ5QN64enbF_KCYQW"&gt;Overview of the Rust Programming Language&lt;/a&gt; - &lt;a href="https://github.com/jonathandturner"&gt;Jonathan Turner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/c/ManningPublications/search?query=rust"&gt;Manning Publications Rust channel&lt;/a&gt; - Manning Publications&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/playlist?list=PLbtjxiXev6lpd331MW2dB7UgSIovgv169"&gt;Introduction to Programming with Rust&lt;/a&gt; - Rhymu's Videos&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Presentations
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;2021-06-25 - &lt;a href="https://youtu.be/sDtQaO5_SOw"&gt;How to learn Rust&lt;/a&gt; - &lt;a href="https://github.com/timClicks"&gt;Tim McNamara&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2021-06-01 - &lt;a href="https://www.youtube.com/watch?v=IPmRDS0OSxM"&gt;A Firehose of Rust, for busy people who know some C++&lt;/a&gt; - Jack O'Connor&lt;/li&gt;
&lt;li&gt;2020-09-21 - &lt;a href="https://www.youtube.com/watch?v=9nINNurVqz8"&gt;live@Manning Rust Conference&lt;/a&gt; - &lt;a href="https://github.com/carols10cents"&gt;Carol Nichols&lt;/a&gt;, &lt;a href="https://github.com/timClicks"&gt;Tim McNamara&lt;/a&gt;, Maciej Hirsz, Olivia Ifrim, Nell Shamrell-Harrington, Pierre Krieger, Richard Walters, Chris Griffing, Lachezar Lechev, Michael Hausenblas&lt;/li&gt;
&lt;li&gt;2017-06-20 - ⭐ &lt;a href="https://www.youtube.com/watch?v=wXoY91w4Agk"&gt;Rust: Putting Ownership to Use&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2017-01-20 - &lt;a href="https://www.youtube.com/watch?v=FMqydRampuo"&gt;Rust 101&lt;/a&gt; - E. Dunham&lt;/li&gt;
&lt;li&gt;2016-09-28 - &lt;a href="https://www.youtube.com/watch?v=LuNhkRxP2E4"&gt;Mozilla's Rust and why we love it&lt;/a&gt; - Cambridge Consultants&lt;/li&gt;
&lt;li&gt;2016-09-25 - ⭐ &lt;a href="http://intorust.com/"&gt;into_rust() - Screencasts for learning rust!&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2016-08-28 - ⭐ &lt;a href="https://www.youtube.com/watch?v=GbWECt0M3CI"&gt;Rust: Safe and Scalable Systems Programming&lt;/a&gt; - &lt;a href="https://github.com/alexcrichton"&gt;Alex Crichton&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2016-06-21 - ⭐ &lt;a href="https://www.youtube.com/watch?v=79PSagCD_AY"&gt;The History of Rust&lt;/a&gt; - &lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2015-08-01 - ⭐ &lt;a href="https://www.youtube.com/watch?v=0qIAk5sTwEo&amp;amp;list=PLE7tQUdRKcybdIw61JpCoo89i4pWU5f_t"&gt;RustCamp 2015&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2015-06-22 - &lt;a href="https://www.youtube.com/watch?v=-dxqbhLIgdM"&gt;LambdaConf 2015 - In Rust We Trust&lt;/a&gt; - Alex Burkhart&lt;/li&gt;
&lt;li&gt;2015-06-13 - ⭐ &lt;a href="http://www.infoq.com/presentations/rust-gc"&gt;What Is Rust?&lt;/a&gt; - &lt;a href="https://github.com/wycats"&gt;Yehuda Katz&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2015-04-11 - &lt;a href="https://www.youtube.com/watch?v=3CwJ0MH-4MA"&gt;My Python's a little Rust-y&lt;/a&gt; - &lt;a href="https://github.com/callahad"&gt;Dan Callahan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;2015-03-12 - ⭐ &lt;a href="https://www.youtube.com/watch?v=O5vzLKg7y-k"&gt;Stanford Seminar&lt;/a&gt; - &lt;a href="https://github.com/aturon"&gt;Aaron Turon&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Podcasts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://corecursive.com/016-moves-and-borrowing-in-rust-with-jim-blandy/"&gt;Moves and Borrowing In Rust With Jim Blandy&lt;/a&gt; - Adam Bell&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.newrustacean.com"&gt;New Rustacean&lt;/a&gt; - &lt;a href="https://github.com/chriskrycho"&gt;Chris Krycho&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://request-for-explanation.github.io/podcast/"&gt;The Request for Explanation Podcast: A weekly discussion of Rust RFCs&lt;/a&gt; - &lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://corecursive.com/013-rust-and-bitter-c-developers-with-jim-blandy/"&gt;Rust And Bitter C++ Developers With Jim Blandy&lt;/a&gt; - Adam Bell&lt;/li&gt;
&lt;li&gt;&lt;a href="https://soundcloud.com/arewepodcastyet"&gt;AreWePodcastYet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rustacean-station.org/"&gt;Rustacean Station&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Rust in practice
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/stable/rust-by-example/"&gt;Rust By Example&lt;/a&gt; - &lt;a href="https://github.com/japaric"&gt;Jorge Aparicio&lt;/a&gt; and &lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt; - &lt;a href="https://github.com/rust-lang/rust-by-example"&gt;repo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Hoverbear/rust-rosetta"&gt;rosettacode&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://chrismorgan.info/blog/rust-fizzbuzz.html"&gt;Why your first FizzBuzz implementation may not work&lt;/a&gt; - &lt;a href="https://github.com/chris-morgan"&gt;Chris Morgan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/brson/annotated-std-rs"&gt;An annotation of the Rust standard library&lt;/a&gt; - &lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/gifnksm/ProjectEulerRust"&gt;ProjectEulerRust&lt;/a&gt; - gifnksm&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/LD250/adventofcode_rust"&gt;Advent of Code&lt;/a&gt; - Denys Levchenko&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://nbaksalyar.github.io/"&gt;Rust in Detail: Writing Scalable Chat Service from Scratch&lt;/a&gt; - Nikita Baksalyar&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/carols10cents/rustlings"&gt;rustlings: small rust exercises&lt;/a&gt; - &lt;a href="https://github.com/carols10cents"&gt;Carol Nichols&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://cglab.ca/~abeinges/blah/too-many-lists/book/"&gt;Learning Rust With Entirely Too Many Linked Lists&lt;/a&gt; - &lt;a href="https://github.com/Gankro"&gt;Alexis Beingessner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html"&gt;Let's build a browser engine!&lt;/a&gt; - Matt Brubeck&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://hoverbear.org/2015/09/12/understand-over-guesswork/"&gt;Understanding Over Guesswork&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://os.phil-opp.com/"&gt;Writing an OS in Rust 1st edition&lt;/a&gt; &lt;a href="https://os.phil-opp.com/second-edition/"&gt;2nd edition&lt;/a&gt; - Philipp Oppermann&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/playlist?list=PL-sXmdrqqYYcznDg4xwAJWQgNL2gRray2"&gt;Creating Nintendo 64 emulator from scratch in Rust!&lt;/a&gt; - Jake Taylor&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://cglab.ca/~abeinges/blah/rust-reuse-and-recycle/"&gt;The Many Kinds of Code Reuse in Rust&lt;/a&gt; - &lt;a href="https://github.com/Gankro"&gt;Alexis Beingessner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kanaka/mal"&gt;Make a Lisp&lt;/a&gt; - Joel Martin&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/04/06/modeling-graphs-in-rust-using-vector-indices/"&gt;Modeling Graphs in Rust Using Vector Indices&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://siciarz.net/tag/24%20days%20of%20rust/"&gt;24 days of Rust series&lt;/a&gt; - Zbigniew Siciarz&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/brson/rust-cookbook"&gt;Rust Cookbook&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.burntsushi.net/csv/"&gt;Rust and CSV Parsing&lt;/a&gt; - &lt;a href="https://github.com/BurntSushi"&gt;Andrew Gallant&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/EbTech/rust-algorithms"&gt;Algorithm Cookbook in Rust&lt;/a&gt; - Aram Ebtekar&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/brson/stdx"&gt;stdx - The missing batteries of Rust&lt;/a&gt; - &lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://exercism.org/tracks/rust"&gt;Rust - exercism.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/EmilHernvall/dnsguide"&gt;Building a DNS server in Rust&lt;/a&gt; - Emil Hernvall&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.snoyman.com/feed/rust-crash-course"&gt;Rust Crash Course&lt;/a&gt; - Michael Snoyman&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://joshondesign.com/tags/browser"&gt;Web browser from scratch in Rust&lt;/a&gt; - Josh Marinacci&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://tourofrust.com/"&gt;Tour of Rust&lt;/a&gt; - Richard Anaya&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://picklenerd.github.io/pngme_book/"&gt;PNGme: An Intermediate Rust Project&lt;/a&gt; - picklenerd&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://createlang.rs/"&gt;Create Your Own Programming Language with Rust&lt;/a&gt; - Ehsan M. Kermani&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://rust-cli.github.io/book/"&gt;Command Line Applications in Rust&lt;/a&gt; - Rust CLI working&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.carlosgaldino.com/writing-a-file-system-from-scratch-in-rust.html"&gt;Writing a file system from scratch in Rust&lt;/a&gt; - Carlos Galdino&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.philippflenker.com/hecto/"&gt;Hecto: Build your own text editor in Rust&lt;/a&gt; - Philipp Flenker&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://sokoban.iolivia.me/"&gt;Rust sokoban&lt;/a&gt; - Olivia Ifrim&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/warycat/rustgym"&gt;Rust Gym&lt;/a&gt; - Yinchu Xia&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://dtolnay.github.io/rust-quiz"&gt;Rust Quiz&lt;/a&gt; - &lt;a href="https://github.com/dtolnay"&gt;David Tolnay&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blessed.rs/crates"&gt;Blessed - An unofficial guide to the Rust ecosystem&lt;/a&gt; - Nico Burns&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Best Practices/Style Guides
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/nrc/patterns"&gt;Rust Design Patterns&lt;/a&gt; - &lt;a href="https://github.com/nrc"&gt;Nick Cameron&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.burntsushi.net/rust-error-handling/"&gt;Error Handling in Rust&lt;/a&gt; - &lt;a href="https://github.com/BurntSushi"&gt;Andrew Gallant&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/rust-lang/rust-api-guidelines"&gt;Rust API guidelines&lt;/a&gt; - &lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fadeevab/design-patterns-rust"&gt;Design Patterns in Rust&lt;/a&gt; - &lt;a href="https://github.com/fadeevab"&gt;Alexander Fadeev&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://hoverbear.org/2015/07/10/reading-rust-function-signatures/"&gt;Reading Rust Function Signatures&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://pascalhertleif.de/artikel/good-practices-for-writing-rust-libraries/"&gt;Good Practices for Writing Rust Libraries&lt;/a&gt; - &lt;a href="https://github.com/killercup"&gt;Pascal Hertleif&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://llogiq.github.io/2016/02/11/rustic.html"&gt;Rustic Bits&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://hoverbear.org/2016/10/12/rust-state-machine-pattern/"&gt;Pretty State Machine Patterns in Rust&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://scribbles.pascalhertleif.de/elegant-apis-in-rust.html"&gt;Elegant Library APIs in Rust&lt;/a&gt; - &lt;a href="https://github.com/killercup"&gt;Pascal Hertleif&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://llogiq.github.io/2017/06/01/perf-pitfalls.html"&gt;Rust Performance Pitfalls&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.logrocket.com/how-to-write-crap-rust-code/"&gt;How to write CRaP Rust code&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nnethercote/perf-book"&gt;The Rust Performance Book&lt;/a&gt; - Nicholas Nethercote&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Cheat sheets
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://doc.rust-lang.org/book/syntax-index.html"&gt;Syntax Index&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://cosmic.mearie.org/2014/01/periodic-table-of-rust-types/"&gt;The Periodic Table of Rust Types&lt;/a&gt; - Kang Seonghoon&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://danielkeep.github.io/itercheat_baked.html"&gt;Rust Iterator Cheat Sheet&lt;/a&gt; - &lt;a href="https://github.com/DanielKeep"&gt;Daniel Keep&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.google.com/spreadsheets/d/19vSPL6z2d50JlyzwxariaYD6EU2QQUQqIDOGbiGQC7Y/pubhtml?gid=0&amp;amp;single=true"&gt;Rust String Conversions Cheat Sheet&lt;/a&gt; - GavinB&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kmcallister/rustic-symmetries/blob/master/README.md#rustic-symmetries"&gt;Rustic Symmetries&lt;/a&gt; - kmc&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.google.com/presentation/d/1q-c7UAyrUlM-eZyTo1pd8SZ0qwA_wYxmPZVOQkoDmH4/edit?usp=sharing"&gt;Rust Container Cheat Sheet&lt;/a&gt; - Raph Levien&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://rufflewind.com/img/rust-move-copy-borrow.png"&gt;Graphical depiction of ownership and borrowing in Rust&lt;/a&gt; - Phil Ruffwind&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://charlesetc.com/lifetime-reference/"&gt;Lifetime Reference&lt;/a&gt; - Charles&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://phaiax.github.io/rust-cheatsheet/"&gt;Phaiax's Rust Cheatsheet&lt;/a&gt; - Phaiax&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://cheats.rs/"&gt;Rust Language Cheat Sheet&lt;/a&gt; - Ralf Biedert&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.breakdown-notes.com/make/load/rust_cs_canvas/true"&gt;Rust cheat sheet (beginner-oriented)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://upsuper.github.io/rust-cheatsheet/"&gt;A type-based Rust cheatsheet&lt;/a&gt; - Xidorn Quan&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Rust internals
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://github.com/rust-lang/rfcs"&gt;Rust RFCs&lt;/a&gt; and &lt;a href="https://rust-lang.github.io/rfcs/"&gt;Accepted RFCs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://forge.rust-lang.org/"&gt;Rust Forge&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://internals.rust-lang.org/"&gt;Internals Forum&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Compilation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/japaric/rust-cross"&gt;rust-cross, Everything you need to know about cross compiling Rust programs!&lt;/a&gt; - &lt;a href="https://github.com/japaric"&gt;Jorge Aparicio&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/yohanesu75/crossrust"&gt;How to cross compile Rust from OS X to FreeBSD&lt;/a&gt; - yohanesu75&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ogeon/rust-on-raspberry-pi"&gt;Cross Compiling for Raspberry Pi&lt;/a&gt; - Ogeon&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.rust-lang.org/2016/05/13/rustup.html"&gt;Taking Rust everywhere with rustup&lt;/a&gt; - &lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://lifthrasiir.github.io/rustlog/why-is-a-rust-executable-large.html"&gt;Why is a Rust executable large?&lt;/a&gt; - Kang Seonghoon&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://blog.japaric.io/quickstart/"&gt;Rust your ARM microcontroller!&lt;/a&gt; - &lt;a href="https://github.com/japaric"&gt;Jorge Aparicio&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://akappel.github.io/2017/11/07/rpi-crosstool.html"&gt;Cross-compiling Rust for the Raspberry Pi on macOS&lt;/a&gt; - Adrian Kappel&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mtak-/rust-on-mobile"&gt;rust-on-mobile&lt;/a&gt; - mtak-&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.worthe-it.co.za/programming/2018/11/18/compile-time-feature-flags-in-rust.html"&gt;Compile Time Feature Flags in Rust&lt;/a&gt; - Justin Worthe&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/visly/rust-on-ios-39f799b3c1dd"&gt;Rust on iOS&lt;/a&gt; - Emil Sjölander&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  FFI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;2017-11-22 - &lt;a href="https://blog.risingstack.com/node-js-native-modules-with-rust/"&gt;Writing fast and safe native Node.js modules with Rust&lt;/a&gt; - Peter Czibik&lt;/li&gt;
&lt;li&gt;2017-09-21 - &lt;a href="https://mozilla.github.io/firefox-browser-architecture/experiments/2017-09-21-rust-on-android.html"&gt;Building and Deploying a Rust library on Android&lt;/a&gt; - Emily Toop&lt;/li&gt;
&lt;li&gt;2017-09-06 - &lt;a href="https://mozilla.github.io/firefox-browser-architecture/experiments/2017-09-06-rust-on-ios.html"&gt;Building and Deploying a Rust library on iOS&lt;/a&gt; - Emily Toop&lt;/li&gt;
&lt;li&gt;2020-09-08 - &lt;a href="https://prateeknischal.github.io/posts/i-c-and-so-does-rust/"&gt;I C and .so does Rust&lt;/a&gt; - prateeknischal&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://jakegoulding.com/rust-ffi-omnibus/?updated=2015-11-08"&gt;The Rust FFI Omnibus&lt;/a&gt; - Jake Goulding&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://michael-f-bryan.github.io/rust-ffi-guide/"&gt;The Rust FFI Guide - using unsafe for fun and profit&lt;/a&gt; - Michael-F-Brya&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  CI / Testing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2015/04/helping-travis-catch-the-rustc-train/"&gt;Helping Travis catch the rustc train part 1&lt;/a&gt; | &lt;a href="https://huonw.github.io/blog/2015/05/travis-on-the-train-part-2/"&gt;part 2&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://hoverbear.org/2015/03/07/rust-travis-github-pages/"&gt;Rust, Travis, and Github Pages&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://llogiq.github.io/2016/07/05/travis.html"&gt;Shave Some Time From Your Travis Builds&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://users.rust-lang.org/t/tutorial-how-to-collect-test-coverages-for-rust-project/650"&gt;How to collect test coverages for a rust project&lt;/a&gt; - lifthrasiir&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://sunjay.ca/2016/07/25/rust-code-coverage"&gt;Rust Code Coverage Guide: kcov + Travis CI + Codecov / Coveralls&lt;/a&gt; - Sunjay Varma&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://beachape.com/blog/2016/11/02/rust-performance-testing-on-travis-ci/"&gt;Rust Performance Testing on Travis CI&lt;/a&gt; - Lloyd&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://kneit.in/2016/11/26/rustfmt-in-travisci.html"&gt;Ensuring Beautiful Commits with rustfmt and Travis-CI&lt;/a&gt; - Kyle Kneitinger&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://dev.to/cad97/great-rust-ci-1fk6"&gt;Great Rust CI&lt;/a&gt; - Christopher Durham&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rust-fuzz.github.io/book/"&gt;Rust Fuzz Book&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Debug / Profiling
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://jvns.ca/blog/2017/12/23/segfault-debugging/"&gt;Debugging a segfault in my Rust program&lt;/a&gt; - Julia Evans&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rust.godbolt.org/"&gt;Compiler Explorer - See Rust code as assembly&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://llogiq.github.io/2015/07/15/profiling.html"&gt;Profiling Rust applications on Linux&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Are we ... yet?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.arewewebyet.org/"&gt;Are we web yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://areweideyet.com/"&gt;Are we (I)DE yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://arewegameyet.com/"&gt;Are we game yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.arewelearningyet.com/"&gt;Are we learning yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://areweasyncyet.rs/"&gt;Are we async yet?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/ErichDonGubler/not-yet-awesome-rust"&gt;Not-Yet-Awesome Rust&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://areweguiyet.com/"&gt;Are we GUI yet?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Comparison with Other Languages
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/mgattozzi/rust-from-lang"&gt;Rust::from(lang)&lt;/a&gt; - &lt;a href="https://github.com/mgattozzi"&gt;Michael Gattozzi&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Others:&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Languages&lt;/th&gt;
&lt;th&gt;Links&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;C#&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="http://nblumhardt.com/2016/03/exploring-rust/"&gt;Exploring Rust (from C#)&lt;/a&gt; - Nicholas Blumhardt&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;C/C++&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/nrc/r4cppp"&gt;Rust For Systems Programmers&lt;/a&gt; &amp;amp; &lt;a href="https://www.gitbook.com/book/aminb/rust-for-c/details"&gt;Rust for C++ Programmers&lt;/a&gt; - &lt;a href="https://github.com/nrc"&gt;Nick Cameron&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/diwic/reffers-rs/blob/master/docs/Pointers.md"&gt;I used to use pointers - now what?&lt;/a&gt; - diwic&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://parallel-rust-cpp.github.io/"&gt;Comparing parallel Rust and C++&lt;/a&gt; - matiaslindgren&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.rottedfrog.co.uk/?p=24"&gt;Zero cost abstractions: Rust vs C++&lt;/a&gt; - rottedfrog&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=IPmRDS0OSxM"&gt;A Firehose of Rust, for busy people who know some C++&lt;/a&gt; - Jack O'Connor&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Clojure&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="https://gist.github.com/oakes/4af1023b6c5162c6f8f0"&gt;Rust for Clojurists&lt;/a&gt; - Zach Oakes&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Go&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://bitfieldconsulting.com/golang/rust-vs-go"&gt;Rust vs Go&lt;/a&gt; - John Arundel&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://julio.meroh.net/2018/07/rust-vs-go.html"&gt;Rust vs. Go&lt;/a&gt; - Julio Merino&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Java/Scala&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://llogiq.github.io/2016/02/28/java-rust.html"&gt;Comparing Rust and Java&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gist.github.com/Kimundi/8391398"&gt;A light comparison between Rust and Java generics and type system features.&lt;/a&gt; - Marvin Löbel&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://beachape.com/blog/2017/05/24/rust-from-scala/"&gt;Rust: A Scala Engineer's Perspective&lt;/a&gt; - Lloyd &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://overexact.com/rust-for-professionals/"&gt;Rust for professionals&lt;/a&gt; - Pascal&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;JavaScript&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://blog.thoughtram.io/rust/2015/05/11/rusts-ownership-model-for-javascript-developers.html"&gt;Rust's Ownership model for JavaScript developers&lt;/a&gt; - &lt;a href="https://github.com/cburgdorf"&gt;Christoph Burgdorf&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Mercateo/rust-for-node-developers"&gt;Rust for Node developers&lt;/a&gt; - Donald Pipowitch&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://overexact.com/rust-for-professionals/"&gt;Rust for professionals&lt;/a&gt; - Pascal&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nim&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="https://arthurtw.github.io/2015/01/12/quick-comparison-nim-vs-rust.html"&gt;A Quick Comparison of Nim vs. Rust&lt;/a&gt; - Arthur Liao&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nodejs&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="https://github.com/Mercateo/rust-for-node-developers"&gt;Rust for Node developers&lt;/a&gt; - Donald Pipowitch&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OCaml / Haskell&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://science.raphael.poss.name/rust-for-functional-programmers.html"&gt;Rust for functional programmers&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Python&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://lucumr.pocoo.org/2015/5/27/rust-for-pythonistas/"&gt;Rust for Python Programmers&lt;/a&gt; - Armin Ronacher&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rochacbruno/py2rs"&gt;py2rs&lt;/a&gt; - Bruno Rocha&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ruby&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="https://github.com/steveklabnik/rust_for_rubyists"&gt;Rust for Rubyists&lt;/a&gt; - &lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Swift&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://faq.sealedabstract.com/rust/"&gt;A Swift guide to Rust&lt;/a&gt; - sealedabstract&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.chriskrycho.com/rust-and-swift.html"&gt;Rust and Swift&lt;/a&gt; - &lt;a href="https://github.com/chriskrycho"&gt;Chris Krycho&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Erlang&lt;/td&gt;
&lt;td&gt;&lt;ul&gt;&lt;li&gt;
&lt;a href="https://www.infoq.com/articles/rust-erlang-comparison"&gt;A Comparison between erlang and rust starting from language semantics to runtime features, performance etc..&lt;/a&gt; - Krishna Kumar Thokala&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Applications / Libraries / Tools
&lt;/h2&gt;

&lt;p&gt;See repos &lt;a href="https://github.com/kud1ing/awesome-rust"&gt;kud1ing/awesome-rust&lt;/a&gt; &amp;amp; &lt;a href="https://github.com/lk-geimfari/awesomo/blob/master/languages/RUST.md"&gt;awesomo&lt;br&gt;
/rust&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Language stuff
&lt;/h2&gt;

&lt;p&gt;Can I use feature X? &lt;a href="https://caniuse.rs/"&gt;caniuse.rs - Rust feature search&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Async
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://cfsamson.github.io/books-futures-explained/"&gt;Futures Explained in 200 Lines of Rust&lt;/a&gt; - Carl Fredrik Samson&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Closures
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2015/05/finding-closure-in-rust/"&gt;Finding Closure in Rust&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2015/05/defaulting-to-thread-safety/"&gt;Defaulting to Thread-Safety: Closures and Concurrency&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://camjackson.net/post/rust-lang-how-to-pass-a-closure-into-a-trait-object"&gt;How to pass a closure into a trait object&lt;/a&gt; - Cam Jackson&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://ricardomartins.cc/2015/10/12/practical_differences_between_rust_closures_and_functions"&gt;Practical differences between Rust closures and functions&lt;/a&gt; - Ricardo Martins&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://manishearth.github.io/blog/2015/05/30/how-rust-achieves-thread-safety/"&gt;How Rust Achieves Thread Safety&lt;/a&gt; - &lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/swlh/understanding-closures-in-rust-21f286ed1759"&gt;Understanding Closures in Rust&lt;/a&gt; - &lt;a href="https://github.com/stevedonovan"&gt;Steve Donovan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://stevedonovan.github.io/rustifications/2018/08/18/rust-closures-are-hard.html"&gt;Why Rust Closures are (Somewhat) Hard&lt;/a&gt; - Andrew Pritchard&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Documentation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://www.facility9.com/2016/05/10/writing-documentation-in-rust/"&gt;Writing Documentation in Rust&lt;/a&gt; - &lt;a href="https://github.com/peschkaj"&gt;Jeremiah Peschka&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.guillaume-gomez.fr/articles/2019-04-13+Keeping+Rust+projects%27+README.md+code+examples+up-to-date"&gt;Keeping Rust projects' README.md code examples up-to-date&lt;/a&gt; - Guillaume Gomez&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.guillaume-gomez.fr/articles/2020-03-11+Guide+on+how+to+write+documentation+for+a+Rust+crate"&gt;Guide on how to write documentation for a Rust crate&lt;/a&gt; - Guillaume Gomez&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Enums
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/05/05/where-rusts-enum-shines/"&gt;Virtual Structs part 1&lt;/a&gt; | &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/05/29/classes-strike-back/"&gt;part 2&lt;/a&gt; | &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/08/20/virtual-structs-part-3-bringing-enums-and-structs-together/"&gt;part 3&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Errors
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://nrc.github.io/error-docs/"&gt;Error Handling in Rust&lt;/a&gt; - &lt;a href="https://github.com/nrc"&gt;Nick Cameron&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://blog.burntsushi.net/rust-error-handling/"&gt;Error Handling in Rust&lt;/a&gt; - &lt;a href="https://github.com/BurntSushi"&gt;Andrew Gallant&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.sheshbabu.com/posts/rust-error-handling/"&gt;Beginner's guide to Error Handling in Rust&lt;/a&gt; - Sheshbabu Chinnakonda&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.unwoundstack.com/blog/rust-error-handling.html"&gt;Rust error handling&lt;/a&gt; - sp1ff&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://nick.groenen.me/posts/rust-error-handling/"&gt;Rust: Structuring and handling errors in 2020&lt;/a&gt; - Nick Groenen&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://edgarluque.com/blog/wrapping-errors-in-rust/"&gt;Wrapping errors in Rust&lt;/a&gt; - Edgar Luque&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://mmapped.blog/posts/12-rust-error-handling.html"&gt;Designing error types in Rust&lt;/a&gt; - Roman Kashitsyn&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Iterators
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://hoverbear.org/2015/05/02/a-journey-into-iterators/"&gt;A Journey into Iterators&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://hermanradtke.com/2015/06/22/effectively-using-iterators-in-rust.html"&gt;Effectively Using Iterators In Rust&lt;/a&gt; - &lt;a href="https://github.com/hjr3"&gt;Herman J. Radtke III&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://xion.io/post/code/rust-for-loop.html"&gt;for loops in Rust&lt;/a&gt; - Karol Kuczmarski&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://xion.io/post/code/rust-iter-patterns.html"&gt;Iteration patterns for Result &amp;amp; Option&lt;/a&gt; - Karol Kuczmarski&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.guillaume-gomez.fr/articles/2017-03-09+Little+tour+of+multiple+iterators+implementation+in+Rust"&gt;Little tour of multiple iterators implementation in Rust&lt;/a&gt; - Guillaume Gomez&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rustomax/rust-iterators/"&gt;rust-iterators&lt;/a&gt; - Max Skybin&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Lifetime
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="https://manishearth.github.io/blog/2015/05/03/where-rust-really-shines/"&gt;Where Rust Really Shines&lt;/a&gt; - &lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://mobiarch.wordpress.com/2015/06/29/understanding-lifetime-in-rust-part-i/"&gt;Understanding Lifetime in Rust part 1&lt;/a&gt; | &lt;a href="https://mobiarch.wordpress.com/2015/07/08/understanding-lifetime-in-rust-part-ii-3/"&gt;part 2&lt;/a&gt; - Bibhas Bhattacharya&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://charlesetc.com/rust-lifetimes/"&gt;Rust Lifetimes&lt;/a&gt; - Charles&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://pling.jondgoodwin.com/post/lifetimes/"&gt;The Power of Lifetimes&lt;/a&gt; - Jonathan Goodwin&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/nearprotocol/understanding-rust-lifetimes-e813bcd405fa"&gt;Understanding Rust Lifetimes&lt;/a&gt; - Maksym Zavershynskyi&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pretzelhammer/rust-blog/blob/master/posts/common-rust-lifetime-misconceptions.md"&gt;Common Rust Lifetime Misconceptions&lt;/a&gt; - kirill&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Macros
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://danielkeep.github.io/practical-intro-to-macros.html"&gt;A Practical Intro to Macros in Rust 1.0&lt;/a&gt; - &lt;a href="https://github.com/DanielKeep"&gt;Daniel Keep&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://veykril.github.io/tlborm/"&gt;The Little Book of Rust Macros&lt;/a&gt; - Lukas Wirth&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://www.ncameron.org/blog/macros-in-rust-pt1/"&gt;Macros in Rust part 1&lt;/a&gt; | &lt;a href="http://www.ncameron.org/blog/macros-in-rust-pt2/"&gt;part 2&lt;/a&gt; | &lt;a href="http://ncameron.org/blog/macros-in-rust-pt3/"&gt;part 3&lt;/a&gt; | &lt;a href="http://ncameron.org/blog/macros-in-rust-pt4/"&gt;part 4&lt;/a&gt; - &lt;a href="https://github.com/nrc"&gt;Nick Cameron&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://rreverser.com/writing-complex-macros-in-rust/"&gt;Writing complex macros in Rust: Reverse Polish Notation&lt;/a&gt; - Ingvar Stepanyan&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://blog.rust-lang.org/2018/12/21/Procedural-Macros-in-Rust-2018.html"&gt;Procedural Macros in Rust 2018&lt;/a&gt; - &lt;a href="https://github.com/alexcrichton"&gt;Alex Crichton&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://hub.packtpub.com/creating-macros-in-rust-tutorial/"&gt;Creating Macros in Rust&lt;/a&gt; - Aaron Lazar&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/dtolnay/proc-macro-workshop"&gt;Rust Latam: procedural macros workshop&lt;/a&gt; - David Tolnay&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  MIR
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.rust-lang.org/2016/04/19/MIR.html"&gt;Introducing MIR&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Modules
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://dev.to/hertz4/rust-module-essentials-12oi"&gt;Rust Module Essentials &lt;/a&gt; - Sam Pagenkopf&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://rodarmor.com/blog/tour-de-just/"&gt;How I Organize Large Rust Programs&lt;/a&gt; - Casey Rodarmor&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.sheshbabu.com/posts/rust-module-system/"&gt;Clear explanation of Rust’s module system&lt;/a&gt; - Sheshbabu Chinnakonda&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Option &amp;amp; Result
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://8thlight.com/insights/the-option-type"&gt;Option Type part 1&lt;/a&gt; | &lt;a href="https://8thlight.com/insights/using-the-option-type-effectively"&gt;part 2&lt;/a&gt; - 8thlight&lt;/li&gt;
&lt;li&gt;🔚 &lt;a href="http://hoverbear.org/2014/08/12/option-monads-in-rust/"&gt;Option Monads in Rust&lt;/a&gt; - &lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Ownership / Concurrency
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.rust-lang.org/2015/04/10/Fearless-Concurrency.html"&gt;Fearless Concurrency with Rust&lt;/a&gt; - &lt;a href="https://github.com/aturon"&gt;Aaron Turon&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://chrismorgan.info/blog/rust-ownership-the-hard-way.html"&gt;Rust ownership, the hard way&lt;/a&gt; - &lt;a href="https://github.com/chris-morgan"&gt;Chris Morgan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://words.steveklabnik.com/a-new-introduction-to-rust"&gt;An alternative introduction to Rust&lt;/a&gt; - &lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://manishearth.github.io/blog/2015/05/17/the-problem-with-shared-mutability/"&gt;The Problem With Single-threaded Shared Mutability&lt;/a&gt; - &lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="https://manishearth.github.io/blog/2015/05/27/wrapper-types-in-rust-choosing-your-guarantees/"&gt;Wrapper Types in Rust: Choosing Your Guarantees&lt;/a&gt; - &lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://hermanradtke.com/2015/06/09/strategies-for-solving-cannot-move-out-of-borrowing-errors-in-rust.html"&gt;Strategies for solving 'cannot move out of' borrowing errors in Rust&lt;/a&gt; - &lt;a href="https://github.com/hjr3"&gt;Herman J. Radtke III&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://softwaremaniacs.org/blog/2016/02/12/ownership-borrowing-hard/en/"&gt;Why Rust's ownership/borrowing is hard&lt;/a&gt; - Ivan Sagalaev&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://xion.io/post/code/rust-patterns-ref.html"&gt;&amp;amp; vs. ref in Rust patterns&lt;/a&gt; - Karol Kuczmarski&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://ricardomartins.cc/2016/06/08/interior-mutability"&gt;Interior mutability in Rust: what, why, how?&lt;/a&gt; | &lt;a href="https://ricardomartins.cc/2016/06/25/interior-mutability-thread-safety"&gt;part 2&lt;/a&gt; | &lt;a href="https://ricardomartins.cc/2016/07/11/interior-mutability-behind-the-curtain"&gt;part 3&lt;/a&gt; - Ricardo Martins&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.skylight.io/rust-means-never-having-to-close-a-socket/"&gt;Rust Means Never Having to Close a Socket&lt;/a&gt; - &lt;a href="https://github.com/wycats"&gt;Yehuda Katz&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://mobiarch.wordpress.com/2015/06/29/understanding-lifetime-in-rust-part-i/"&gt;Understanding Lifetimes in Rust, part 1&lt;/a&gt; | &lt;a href="https://mobiarch.wordpress.com/2015/07/08/understanding-lifetime-in-rust-part-ii-3/"&gt;part 2&lt;/a&gt; - Bibhas Bhattacharya&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2015/02/some-notes-on-send-and-sync/"&gt;Some Notes on &lt;code&gt;Send&lt;/code&gt; and &lt;code&gt;Sync&lt;/code&gt;&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://jeenalee.com/2016/08/15/sharing-coloring-books-in-rust.html"&gt;Sharing Coloring Books With Friends in Rust&lt;/a&gt; - &lt;a href="https://github.com/jeenalee"&gt;Jeena Lee&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://jeenalee.com/2016/08/29/move-clone-copy.html"&gt;Moving, Cloning, and Copying Coloring Books in Rust&lt;/a&gt; - &lt;a href="https://github.com/jeenalee"&gt;Jeena Lee&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/@robertgrosse/ref-patterns-destructuring-and-invisible-borrows-2f8ae6902656"&gt;Ref patterns, destructuring, and invisible borrows&lt;/a&gt; - Robert Grosse&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://limpet.net/mbrubeck/2019/02/07/rust-a-unique-perspective.html"&gt;Rust: A unique perspective&lt;/a&gt; - Matt Brubeck&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://cfsamson.github.io/book-exploring-async-basics"&gt;The Node Experiment - Exploring Async Basics with Rust&lt;/a&gt; - Carl Fredrik Samson&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.thoughtram.io/ownership-in-rust/"&gt;A closer look at Ownership in Rust&lt;/a&gt; - Pascal Precht&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://blog.logrocket.com/understanding-ownership-in-rust/"&gt;Understanding ownership in Rust&lt;/a&gt; - Ukpai Ugochi&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Privacy
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://words.steveklabnik.com/structure-literals-vs-constructors-in-rust"&gt;Structure literals vs constructors in Rust&lt;/a&gt; - &lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Strings
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://hermanradtke.com/2015/05/03/string-vs-str-in-rust-functions.html"&gt;String vs &amp;amp;str in Rust functions part 1&lt;/a&gt; | &lt;a href="http://hermanradtke.com/2015/05/06/creating-a-rust-function-that-accepts-string-or-str.html"&gt;part 2&lt;/a&gt; | &lt;a href="http://hermanradtke.com/2015/05/29/creating-a-rust-function-that-returns-string-or-str.html"&gt;part 3&lt;/a&gt; - &lt;a href="https://github.com/hjr3"&gt;Herman J. Radtke III&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://blog.jwilm.io/from-str-to-cow/"&gt;From &amp;amp;str to Cow&lt;/a&gt; - Joe Wilm&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.ameyalokare.com/rust/2017/10/12/rust-str-vs-String.html"&gt;Rust: str vs String&lt;/a&gt; - Ameya Lokare&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://phaazon.net/blog/on-owning-borrowing-pub-interface"&gt;On dealing with owning and borrowing in public interfaces&lt;/a&gt; - Dimitri Sabadie&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.brandons.me/blog/why-rust-strings-seem-hard"&gt;Why Rust strings seem hard&lt;/a&gt; - Brandon Smith&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Syntax extensions
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.burntsushi.net/rust-regex-syntax-extensions/"&gt;Syntax extensions and regular expressions for Rust&lt;/a&gt; - &lt;a href="https://github.com/BurntSushi"&gt;Andrew Gallant&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Traits
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;⭐ &lt;a href="http://blog.rust-lang.org/2015/05/11/traits.html"&gt;Abstraction without overhead: traits in Rust&lt;/a&gt; - &lt;a href="https://github.com/aturon"&gt;Aaron Turon&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2015/01/peeking-inside-trait-objects"&gt;A series on trait objects part 1&lt;/a&gt; | &lt;a href="https://huonw.github.io/blog/2015/01/the-sized-trait"&gt;part 2&lt;/a&gt; | &lt;a href="https://huonw.github.io/blog/2015/01/object-safety"&gt;part 3&lt;/a&gt; | &lt;a href="https://huonw.github.io/blog/2015/05/where-self-meets-sized-revisiting-object-safety/"&gt;part 4&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://benashford.github.io/blog/2015/05/24/rust-traits-for-developer-friendly-libraries/"&gt;Rust traits for developer friendly libraries&lt;/a&gt; - &lt;a href="https://github.com/benashford"&gt;Ben Ashford&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://xania.org/201506/traits-and-trait-objects"&gt;Traits and trait objects&lt;/a&gt; - Matt Godbolt&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://llogiq.github.io/2015/07/30/traits.html"&gt;Rust's Built-in Traits, the When, How &amp;amp; Why&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://llogiq.github.io/2015/11/27/from-into.html"&gt;Where are you From::from&lt;/a&gt; - &lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://beachape.com/blog/2017/03/12/gentle-intro-to-type-level-recursion-in-Rust-from-zero-to-frunk-hlist-sculpting/"&gt;Gentle Intro to Type-level Recursion in Rust&lt;/a&gt; - &lt;a href="https://github.com/lloydmeta"&gt;Lloyd Chan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://joshleeb.com/posts/rust-traits-and-trait-objects/"&gt;Traits and Trait Objects in Rust&lt;/a&gt; - Josh Leeb-du Toit&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://tratt.net/laurie/blog/entries/a_quick_look_at_trait_objects_in_rust.html"&gt;A Quick Look at Trait Objects in Rust&lt;/a&gt; - Laurence Tratt&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Unsafe
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://cglab.ca/~abeinges/blah/rust-unsafe-intro/"&gt;Unsafe Rust: An Intro and Open Questions&lt;/a&gt; - &lt;a href="https://github.com/Gankro"&gt;Alexis Beingessner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://huonw.github.io/blog/2016/04/memory-leaks-are-memory-safe/"&gt;Memory Leaks are Memory Safe&lt;/a&gt; - &lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/04/29/on-reference-counting-and-leaks/"&gt;On Reference Counting and Leaks&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2015/04/30/a-few-more-remarks-on-reference-counting-and-leaks/"&gt;A Few More Remarks on Reference Counting and Leaks&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://cglab.ca/~abeinges/blah/everyone-poops/"&gt;Pre-pooping Your Pants With Rust&lt;/a&gt; - &lt;a href="https://github.com/Gankro"&gt;Alexis Beingessner&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2016/05/23/unsafe-abstractions/"&gt;Unsafe Abstractions&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;a href="http://smallcultfollowing.com/babysteps/blog/2016/05/27/the-tootsie-pop-model-for-unsafe-code/"&gt;The "Tootsie Pop" Model for Unsafe Code&lt;/a&gt; - &lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Playground
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.rust-lang.org"&gt;Rust Playground&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://play.integer32.com/"&gt;alternative&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Locale links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="//pt_BR.md"&gt;Brazilian Portuguese&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//zh_CN.md"&gt;Chinese&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//da_DK.md"&gt;Danish&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//fr_FR.md"&gt;French&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//de_DE.md"&gt;German&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//it_IT.md"&gt;Italian&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//ja_JP.md"&gt;Japanese&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//ko_KR.md"&gt;Korean&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//ru_RU.md"&gt;Russian&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//es_ES.md"&gt;Spanish&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//tr_TR.md"&gt;Turkish&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  People
&lt;/h2&gt;

&lt;p&gt;This is the official &lt;a href="http://www.rust-lang.org/team.html"&gt;Rust Team&lt;/a&gt; and &lt;a href="https://github.com/orgs/servo/people"&gt;Servo Team&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Are you searching for a rustacean? &lt;a href="http://www.rustaceans.org/"&gt;http://www.rustaceans.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do you want to ask a question? &lt;a href="https://users.rust-lang.org/"&gt;Users Forum&lt;/a&gt;, &lt;a href="https://stackoverflow.com/questions/tagged/rust"&gt;Stack Overflow&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do you want to meet them IRL? &lt;a href="http://www.meetup.com/topics/rust/"&gt;Meetup groups&lt;/a&gt;, &lt;a href="https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com"&gt;Community calendar&lt;/a&gt;, &lt;a href="https://github.com/rust-community/talks"&gt;Community talks list&lt;/a&gt;, &lt;a href="https://rustbridge.github.io/"&gt;RustBridge&lt;/a&gt;, &lt;a href="https://timetill.rs/#/"&gt;Time till Rust&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to rusty events? &lt;a href="https://blog.rust-lang.org/2018/01/31/The-2018-Rust-Event-Lineup.html"&gt;The 2018 Rust Event Lineup&lt;/a&gt;, &lt;a href="https://blog.rust-lang.org/2019/05/20/The-2019-Rust-Event-Lineup.html"&gt;The 2019 Rust Event Lineup&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Are you looking for a job? &lt;a href="http://rustjobs.rs/"&gt;RustJobs.rs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Are you fast, friendly, and fearless? &lt;a href="https://www.rustaceans.org/findwork/starters"&gt;Find something Rusty to work on!&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do you want to stay up to date? &lt;a href="https://blog.rust-lang.org/"&gt;The official blog&lt;/a&gt;, &lt;a href="https://this-week-in-rust.org/"&gt;This Week in Rust&lt;/a&gt;, &lt;a href="http://guillaumegomez.github.io/this-week-in-rust-docs/"&gt;This Week in Rust Docs&lt;/a&gt;, &lt;a href="https://www.reddit.com/r/rust/"&gt;The official reddit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Do you want to find out why some historical decisions took place? &lt;a href="https://github.com/mgattozzi/chronicle.rs"&gt;Chronicle.rs&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Fearless Rust Bloggers
&lt;/h3&gt;

&lt;p&gt;A complete list could be found &lt;a href="https://users.rust-lang.org/t/fearless-rust-bloggers/16770"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/aturon"&gt;Aaron Turon&lt;/a&gt; - &lt;a href="http://aturon.github.io/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/BurntSushi"&gt;Andrew Gallant&lt;/a&gt; - &lt;a href="http://blog.burntsushi.net/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Hoverbear"&gt;Andrew Hobden&lt;/a&gt; - &lt;a href="https://hoverbear.org/tags/#rust"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/brson"&gt;Brian Anderson&lt;/a&gt; - &lt;a href="https://brson.github.io/blog/index.html"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/cburgdorf"&gt;Christoph Burgdorf&lt;/a&gt; - &lt;a href="https://cburgdorf.wordpress.com/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/chris-morgan"&gt;Chris Morgan&lt;/a&gt; - &lt;a href="https://chrismorgan.info/blog/tags/rust/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pnkfelix"&gt;Felix S Klock II&lt;/a&gt; - &lt;a href="http://blog.pnkfx.org/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/huonw"&gt;Huon Wilson&lt;/a&gt; - &lt;a href="https://huonw.github.io/blog/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jonathandturner"&gt;Jonathan Turner&lt;/a&gt; - &lt;a href="http://jntrnr.github.io"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/llogiq"&gt;Llogiq&lt;/a&gt; - &lt;a href="http://llogiq.github.io/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Manishearth"&gt;Manish Goregaokar&lt;/a&gt; - &lt;a href="https://manishearth.github.io/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nrc"&gt;Nick Cameron&lt;/a&gt; - &lt;a href="http://featherweightmusings.blogspot.fr/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nikomatsakis"&gt;Niko Matsakis&lt;/a&gt; - &lt;a href="http://smallcultfollowing.com/babysteps/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pcwalton"&gt;Patrick Walton&lt;/a&gt; - &lt;a href="https://pcwalton.github.io/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wycats"&gt;Yehuda Katz&lt;/a&gt; - &lt;a href="http://yehudakatz.com/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/steveklabnik"&gt;Steve Klabnik&lt;/a&gt; - &lt;a href="http://words.steveklabnik.com/"&gt;blog&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Don't forget &lt;a href="http://www.rustacean.net/"&gt;Ferris&lt;/a&gt; the unofficial mascot.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tutorials &amp;amp; Workshop Materials
&lt;/h2&gt;

&lt;p&gt;These are slides and materials from brick-and-mortar workshops about Rust.&lt;br&gt;
While they're unlikely to help a student learning independently, they may be&lt;br&gt;
of interest if you're running a workshop on Rust.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Workshop &lt;a href="http://www.rust-tutorials.com/RustConf17/"&gt;slides and exercises&lt;/a&gt; from RustConf 2017.&lt;/li&gt;
&lt;li&gt;Niko Matsakis's &lt;a href="https://github.com/nikomatsakis/rust-tutorializer"&gt;rust tutorializer&lt;/a&gt; framework&lt;/li&gt;
&lt;li&gt;Niko Matsakis's &lt;a href="https://github.com/nikomatsakis/rust-tutorials-keynote"&gt;ownership, borrowing, traits, structs, and threading tutorials&lt;/a&gt;, keynote files&lt;/li&gt;
&lt;li&gt;Niko Matsakis's &lt;a href="https://github.com/nikomatsakis/concurrency-tutorial"&gt;concurrency tutorial&lt;/a&gt; from December 2015&lt;/li&gt;
&lt;li&gt;Niko Matsakis's &lt;a href="http://smallcultfollowing.com/20151209/"&gt;Mozlando Tutorial&lt;/a&gt; includes slides and play.rust-lang.org demos&lt;/li&gt;
&lt;li&gt;Jim Blandy's &lt;a href="https://github.com/jimblandy/exercises"&gt;exercises&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Dan Callahan's &lt;a href="https://github.com/callahad/python-rust-ffi"&gt;Python Rust FFI&lt;/a&gt; examples&lt;/li&gt;
&lt;li&gt;Nick Cameron's &lt;a href="http://ncameron.org/oopsla15.html"&gt;oopsla slides and exercises&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Florian Gilcher's &lt;a href="https://github.com/skade/mailbox"&gt;mailbox tutorial&lt;/a&gt; takes Hello World to a whole new concurrent and networked level&lt;/li&gt;
&lt;li&gt;Carol Nichols' &lt;a href="https://github.com/carols10cents/intro-to-rust"&gt;Intro to Rust&lt;/a&gt; that presents the guessing game and ownership in a similar manner as the book&lt;/li&gt;
&lt;li&gt;Jonathan Pallant's &lt;a href="https://github.com/thejpster/pi-workshop-rs"&gt;Rust on the Raspberry Pi tutorial (using a Sense HAT)&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Follow me:&lt;br&gt;
&lt;a href="https://twitter.com/scott_beeker"&gt;https://twitter.com/scott_beeker&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/dangolbeeker"&gt;https://github.com/dangolbeeker&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>rust</category>
      <category>webdev</category>
      <category>devops</category>
    </item>
    <item>
      <title>Advanced CRA Cofiguration escape typecheck hell</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Sat, 22 May 2021 17:37:15 +0000</pubDate>
      <link>https://forem.com/scottbeeker/advanced-cra-cofiguration-escape-typecheck-hell-514d</link>
      <guid>https://forem.com/scottbeeker/advanced-cra-cofiguration-escape-typecheck-hell-514d</guid>
      <description>&lt;p&gt;&lt;a href="https://scottbeekercodes.medium.com/escaping-type-checking-hell-in-react-typescript-94bb52fd8312"&gt;https://scottbeekercodes.medium.com/escaping-type-checking-hell-in-react-typescript-94bb52fd8312&lt;/a&gt;&lt;/p&gt;

</description>
      <category>typescript</category>
      <category>react</category>
      <category>typecheck</category>
    </item>
    <item>
      <title>React Native Web with Typescript 2021</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Thu, 29 Apr 2021 21:11:27 +0000</pubDate>
      <link>https://forem.com/scottbeeker/react-native-web-with-typescript-2021-3bn7</link>
      <guid>https://forem.com/scottbeeker/react-native-web-with-typescript-2021-3bn7</guid>
      <description>&lt;p&gt;Deleted&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>reactnativeweb</category>
      <category>developer</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Docker wale tank</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Tue, 30 Mar 2021 21:09:03 +0000</pubDate>
      <link>https://forem.com/scottbeeker/docker-wale-tank-547i</link>
      <guid>https://forem.com/scottbeeker/docker-wale-tank-547i</guid>
      <description>&lt;p&gt;So I found this thing called earthly &lt;br&gt;
You can find the repo here:&lt;br&gt;
&lt;a href="https://github.com/earthly/earthly"&gt;https://github.com/earthly/earthly&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌍 Earthly is a build automation tool for the container era. It allows you to execute all your builds in containers. This makes them self-contained, repeatable, portable and parallel. You can use Earthly to create Docker images and artifacts (eg binaries, packages, arbitrary files).&lt;/p&gt;

</description>
      <category>docker</category>
      <category>earthly</category>
      <category>go</category>
      <category>containers</category>
    </item>
    <item>
      <title>A collection of GitHub issue and pull request templates</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Sun, 21 Mar 2021 02:21:11 +0000</pubDate>
      <link>https://forem.com/scottbeeker/a-collection-of-github-issue-and-pull-request-templates-2926</link>
      <guid>https://forem.com/scottbeeker/a-collection-of-github-issue-and-pull-request-templates-2926</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/stevemao/github-issue-templates"&gt;https://github.com/stevemao/github-issue-templates&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Despite Googles autopilot Kubernetes is still hard</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Fri, 19 Mar 2021 05:35:26 +0000</pubDate>
      <link>https://forem.com/scottbeeker/despite-googles-autopilot-kubernetes-is-still-hard-a1b</link>
      <guid>https://forem.com/scottbeeker/despite-googles-autopilot-kubernetes-is-still-hard-a1b</guid>
      <description>&lt;p&gt;&lt;a href="https://containerjournal.com/features/despite-googles-autopilot-kubernetes-is-still-hard/"&gt;https://containerjournal.com/features/despite-googles-autopilot-kubernetes-is-still-hard/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Is Ruby Pass-By-Value Or Pass-By-Reference?</title>
      <dc:creator>Scott Beeker</dc:creator>
      <pubDate>Sun, 28 Feb 2021 19:05:13 +0000</pubDate>
      <link>https://forem.com/scottbeeker/is-ruby-pass-by-value-or-pass-by-reference-bgh</link>
      <guid>https://forem.com/scottbeeker/is-ruby-pass-by-value-or-pass-by-reference-bgh</guid>
      <description>&lt;p&gt;&lt;a href="https://www.infoq.com/articles/ruby-parameter-passing/?itm_campaign=rightbar_v2&amp;amp;itm_source=infoq&amp;amp;itm_medium=articles_link&amp;amp;itm_content=link_text"&gt;https://www.infoq.com/articles/ruby-parameter-passing/?itm_campaign=rightbar_v2&amp;amp;itm_source=infoq&amp;amp;itm_medium=articles_link&amp;amp;itm_content=link_text&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
      <category>node</category>
    </item>
  </channel>
</rss>
