Dockerfileを辛口な指摘でlintするdroastの紹介です。
Markdown・Quarto・R Markdown向けのlanguage server兼formatter兼linterツールPanacheの紹介です。
通信を検査・改変できるMITMプロキシTUIのProxelarの紹介です。
Vim形式のモーダル編集とExcel互換の数式が使えるTUI表計算エディタcellの紹介です。
エディタ・AIエージェント・Webプレビューを内蔵した軽量ターミナルTeraxの紹介です。
ヘッドレスChromeの代替を狙うRust製の軽量ブラウザエンジンObscuraの紹介です。
大規模リポジトリでも軽快に動くことを狙ったGit GUIクライアントGitCometの紹介です。
悪質なAIスクレイパーを毒入りデータの無限ループに誘い込む防御ツールMiasmaの紹介です。
ターミナルで動くシンプルなKubernetesダッシュボードKDashの紹介です。
A Zola theme with standard.site support — 96 colour themes, syntax highlighting, and AT Protocol verification.
危険な処理を実行前に防ぐターミナル向けセキュリティゲートTirithの紹介です。
Mermaid記法の図をレンダリングするRust製CLIツールMermanの紹介です。
複数のAIエージェントをターミナル内で並行管理するTUIツールHerdrの紹介です。
スクリプト実行時に依存関係を自動インストールするNode.jsパッケージマネージャaubeの紹介です。
MarkdownをリッチにプレビューできるTUIツールleafの紹介です。
リンク移動に対応したターミナル用Markdownビューアmd-tuiの紹介です。
Built a TUI tool for generating constructed languages with a comprehensive linguistic taxonomy, Ratatui terminal interface, and AT Protocol publishing via standard.site.
A modular, high-performance Rust framework for generating constructed languages (conlangs).
Converted the avatar updater, gradient generator, Markov chain bots (Bluesky + Mastodon) from Python scripts to Rust binaries. Same pattern, same day, four repos.
I've had a Raspberry Pi Zero W sitting under my soundbar for about a year. The job description was simple: be the one device on the soundbar's Bluetooth allowlist so I never have to repair anything, and play whatever audio my MacBook shoves at it. That's it. No screen, no DAC, no hat. Just a tiny board acting as a permanent Bluetooth client.
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 {...
GitHub Actionsワークフローをローカルで検証・実行できるTUIのwrkflwの紹介です。
A complete reimplementation of the Sigi symbolic stack language from Python to Rust — lexer, parser, AST, C code generation, CLI, interpreter, and REPL.
Cargo scripts are single-file packages written in Rust. They are also valid Cargo manifests for built-in and popular commands like clippy.
Helix風のセレクション優先モーダル操作を持つ、カラフルなターミナルhexエディタhexapodaの紹介です。
tmux互換でありながら型付きSDKから操作できるRust製マルチプレクサrmuxの紹介です。
Observations while trying to properly exit from Tiles CLI
How TurboQuant uses a random rotation to precompute its quantizer, and why skipping the training step changes the operational story.
Kagi Newsをターミナルから閲覧できるTUIのkite-tuiの紹介です。
シェルコマンドの実行結果を試行錯誤できるTUIスクラッチパッドruraの紹介です。
How Oxide's Rust collections library defends against adversarial trait implementations.
既存.bashrcをそのまま動かせるRust製bash互換シェルbrushの紹介です。
SSH接続管理、クラウド統合、コンテナ操作を統合したTUIアプリPurpleの紹介です。
TypeScript / JavaScript向けのRust製コードベース分析ツールFallowの紹介です。
Rewrote Moon Tracker in Rust using atrium-rs, adding multi-source API with local fallback and Ollama LLM generation.
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...