Skip to content

Commit aec594b

Browse files
authored
chore(curriculum): remove video from Code Editors lectures (freeCodeCamp#61547)
1 parent 8115fcb commit aec594b

File tree

5 files changed

+6
-41
lines changed

5 files changed

+6
-41
lines changed

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d26269456511aa3db614d.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672d26269456511aa3db614d
33
title: What Is a Code Editor and IDE?
4-
challengeType: 11
5-
videoId: cD8alVrsiRE
4+
challengeType: 19
65
dashedName: what-is-a-code-editor-and-ide
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is a code editor and IDE?
16-
1710
You might think these are the same thing, but not quite. A code editor is any application that allows you to edit code files. An IDE, or Integrated Development Environment, is a full application that allows you to compile, run, and debug your code while you edit it.
1811

1912
Perhaps some examples might be helpful.

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45583fd75a504136fbbb.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672d45583fd75a504136fbbb
33
title: How to Install Visual Studio Code onto Your Computer
4-
challengeType: 11
5-
videoId: JuxdN8OWllk
4+
challengeType: 19
65
dashedName: how-to-install-visual-studio-code-onto-your-computer
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
How to install Visual Studio Code onto your computer.
16-
1710
To install VS Code, you'll want to visit their website to get the appropriate installer for your operating system. Make sure you visit the VS Code website, and not the Visual Studio website.
1811

1912
For Windows, you can download an EXE installer. Once you've downloaded it, run the file and the setup wizard will take you through the installation process.

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d45651d83b450801efb3a.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
---
22
id: 672d45651d83b450801efb3a
33
title: How to Create a Project and Run Your Code Locally in VS Code
4-
challengeType: 11
5-
videoId: 9F98HQgLaPU
4+
challengeType: 19
65
dashedName: how-to-create-a-project-and-run-your-code-locally-in-vs-code
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
How do you create a project and run your code locally in VS Code?
16-
1710
To get started, you should know that VS Code considers projects to be "workspaces". The workspace is whichever directory you opened in VS Code.
1811

1912
To begin, you will need to use a command line interface to create a new directory for your new project. A directory is another name for the folder.
2013

21-
Command-line interfaces, or CLI for short, allow you to interact with your operating system through text-based commands. You will learn more about these tools in future lecture videos.
14+
Command-line interfaces, or CLI for short, allow you to interact with your operating system through text-based commands. You will learn more about these tools in future lectures.
2215

2316
If you are on Windows, you can use the Command Prompt or PowerShell. If you are on a Mac, you can open up your Terminal app.
2417

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d456f4ac35950b300e93f.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672d456f4ac35950b300e93f
33
title: What Are Several Useful Keyboard Shortcuts for Maximizing Productivity in VS Code?
4-
challengeType: 11
5-
videoId: 54vVx07YxYM
4+
challengeType: 19
65
dashedName: what-are-several-useful-keyboard-shortcuts-for-maximizing-productivity-in-vs-code
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are several useful keyboard shortcuts for maximizing productivity in VS Code?
16-
1710
You're likely already familiar with some of the basic shortcuts, which are inherited from your operating system. Shortcuts like `Ctrl + S` to save, `Ctrl + C` to copy, and `Ctrl + V` to paste all work in VS Code.
1811

1912
But there's a few that are application specific and can still level up your productivity. It's worth noting that some of these shortcuts may differ by operating system.

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d457bcdd8b350ec2b6254.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672d457bcdd8b350ec2b6254
33
title: What Are Some Good VS Code Extensions You Can Use in Your Editor?
4-
challengeType: 11
5-
videoId: Pc_M9oyFu7I
4+
challengeType: 19
65
dashedName: what-are-some-good-vs-code-extensions-you-can-use-in-your-editor
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are some good VS Code extensions you can use in your editor?
16-
1710
_Better Comments_ is an extension that offers special highlighting for specific code comments. For example, it will call out "TODO" comments, as well as syntax to indicate questions or warnings.
1811

1912
_Code Spell Checker_ offers indication when you have spelled something incorrectly in your code. Because it is designed for code files, it will account for things like camel case.

0 commit comments

Comments
 (0)