vadimcn
vadimcn
### Input C/C++ Header ```C++ #include struct Foo { size_t data; }; struct Bar { size_t data; ~Bar() { data = 0; } }; Foo MakeFoo(); // { return Foo();...
I often wish there were a decent visualizer for NumPy/PyTorch tensors. Debugging dimension indexing bugs with the way the Python extension displays tensors is a total drag :( I know...
I often would like to figure out which of the function lines take the most time. Currently this is very hard to do because lines do not have a common...
### Discussed in https://github.com/vadimcn/vscode-lldb/discussions/668 Originally posted by **adam-fowler** March 15, 2022 Is there a setting to pass a `--arch` parameter to the invocation of lldb?
OS: arm64 apple m1 VSCode version: 1.57.1 Extension version: 1.6.5 (default installation) Compiler: c++ Build target: mandelbrot example  Sorry for waiting. As you can see, the...

@brson: The whole "Check here to accept License Agreement" business seems pretty lame for an OSS project. I am guessing this came about only because that's what the default installer...
It would be nice to formalize our package upgrade policy. In other words: When packages may be installed side-by-side, and when they are mutually exclusive? A straw-man policy proposal, which...
Here's a first draft of my driver for [12.48" module](https://github.com/caemor/epd-waveshare/issues/164). Does this look like something you'd be willing to integrate?
I've observed that in many GEOS operations, such as clipping and interpolation, new polygon vertices are created with a Z coordinate set to NaN. This complicates handling elevation data, as...