I Write Type Safe Generic Data Structures in C
danielchasehooper.com
There Are No New Ideas in AI Only New Datasets
blog.jxmo.io
A CarFax for Used PCs; Hewlett Packard wants to give old laptops new life
spectrum.ieee.org
The JTAG in your Qualcomm/Snapdragon device's USB port
linaro.org
Show HN: TokenDagger – A tokenizer faster than OpenAI's Tiktoken
github.com
They don't make 'em like that any more: Sony DTC-700 audio DAT player/recorder
kevinboone.me
Ask HN: What's the 2025 stack for a self-hosted photo library with local AI?
The provenance memory model for C
gustedt.wordpress.com
Donkey Kong Country 2 and Open Bus
jsgroth.dev
Show HN: New Ensō – first public beta
untested.sonnet.io
14.ai (YC W24) hiring founding engineers in SF to build a Zendesk alternative
14.ai
The Plot of the Phantom, a text adventure that took 40 years to finish
scottandrew.com
Ask HN: What Are You Working On? (June 2025)
Auth for B2B SaaS: it's not like auth for consumer software
tesseral.com
Gridfinity: The modular, open-source grid storage system
gridfinity.xyz
Scribble-based forecasting and AI 2027
dynomight.net
Printegrated Circuits: Merging 3D Printing and Electronics
spectrum.ieee.org
Researching LED Displays for the Time Circuits
partsnotincluded.com
Reverse Engineering Vercel's BotID
nullpt.rs
Proton joins suit against Apple for predatory practices
proton.me
Asynchronous Error Handling Is Hard
parallelprogrammer.substack.com
Show HN: Open-Source International Space Station Tracker ESP32/Arduino for $20
github.com
New proof dramatically compresses space needed for computation
scientificamerican.com
Cloud-forming isoprene & terpenes from crops may drastically improve climate
smithsonianmag.com
I've looked into using Seccomp for this before for sandboxing. It was kind of a mess. Very awkward to work with. Especially for syscalls where the information you want isn't directly in the parameters - e.g. for strings. You have to do some crazy stuff to make that work.
Especially annoying because it only supports cBPF (Classic BPF) which is very limited compared to eBPF. Apparently they aren't ever going to add eBPF to more things since it is such a security risk.
You may want to look into this if your use-case is not security sensitive: https://docs.kernel.org/admin-guide/syscall-user-dispatch.ht...