Robert Knight
robertknight2.bsky.social
Robert Knight
@robertknight2.bsky.social
Frontend Developer. Machine learning in Rust. https://github.com/robertknight.
The main goal here was to see whether RTen can yet provide a competitive alternative in terms of accuracy and performance for CPU inference (GPUs and NPUs are left as an exercise for the future). Also porting existing projects is a good way to find usability issues with the library.
November 10, 2025 at 10:47 PM
Reposted by Robert Knight
Your (or your employer's) financial support for the PSF would be very much appreciated this year! (And every other year too) bsky.app/profile/pyth...
In the end, it wasn’t a hard decision for the PSF to put our community and our values first, but it does mean we lost out on this large funding source. Donations and sponsorships will help us fill the gap, so we can continue supporting the Python ecosystem and living our values.
October 27, 2025 at 8:38 PM
A quick glance at the CSS on the Airbnb homepage reveals a lot of Tailwind-like classes on elements, though not actual Tailwind.
October 25, 2025 at 11:10 AM
"Let's get one thing straight: over-engineering in Rust is incredibly fun. The language hands you these shiny tools and it's hard not to play with them. It's like LEGO for programmers."

Quite a good take actually.
October 19, 2025 at 12:52 PM
Someone in the ONNX project had a similar idea it seems, but it seems that is on hold for the moment - github.com/onnx/onnx/pu....
ONNX2: prototype for a replacement of protobuf = same API, same format as ONNX but without protobuf by xadupre · Pull Request #7208 · onnx/onnx
onnx2 is a prototype which replicates onnx API without using protobuf. It replaces the protobuf definition of ONNX classes (ModelProto, TensorProto, ...). It is able to load and save onnx files wit...
github.com
October 16, 2025 at 6:53 AM
To work around this, rten v0.23 uses a custom Protocol Buffers parser, with entirely safe code, which enables minimizing copies for these fields when loading via regular file IO. This minimizes the overhead of loading from ONNX compared to the `.rten` format.
October 16, 2025 at 6:53 AM
ONNX models with embedded weights are very large Protocol Buffers messages (up to 2GB) with the weights stored in `bytes` fields. This makes it difficult to load efficiently because the weights don't have the appropriate alignment to mmap the file, or to load the file into a single buffer.
October 16, 2025 at 6:53 AM
What did it call the repository?
October 13, 2025 at 4:26 PM
I've found using fixed values for the default size often works well if most item sizes lie in a "typical" range. It has the upside of being easy to reason about and gets you a reasonable initial scroll size before any item sizes are known.
September 25, 2025 at 8:33 AM
A written policy can set ground rules that allow rapidly closing issues/PRs if obviously not followed. I like Ghostty's - github.com/ghostty-org/...
github.com
September 13, 2025 at 8:26 AM
Do you have an AI contribution policy for these repos?
September 13, 2025 at 8:15 AM