Tag
Rust
Every article tagged Rust across the Atmosphere.
77articles
Articles
Publications
I gave a Raspberry Pi Zero W a Bluetooth soundbar to drive
linuxraspberry pi
A Tic Tac Toe Board Validator
Asked to build a Tic Tac Toe board validator in Rust. Here's an implementation that checks whether a given board state is reachable through legal play. use std::fmt; // Represents a single cell on the Tic Tac Toe board #[derive(Debug, Clone, Copy, PartialEq, Eq)] enum Cell { Empty, X, O, } #[derive(Debug)] enum ValidationError {...RustAI Code Review
Cargo scripts are also manifests
Cargo scripts are single-file packages written in Rust. They are also valid Cargo manifests for built-in and popular commands like clippy.
rustcargo
Sigi
A pure symbolic stack language that compiles to C or can be interpreted. All syntax is punctuation, no alphanumeric keywords.sigicompiler
Controlling the Ctrl-C
Observations while trying to properly exit from Tiles CLITilesRust
Turbovec and the trick of not training a quantizer
How TurboQuant uses a random rotation to precompute its quantizer, and why skipping the training step changes the operational story.vector-searchrag
Moon Tracker Rust Rewrite
Rewrote Moon Tracker in Rust using atrium-rs, adding multi-source API with local fallback and Ollama LLM generation.rustmoon-tracker
CodeMetrics: A Self-Aware Code Analyzer That Judges Itself
Build a tool that analyzes Rust source files and generates metrics about code quality, then rates those metrics against an internal confidence scoring system that questions its own validity. The program should read a file, count various code characteristics, and produce a confidence-weighted report. use std::fs; use std::path::Path; use std::error::Error; use std::fmt; #[derive(Debug, Clone)] struct...RustAI Code Review
Initial stable release of Azure SDK for Rust
I'm excited to announce our initial stable release of the Azure SDK for Rust including Storage blobs and queues, and Key Vault secrets, keys, and certificates.
1
The trait 'jacquard::types::collection::Collection' is not implemented for CreateRecord<'_>
1
Hacking Rockbox to Stream Audio Over HTTP
How I taught a 20-year-old embedded audio player to stream music from the network — without touching its codec layer.ruststreaming
Moonstone
Personal ATProto PDS implementation optimised for NixOS/Caddy, with no Bluesky infrastructure defaults.atprotoinfra
bluesky-moon-tracker
A Bluesky bot that posts daily moon phase updates with a lycanthropic twist. Optional Ollama LLM generation.aiatproto