reading-notes

Reading notes for Code Fellows!


Project maintained by William-Moreno Hosted on GitHub Pages — Theme by mattgraham

Text Editors


A text editor is one of a coder’s most important and used tools. There are a variety of choices for a text editor, each with differing pros and cons. By and large however, the choice of which text editor a developer uses to write their code is largely a matter of personal preference. But there are some features that are routinely looked for by developers.

Desirable Features in a Text Editor

There are several features that text editors may possess, including live view (which provides a constant view of the webpage as code is entered and saved), zooming in and out and even which operating systems they will function on. However, the four most sought after features seem to be:

Types of Text Editors

There are three basic divisions of text editors. They consist of:

Some developers may chose one text editor and remain with it monogamously, and some may change text editors with each new season.


Basic Terminal Usage


Command Effect
cd Change directories
ls List contents of directory
touch Creates empty file
mkdir Creates a directory
mv Moves a file
cp Makes a copy of a file
rm Removes a file
rmdir Removes a directory

Back to Main