Chapter 01: Installing Rust on Linux (Arch)
published:
For young learners! Learn how to install Rust on your Arch Linux computer using the terminal, step-by-step.
published:
For young learners! Learn how to install Rust on your Arch Linux computer using the terminal, step-by-step.
published:
For young learners! Learn how to install Rust on your Windows computer by first setting up Ubuntu using Windows Subsystem for Linux (WSL), then installing Rust within that Linux environment.
published:
For young learners! Learn how to install Rust on your macOS computer using the terminal, step-by-step.
published:
For young learners! Learn how to install Vim, your powerful text editor, on your Arch Linux computer using the terminal.
published:
For young learners! Learn how to install Vim on your Windows computer by first setting up Ubuntu using Windows Subsystem for Linux (WSL), then installing Vim within that Linux environment.
published:
For young learners! Learn how to install Vim, your powerful text editor, on your macOS computer using Homebrew.
published:
For young learners! Master the fundamental movements in Vim (h, j, k, l) to navigate your code quickly and efficiently.
published:
For young learners! Learn how to switch to insert mode in Vim (i, a, o) to start writing and changing your code.
published:
For young learners! Learn the essential commands to save your changes (`:w`) and exit Vim (`:q`, `:wq`, `:q!`).
published:
For young learners! A step-by-step guide to enabling Windows Subsystem for Linux (WSL) on your Windows computer.
published:
For young learners! Learn how to set up your Ubuntu Linux environment within WSL, including creating a username and password.
published:
For young learners! Begin your Rust adventure by setting up your first Quest App project with `cargo new`, and learn the basics of navigating and editing code.
published:
For young learners! Learn how to make your Rust program display text on the screen using `println!` and store multiple quests using `Vec` (Vector) for your Quest App.
published:
For young learners! Learn how your Rust Quest App can read command-line arguments to accept new quest ideas from the user, making your program interactive.
published:
For young learners! Discover how to persist your Quest App's data by learning to save and load quests from a `quests.txt` file in Rust, ensuring your progress is never lost.
published:
For young learners! Make your Quest App quests permanent by learning to save newly added quests to a `quests.txt` file in Rust, ensuring your progress is always up-to-date.
published:
For young learners! Learn how to implement a 'remove' command in your Rust Quest App to delete completed or unwanted quests from your list and persist the changes to the file.