reading-notes


Project maintained by Razan-am Hosted on GitHub Pages — Theme by mattgraham

Text editor

- Choosing A Text Editor

I think the best text editor is truly the one that you enjoy using the most. That’s really the best one, isn’t it?

  1. Code completion: allows you to start typing, and the code completion feature will display possible suggestions based on what you originallytyped.

  2. Syntax highlighting: is a feature that takes the text you type, and makes it more noticeable by colorizing the text.

Attributes are a different color than elements. And elements are a different color than copy.

  1. Nice series of themes: these themes will allow you to change the color of the background of your text editor, the colors in your text.

  2. Extensions: are like plugins for your text editor, that allow you to have superpowers that you wouldn’t have otherwise.

- Built-in Text Editor

- Third-Party Options


# Linux

1. The Command Line

Your window into the computer.

- Opening a Terminal:

-The Shell, Bash:

The most common one is called bash .

To know which shell you are using you may use a command called echo to display a system variable stating your current shell.It is a command which is used to display messages.

- Shortcuts:


2. Basic Navigation

Let’s explore the system.


- Paths

- linux is a hierarchical structure:

- More on Paths:


3. More About Files

Kinda boring but essential knowledge.

- Linux is an Extensionless System

- Linux is Case Sensitive

Linux sees these all as distinct and separate files.

- Spaces in names

- Quotes

- Escape Characters

- Hidden Files and Directories

This is used with Ls command to list a hidden file . ls -a Documents

References:

@The Older Coder/Choosing A Text Editor – The Older Coder @Linux /Linux Tutorial