reading-notes

Class 02 - The Coder’s Computer

Choosing a text editor

When choosing a text editor for programming four important features are:

Using the command line

Some common command line commands are:

For example, the following sequence of commands will navigate to a directory called projects then create a new directory called new-project before creating a new file called newfile.md and finally navigating back to the previous directory and displaying the contents of the new-project directory.

            cd projects
            mkdir new-project
            touch new-project/newfile.md
            cd ..
            ls projects/new-project