{"id":20721495,"url":"https://github.com/cleancut/ultimate_rust2","last_synced_at":"2025-04-05T07:04:16.919Z","repository":{"id":41511516,"uuid":"376443829","full_name":"CleanCut/ultimate_rust2","owner":"CleanCut","description":"The best Intermediate Rust course out there!","archived":false,"fork":false,"pushed_at":"2023-12-04T11:44:05.000Z","size":57,"stargazers_count":287,"open_issues_count":0,"forks_count":224,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-03-29T06:03:57.147Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CleanCut.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-13T05:01:31.000Z","updated_at":"2025-03-24T01:22:34.000Z","dependencies_parsed_at":"2024-11-17T03:28:12.472Z","dependency_job_id":"fb5b9f73-543d-4378-8bd6-95c2d866e7fc","html_url":"https://github.com/CleanCut/ultimate_rust2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanCut%2Fultimate_rust2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanCut%2Fultimate_rust2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanCut%2Fultimate_rust2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanCut%2Fultimate_rust2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CleanCut","download_url":"https://codeload.github.com/CleanCut/ultimate_rust2/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299831,"owners_count":20916190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T03:28:04.732Z","updated_at":"2025-04-05T07:04:16.897Z","avatar_url":"https://github.com/CleanCut.png","language":"Rust","readme":"# Ultimate Rust 2: Intermediate Concepts\n\nThis is the companion repository for the `Ultimate Rust 2: Intermediate Concepts` (the followup to the popular [Ultimate Rust Crash Course]).  _UR2IC_ will be published independently online in the second half of 2021 and is also presented live as part of some O'Reilly virtual events such as  [Rust in 3 Weeks], or taught in-person for corporate training.  You will get the most out of this training experience by doing the [exercises] in this repository and watching (or attending) the instructor-led training.\n\nIn other words, this repository is for you hands-on-learners!\n\nI use macOS, and that is what I developed this course on.  Everything _ought_ to work similarly on major Linux distributions and Windows. Please [contact me](mailto:nathan@agileperception.com) ASAP if you have trouble with anything on this page.\n\n_Just getting started with Rust? Check out the prerequisite for this course: [Ultimate Rust Crash Course]_\n\n## Install Rust \u0026 Prepare Your Development Environment\n\nRust is required for this course!  The latest stable version is always recommended. See [the repository for the previous course] for instructions on how to install Rust, prepare your development environment, and helpful resources.\n\n## Exercises\n\nPlease clone this repository! These exercises are designed as Rust projects for you to edit on your own computer.\n\nThe exercises are separate Rust projects inside the `exercises/` subdirectory.  For each exercise, you should:\n- Open the corresponding`exercise/EXERCISE_NAME` directory in your IDE/Editor\n- Navigate to the same directory with your Terminal application (so you can run `cargo run`, etc.)\n- Open up the `src/main.rs` file.\n- Follow the numbered exercise instructions in the code comments.\n\nIf you encounter any problems with the exercises, please feel free to use the online course communication tools to contact me, or [open an discussion]. Either way. 😄\n\nFor your convenience, here is a list of all the exercises, with links to view the code on GitHub.\n\n- [Exercise - Idiomatic Rust](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/idiomatic)\n- [Exercise - Documentation](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/docs)\n- [Exercise - Closures \u0026 Iterators](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/closures_iterators)\n- [Exercise - Common Traits](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/traits)\n- [Exercise - Errors](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/errors) - See also Jane Lusby's 2020 RustConf Session, [Error Handling Isn't All About Errors]\n- [Exercise - Testing](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/testing)\n- [Exercise - Logging](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/logging)\n- [Exercise - Threads \u0026 Channels](https://github.com/CleanCut/ultimate_rust2/tree/main/exercise/threads_channels)\n\n## Examples\n\nThis course goes over a lot of code in lecture format. Much of the code from the lectures can be found in the [`example/`] directory in this repository.\n\n## Contribution\n\nAll contributions are assumed to be dual-licensed under MIT/Apache-2.\n\n## License\n\nDistributed under the terms of both the MIT license and the Apache License (Version 2.0).\n\nSee [license/APACHE](license/APACHE) and [license/MIT](license/MIT).\n\n## Sponsor\n\nIf you like the work I do, please consider sponsoring me [on GitHub] or [on Patreon]. 💖\n\n[exercises]: https://github.com/CleanCut/ultimate_rust2#exercises\n[`example/`]: https://github.com/CleanCut/ultimate_rust2/blob/main/example\n[open an discussion]: https://github.com/CleanCut/ultimate_rust2/discussions/new\n[Ultimate Rust Crash Course]: https://agileperception.com/ultimate_rust_crash_course\n[Rust in 3 Weeks]: https://agileperception.com\n[Ultimate Rust 2: Intermediate Concepts]: https://github.com/CleanCut/ultimate_rust2\n[the repository for the previous course]: https://github.com/CleanCut/ultimate_rust_crash_course\n[on GitHub]: https://github.com/sponsors/CleanCut\n[on Patreon]: https://patreon.com/nathanstocks\n[Error Handling Isn't All About Errors]: https://www.youtube.com/watch?v=rAF8mLI0naQ\n","funding_links":["https://github.com/sponsors/CleanCut","https://patreon.com/nathanstocks"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleancut%2Fultimate_rust2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcleancut%2Fultimate_rust2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleancut%2Fultimate_rust2/lists"}