Week 01 - Environment Setup And Tool Installation
Task Goal
This week prepares the course workflow. The main task is to make sure GitHub, VS Code, Git, and SSH are ready before the robot experiments begin. A working toolchain is important because every later week depends on stable editing, committing, and pushing.
Folder Check
week1/ |-- README.md # required report |-- screenshots/ # recommended when setup images exist
Work Completed
- Created or prepared the GitHub account used for the course.
- Installed VS Code as the main editor for Markdown and code files.
- Configured Git identity and repository access.
- Prepared SSH authentication so future submissions can be pushed more smoothly.
Commands
git config --global user.name your-name
git config --global user.email your-email@example.com
ssh-keygen -t ed25519
git status
Result
The local environment is ready for weekly homework submission. The repository can now be used as a structured course archive.
Summary
The most important result of this week is not a robot demo, but a reliable submission workflow. With GitHub, Git, VS Code, and SSH prepared, later ROS2 and simulation tasks can be documented and submitted with less friction.