PROJECT2026-07-28
Pintos Test Explorer - Sharing Pintos Test Discovery and Debugging Between VS Code and the CLI
In the previous post, I covered how Pintos Test Explorer runs a Make target and displays the generated test artifacts in a VS Code sidebar. This time, I want to look at the interna…
ccspintos
Read PROJECT2026-07-27
Pintos Test Explorer - Pintos Tests in a VS Code Sidebar GUI
When working on Pintos, I usually ran tests from the terminal. For a single test, I had to remember the correct project directory and Make target. After the run finished, I had to…
ReadPROJECT2026-05-10
LeetCode Debugger - Recreating the LeetCode Runtime Locally
In the previous post, I covered how the VS Code extension finds the current solution and test case files before starting debugpy. This time, I want to look at what happens afterwar…
algorithm
Read PROJECT2026-05-05
LeetCode Debugger - Debugging LeetCode Solutions in VS Code
When solving problems on LeetCode, the submission result alone is often not enough to understand why the code is wrong. For simple problems, I can insert a few print() statements.…
algorithm
Read