You’ve heard about Rust, but you never had the chance to try it out?
This course is for you!
You’ll learn Rust by solving 100 exercises.
You’ll go from knowing nothing about Rust to being able to start writing your own programs, one exercise at a time.
Go to rust-exercises.com and follow the instructions there to get started with the course.
rustup
is already installed on your system, run rustup update
(or another appropriate command depending on how you installed Rust on your system) to make sure you’re running on the latest stable version.rust-analyzer
extension.You can find the solutions to the exercises in the solutions
branch of this repository.
Introduction to the Model Context Protocol (MCP) The Model Context Protocol (MCP) is an open…
While file extensions in Linux are optional and often misleading, the file command helps decode what a…
The touch command is one of the quickest ways to create new empty files or update timestamps…
Handling large numbers of files is routine for Linux users, and that’s where the find command shines.…
Managing files and directories is foundational for Linux workflows, and the mv (“move”) command makes it easy…
Creating directories is one of the earliest skills you'll use on a Linux system. The mkdir (make…