Changes between Version 5 and Version 6 of en/HowToCodeInTerminal


Ignore:
Timestamp:
May 16, 2025, 1:08:13 PM (2 weeks ago)
Author:
Ales Horak
Comment:

edited by hales in edit_page_in_vim.py

Legend:

Unmodified
Added
Removed
Modified
  • en/HowToCodeInTerminal

    v5 v6  
    66
    77* for the **primary access**, see the information for various OSes directly at https://aurora.fi.muni.cz
    8 
    98* 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 
    119* 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 
    1310* when developing a program, e.g. in Python, we suggest to **work in
    1411  multiple terminal windows**. For each window start a separate
     
    1613  handy here), change to the same directory on the server and use
    1714  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
    2420
    2521* 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].