reading-notes

Reading Notes for Codefellows!


Project maintained by AlanYHung Hosted on GitHub Pages — Theme by mattgraham

Code 102

Reading 02

Choosing a Text Editor

  1. No best editor, choose the one you are most comfortable with.
  2. Features you should look for in Text Editor:
    1. code completion
    2. syntax highlighting
    3. nice variety of themes (to reduce eye strain and fatigue)
    4. the ability to choose from a healthy selection of extensions
  3. Third Party Editors
    1. Notepad++
    2. BB Edit (Not Free)
    3. Visual Studio Code (VS Code)
    4. Atom
    5. Brackets
    6. Sublime Text

IDE (Integrated Development Environment)

A suite of different software all coming together. An IDE is a text editor, a file manager, a compiler, and a debugger all in one software package.

Command Line

Commands in Terminal

Files

Important Concepts

  1. Everything is a file under Linux
    • Even directories.
  2. Linux is an extensionless system
    • Files can have any extension they like or none at all.
  3. Linux is case sensitive

References

Choosing a Text Editor
The Command Line
Basic Navigation
About Files

<– Back