🛠 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...

October 19, 2022

🧑‍💻 Add interactive code into your blog post

What is it? Today I found interesting service named Replit which is kind of online IDE for many languages, i already saw many of similar project, for example ideone, which i used in my school days for solving contest on shool computers, where compilers is not installed. But Replit provide much more, you have a really good editor, collaborative mode, you may build complicated projects which contains multiple files, using ppular build systems, like CMake....

September 5, 2022