Browsing Tag
rust
155 posts
vscreen 0.2.0: the MCP tools got smarter, and now they build websites
vscreen gives AI agents a real Chromium browser, streamed live over WebRTC. The first release had 63 tools.…
16 Patterns for Crossing the WebAssembly Boundary (And the One That Wants to Kill Them All)
WebAssembly is fast. We all know that by now. What almost nobody talks about is the hidden toll…
Stop Throwing Exceptions. Use Option and Result Instead.
Let’s talk about what’s wrong with JavaScript error handling. Here’s a function: function getUser(id: number): User | null…
From 200K to 1M: How Claude Opus 4.6 Changed My AI Development Workflow Overnight
A follow-up to The AI Development Workflow I Actually Use I wrote about my AI development workflow a…
Rust in Linux: Fixing the Edges, Not the Core
In 2022, Linus Torvalds made the decision to merge Rust support into the Linux kernel – Version 6.1…
I built a custom Deep Learning framework in pure Rust just to simulate Arknights: Endfield gacha luck (Talos-XII)
Hello everyone, I’ve been working on Talos-XII, which started as a simple idea to simulate gacha pulls for…
I Got Tired of cd-ing Into Nested Folders, So I Built a File Finder in Rust
I like keeping my projects organized. Maybe a little too organized. My folder structure looks something like this:…
Backprop Finally Made Sense When I Reimplemented It in Rust
I never used PyTorch or TensorFlow. My ML background was NumPy and scikit-learn. I could train models, tune…
AI-Assisted Coding Requires Constraints
The rapid adoption of AI-assisted coding is reshaping how software is produced and deployed. In 2026, AI-assisted coding…
Designing Blockchain #4: Merkle Trees and State Verification
Intro In the previous article, we secured our Fleming blockchain by implementing cryptographic signatures and wallets, ensuring that…