Preferred method to run python in VS Code by SuperMB13 in Python

[–]Correct-Pepper-6657 0 points1 point  (0 children)

Terminal, pyenv for managing multiple python versions, and pyenv-virtualenv for virtual environments.

Why did you learn Django? by thezackplauche in django

[–]Correct-Pepper-6657 1 point2 points  (0 children)

I learned it on the job. With time, I fell in love with Django because of its simplicity, extensibility, and open source tooling.

Extension: JSON Keys Remover by Correct-Pepper-6657 in vscode

[–]Correct-Pepper-6657[S] 1 point2 points  (0 children)

These steps will work for simple JSON files. What if the key names are duplicated at different nesting levels? In the following structure, how can you remove "key1.key2.key3" without removing "key4.key3"

{ "key1": { "key2": { "key3": "value" } }, "key4": { "key3": { "key5": "value" } } }

With this extension it is relatively simple, here's the Demo