The command line (Terminal on a Mac, Command Prompt on Windows) is your window into your computer and your home base for doing development work. It's how you'll be able to jump between files and directories, open stuff up, run simple scripts and check the status of things. The Command Line is fully text-based, so you'll need to type everything in and can pretty much forget about the mouse. Graphical User Interface We often access computer programs through their Graphical User Interface (or GUI, for short). This is simply the visual component of a computer program. For instance, word processing software (Microsoft Word, Google Docs, etc.) generally offers a GUI with whitespace to type in, a cursor to indicate where we're typing, and a variety of buttons, menus, and options to format our text. This is a GUI. It's the visual portion of a program we see and interact with. The Terminal However, when we are developing code we often ...
This is my notes I took from various sources on learning how to code.