Show HN: SyNumpy – a Header only C++17 library for working with NumPy Arrays
symisc_devel
17 points
2 comments
April 02, 2026
Related Discussions
Found 5 related stories in 49.0ms across 3,471 title embeddings via pgvector HNSW
- Show HN: Han – A Korean programming language written in Rust xodn348 · 141 pts · March 14, 2026 · 49% similar
- Show HN: Skir – like Protocol Buffer but better gepheum · 72 pts · March 08, 2026 · 47% similar
- Show HN: We built a terminal-only Bluesky / AT Proto client written in Fortran FormerLabFred · 65 pts · March 20, 2026 · 45% similar
- Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1 cigrainger · 26 pts · March 25, 2026 · 44% similar
- Show HN: Eyot, A programming language where the GPU is just another thread steeleduncan · 68 pts · March 08, 2026 · 44% similar
Discussion Highlights (1 comments)
peterabbitcook
I’m trying to wrap my head around the use case this was created for. If a python service dumps a numpy array to bytes and sends that as a payload to a C++ service, is that blob of bytes not interpretable by C++ as e.g. a struct with some size fields and a pointer to the start of the array? (Cutting out the filesystem/npy file) Maybe I’m overthinking it but I can’t quite envision a use case where a python service and C++ service would be sharing a filesystem