🛠 Debugging Python/C++ using VSCode
If you working on a Python project, which required high performance you probably will use C++ code embedded into your python application. And you may have a question, how do debug this mixed code? That is easy using VSCode! Note: before starting be sure that you have a debugger installed on your system (gdb for Linux or lldb for macOS) Note 2: If you debug inside docker container you should allow ptrace inside docker container using cap-add option: docker run --cap-add=SYS_PTRACE...