Tools needed to set yourself up as a Developer

Photo by Growtika on Unsplash

Tools needed to set yourself up.

Software that needs to be installed onto your computer.
Windows or Mac Machine, Visual Studio Code, Chrome, FireFox, Microsoft Edge Browser.

CodeSandbox is a place you can write code without a laptop, such as a iPad.
https://codesandbox.io/

GitHub is a place where you can have your code stored.
https://github.com/


HTML
HTML is a markup language. The text in a web page is represented by HTML. HTML is another file extension for a file just like .mp3, .mp4, .mov. This helps the computer to identify the file.

Terminal
Putting a set of instructions into terminal to carry out a particular action and to print out a result.

"ls" will list out all of the files in a particular directory.
"cd" will change directory to a particular place.
"touch" will create a new file.
"rm" will remove or delete files from a folder.
"mkdir" will to make a new folder.
"tree" will help you to view file and folder structures.
*Very useful way of working, when you know how to use commands, helps complete projects faster.

Comments