Debug Python Project in Visual Studio Code
Ways to Open a Command Palette
- Use Menu
Menu -> View -> Command Palette...
. - Use the shortcut
Shift + Command + P
(on macOS).
You can search for commands in the Command Palette, which makes things very convenient.
Run Tests or a Python File
- Open the Command Palette.
- Search for
Python: Run
in the …
Ways to Download Files Using Selenium Webdrive
Selenium WebDrive cannot have no control of system Dialog, so you have to avoid the Dialog when downloading files using WebDrive.
The first way is to enable automatical download in the browser that you use with Seleniu WebDrive. So when click a file link, the file is automatically downloaded to …
Collections and Iterators in C++
Collections
-
Prefer
std::deque
tostd::vector
when the size of the collection is unknow. -
Suppose set
A
andB
are two set with the same type and setC
is another set with the same value type but a different comparison function, then it is still valid to insert …