Changes between Version 5 and Version 6 of en/HowToCodeInTerminal
- Timestamp:
- May 16, 2025, 1:08:13 PM (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
en/HowToCodeInTerminal
v5 v6 6 6 7 7 * for the **primary access**, see the information for various OSes directly at https://aurora.fi.muni.cz 8 9 8 * for **basic navigation** one you are logged in, see the [https://ubuntu.com/tutorials/command-line-for-beginners#3-opening-a-terminal Ubuntu tutorial for working in terminal]. 10 11 9 * for **easy repeated access**, you should setup a ''SSH key authorization'', see the simple [https://aurora.fi.muni.cz/ssh-keys.html aurora SSH keys tutorial]. 12 13 10 * when developing a program, e.g. in Python, we suggest to **work in 14 11 multiple terminal windows**. For each window start a separate … … 16 13 handy here), change to the same directory on the server and use 17 14 for example: 18 19 - one window for source code editing 20 - one window for running the code and inspecting the results 21 - one window for running a debug (e.g. via `python -mpbd source.py`) 22 - one window for working with auxiliary files, e.g. edit testing 23 data 15 - one window for source code editing 16 - one window for running the code and inspecting the results 17 - one window for running a debug (e.g. via `python -mpbd source.py`) 18 - one window for working with auxiliary files, e.g. edit testing 19 data 24 20 25 21 * if you are curious enough to get to a **terminal pro level**, we suggest to go through the MIT course [https://missing.csail.mit.edu/ The Missing Semester of Your CS Education].