Best of VSCode — November 2022
- 1
- 2
- 3
This Dot·3y
VSCode Keyboard Proficiency
The first command we will learn is the command to open the keyboard shortcuts editor. The main two cursor word movements are the cursorWordLeft and cursorWord. The cursorLineEnd and cursorLineStart commands do exactly that. They are bound to Ctrl+A and Ctrl+E, respectively. The most basic form of vertical movement is the cursor up and cursor down commands.
- 4
Syncfusion·3y
JavaScript Debugging with VS Code and Chrome
JavaScript Debugging with VS Code and Chrome Debugging is a vital part of identifying why your application is misbehaving. This article will discuss how we can debug JavaScript using the simple and efficient tools in Visual Studio Code and Google Chrome. A list of breakpoints is always available in the right panel of Chrome DevTools. For example, JavaScript will throw an error in strict mode if we assign values to undeclared variables.
- 5
Visual Studio Code·3y
VS Code Sandboxing
VS Code Sandboxing Migrating VS Code to Process Sandboxing is a win-win for security and the VS Code architecture November 28, 2022 by Benjamin Pasero, @BenjaminPasero. Enabling the sandbox in Electron renderer processes is a critical requirement for secure and reliable Electron applications like Visual Studio Code.
- 6
DEV·3y
Tidy up your machine with Visual Studio Code Dev Containers
The Visual Studio Code Dev Containers extension lets you use a Docker container as a full-featured development environment. It allows you to open any folder or repository inside a container and take advantage of Visual Studio code's full feature set. So far, after the startup, you're ready to develop inside the docker container with a fully configured environment.
- 7
This is Learning·3y
Working with Github from your best editor
extension allows you to do whatever you want if you are working with a PR and Issues. This extension is an official extension created by the GitHub team. To create your first PR you have to click the icon in the top right of the PR section.
- 8
Community Picks·3y
7 Tips for reverse engineering minified TypeScript/JavaScript
MusicKitJS is a web service that creates playlists from the songs you listened to. MoovinGroovin is integrated with Spotify, and I got a request from a user to add support for Apple Music. The only public way to generate these is through method of Apple's MusicKitJS SDK.