VoiceDraw: Speak Your Architecture Into Existence

The most annoying part of system design usually isn't coming up with the solution—it's drawing it out. VoiceDraw fixes that. You describe your design out loud, and the AI renders it as an architecture diagram in real time.

I tried saying "the frontend calls backend microservices through an API Gateway, and the backend connects to PostgreSQL and Redis." The diagram appeared within seconds, with component connections and hierarchy mostly correct. For technical interviews or team discussions where you need quick visuals, it saves a lot of hassle.

It also supports text input, so you can type your description if you don't want to use the microphone. The interface is dark-themed and modern—easy to pick up.

cuTile Rust: Safe GPU Kernels in Rust

NVIDIA Labs open-sourced cuTile Rust, a framework for writing GPU kernels in Rust. Anyone who's written CUDA knows how painful data races are to debug—threads competing for memory, race conditions that stay hidden for months before randomly triggering. cuTile Rust uses Rust's ownership system to catch these issues at compile time.

The project is open source on GitHub (nvlabs/cutile-rs). If you're doing high-performance computing or AI training work, it's worth a look. The Rust GPU programming ecosystem has been lacking, and cuTile fills that gap.

One caveat: the project is still early, with documentation and examples still being fleshed out. It's best suited for developers already comfortable with both Rust and CUDA.

Hollywood: Write GitHub Actions in TypeScript

Anyone who's written GitHub Actions in YAML knows the pain. Logic gets slightly complex and you're embedding shell scripts inside YAML, debugging indentation errors for hours, with type checking out of the question. Hollywood lets you write Actions directly in TypeScript, compiling to standard action.yml.

The benefits are clear: IDE autocomplete, type checking, and access to any npm package. For teams maintaining lots of CI/CD workflows, this is much more reliable than hand-crafting YAML.

The project comes from Dedalus Labs and is still early-stage, but the idea itself is solid. If your Actions config has gotten complex enough that you need to manually lint it, give it a try.