Course
freeCodeCamp: Relational Databases Certification
SourceNotebook
Code Editors
- Text/Code editors focus primarily on the text contents of the file, where the IDEs expose various tools to manage your code.
- Cloud based code editors allow you to write code directly from a web browser. Some examples include github codespaces, Replit, Ona and Vscode Dev(VS Code Online)
- VS Code considers projects to be "workspaces". The workspace is whichever directory you opened in VS Code.
- VS Code's terminal is OS Bound. A few commands if you please:
cd~→ Navigate to Home Directorymkdir folderName→ Create a New Foldercode /path/to/folder→ Open VS Code with given path if code is a path variable on your OS.
- Open HTML files behind a proper web server otherwise elements might break like CSS.
- VS Code Shortcuts:
Code Explanation Shift + Alt + F Run configured formatter. Ctrl + Shift + F Search the text contents of all the files in your workspace. Ctrl + Shift + K Delete a line. Ctrl + B Hide the sidebar Ctrl + Alt + Up/Down Multi-line Edit. Also while holding Alt you can add the places manually. Ctrl + Shift + P Command Palette - Some Good VS Code Extensions: Better Comments, Code Spell Checker, Error Lens, Indent Rainbow, VS Code Great Icons, Colorize, ESLint, Prettier, Pretty TypeScript Errors, Power Mode, Discord presence.
Bash Fundamentals