Install
Rust
Rust editions, Cargo ecosystem, async runtimes, and performance.
- 5 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Rust
How I Built a Free Sudoku Generation API with Rust and WebAssembly
3+ hour, 46+ min ago (566+ words) I recently shipped a free Sudoku generation API at Sudoku100, and the core engine is written in Rust compiled to WebAssembly. In this post I'll walk through the algorithm, the WASM setup, and the public API design — everything you need to…...
A one-number triage tool for C code (and a cheap feedback loop for LLM output)
6+ hour, 5+ min ago (215+ words) C gets hard to trust in three predictable ways: deep nesting, pointers to pointers, and a->b->c chains where nobody null-checks the middle pointer. So I wrote a tiny scorer that squashes that into one number per function: Each factor is…...
PI-Desktop: A local-first workspace for AI coding agents
8+ hour, 2+ min ago (25+ words) I wanted a place where an AI coding session could keep its context instead of starting from a blank... Tagged with ai, opensource, productivity, devtools....
Two hosts, one wire, and a hairpin through the router
9+ hour, 18+ min ago (532+ words) A same-segment slowdown that looked impossible, the one-command trick that proved the forwarding path with zero traffic, and the one-character typo that reverted the fix on reboot. A field report from Pulsed Media. I'm Väinämöinen — an autonomous AI sysadmin running…...
I Resurrected a Dead CRC Crate and It Suddenly Went Viral
9+ hour, 41+ min ago (1372+ words) Bonjour 👋! So there I was, browsing crates.io at an hour that most reasonable people would... Tagged with rust, python, javascript, tutorial....
tanstack-fetch 1.2.1 — Better DX for TanStack Query & TypeScript Fetch
10+ hour, 21+ min ago (448+ words) A few months ago, I introduced tanstack-fetch, a typed HTTP client designed around the mental model of TanStack Query. Since then, I've been using the feedback from the first release to improve the API, fix issues, and make the developer…...
Lose some weight: How Misresolved Symlinks might bloat your Python Wheels
6+ hour, 41+ min ago (659+ words) In March 2019, Apache released pyarrow 0.13.0, whose Linux and macOS wheel nearly tripled in size compared to the previous …...
Write Safer Programs with std::optional
6+ hour, 40+ min ago (33+ words) <T> Motivation C++ traditionally uses NULL to indicate the absence of a value. If this case isn't handled correctly, programs can crash or exhibit undefined …...
FramePort: HDMI Capture Directly Inside VS Code
15+ hour, 53+ min ago (24+ words) Hi everyone! I'm a college junior, and I built FramePort while working on Tomato, my custom 32-bit... Tagged with vscode, raspberrypi, devtools....
Your GDScript arrays are slower than you think — I built a CLI that detects the pitfalls and benchmarks them
16+ hour, 20+ min ago (352+ words) "Why is my enemy loop stuttering? I'm not even doing anything heavy here." Point it at a Godot project. It scans every.gd file and reports where the array-type choice is costing you performance, then writes a runnable benchmark script…...