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: Runin 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::dequetostd::vectorwhen the size of the collection is unknow. - 
Suppose set
AandBare two set with the same type and setCis another set with the same value type but a different comparison function, then it is still valid to insert …