-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy patheditors.php
More file actions
31 lines (31 loc) · 1.63 KB
/
editors.php
File metadata and controls
31 lines (31 loc) · 1.63 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
<?php include("top.php");?>
<?php include("nav.php");?>
<div class="hide-for-large" id="mobile-support"></div>
<div id="first-row" class="row">
<div class="small-12 columns">
<h1>Programming Text Editor</h1>
<p>
You will need a text editor to use to write programs. In particular, there are
number of editors you <b>should not use</b> for programming including, Microsoft Word,
NotePad, TextEdit or Libre Office. These editors tend not to store "plain text" which
is how we need to write programs. Programs cannot have things like bold, italics, or different
fonts - and even if you don't use these things in your file, the files are stored in a format
that can represent all this "pretty" text stuff - and that confuses compilers and interpreters.
</p>
<p>
If you already have an editor or development environment installed please <b>keep using it</b>.
There is no need to install another editor just for this course.
</p>
<p>If you have a programmer editor or development environment you like, you can use it. If not, we recommend these
free text editors for software development:</p>
<ul>
<li><a href="https://thonny.org/" target="_blank" rel="noopener noreferrer">Thonny</a> – Free, open source, simple</li>
<li><a href="https://phcode.io/" target="_blank" rel="noopener noreferrer">Phoenix Code</a> – Free, open source, more advanced</li>
<li><a href="https://code.visualstudio.com/" target="_blank" rel="noopener noreferrer">VS Code</a> – Free, feature-rich, includes AI assistance</li>
</ul>
<p>
You can use any programmer editor you like for this course.
</p>
</div>
</div>
<?php include("footer.php"); ?>