A collection of miscellaneous learning materials and notes, mostly on technical topics for the software engineer. Topics are loosely separated by directories in project root. The presence of an exercises.toml file within a directory means the information is quizzable - the project cli can be run to perform the exercises for practice.
- Install Dependencies / C linker
# Debian/Ubuntu
sudo apt install build-essential# Fedora/RHEL
sudo dnf install gcc# MacOS
xcode-select --install- Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shFollow the default installation prompts and then reload your shell
source $HOME/.cargo/env- Clone and build
git clone https://github.com/wadeptr/learning.gitcd learningcargo build --releaseThe cli scans the working directory for subdirectories that contain exercises.toml and makes them available with hints through the interactive cli.
cargo run # interactive topic picker
cargo run -- vim # skip to vim exercises