reading-notes

The Coder’s Computer

Assignment

Go through resources below and create a page in reading-notes that summarizes what you learned as though you were presenting the material to a non-technical friend interested in learning about it.

Readings

Choosing a Text Editor

The Command Line

Basic Navigation

About Files

Notes

Choosing a Text Editor

Summary

In order to write coding in a clean, clear, concise, efficient, and easily auditable manner, you need to use a good text editor. This text editor should have the ability to suggest endings to your code snippets (code completition)** as you type to improve speed and reduce redundant typing. It should also **highlight each element within a block of code (_syntax highlighting) so that you can quickly distinguish what is text, comments, variables, functions, etc. Furthermore, the text editor should be customizable through the use of extensions and a variety of themes. This allows you to make the editor more comfortable for you use and speed up your ability to deliver flawless code.

Notes

Using the Terminal

The Command Line
Basic Navigation
About Files