Javascript: Using Import instead of Require

By PNC No comments

To use IMPORT in Javascript instead of Require, add this to your package.json: “type”: “module”

VSCode: Calling your VSCode Application via Console

By PNC No comments

Okay! So! No more beating around the bush.  This is how you can call Visual Studio Code through your console. BTW, the Windows console or shell is the equivalent of  “terminal” if you are using macOS. Here it goes! While at the c: prompt or in your project folder, type the command below: c:\code . […]

VSCode: IDE Distortion Fix

By PNC No comments

If by any chance you have a dedicated graphic card, and you encounter this graphical issue while using VSCode in full screen mode: Here is what you need to do. REMINDER: The video card that I am currently using is NVIDIA.  The fix might be different if you have other brand of video card. 1. […]

VSCode: Accessing The Integrated Terminal

By PNC No comments

For developers, gamit na gamit na ngayon ang console or terminal.  If you’re a first time VSCode user and you want to access its integrated terminal,  here are ways how to access it: Way #1 – Just press “CTRL+`” Way #2 – Go to View – Go to Terminal Way #3 – Press CTRL + […]

VSCode: Disabling “pylint”

By PNC No comments

To remove or disable “pylint” in VS Code, here is how you do it… Go to File Go to Preference Go to Settings At the “Settings” search field, copy/paste this value “python.linting.pylintEnabled“. Uncheck “Whether to lint Python files using pylint“. And that is how you disable it.  If you’re bothered by how pylint police your […]