-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththe-coder's-computer.html
More file actions
69 lines (68 loc) · 2.3 KB
/
the-coder's-computer.html
File metadata and controls
69 lines (68 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>
The Coder's Computer
</title>
</head>
<body>
<h1>
Choosing A Text Editor
</h1>
<h2>
A text editor is a piece of software that you download and install on<br>
your computer, or you access online through your web browser, that<br>
allows you to write and manage text, especially the text that you write<br>
to build a web site. The text editor has to be one of the most<br>
important tools you can use as an aspiring web developer.
</h2>
<h3>
Here are some common ext editors
</h3>
<ul>
<li>
notepad ++
</li>
<LI>
TextWrangler
</LI>
<li>
BB Edit
</li>
<li>
Brackets
</li>
</ul>
<li>
Visual Studio Code
</li>
<li>
Atom
</li>
<h1>
The Command Line
</h1>
<h2>
A command line, or terminal, is a text based interface to the system.<br>
You are able to enter commands by typing them on the keyboard and feedback<br>
will be given to you similarly as text.<br>
The command line typically presents you with a prompt. As you type, it will<br>
be displayed after the prompt. Most of the time you will be issuing commands.
</h2>
<h2>
Opening a terminal
</h2>
<ul>
<li>If you're on a Mac then you'll find the program Terminal under Applications -> Utilities. <br>
An easy way to get to it is the key combination
'command + space' which will bring up Spotlight,<br>
then start typing Terminal and it will soon show up.</li>
<li>If on Linux then you will probably find it in Applications -> System or Applications -> Utilities. <br>
Alternatively you may be able to 'right-click' on the desktop and there may be an option 'Open in terminal'.</li>
<li>
If you are on Windows and intend to remotely log into another machine then you will need an SSH client.<br>
A rather good one is Putty (free) .
</li>
</ul>
</body>
</html>