Browsing Tag
rust
115 posts
Rust builder pattern library – what do you think?
Hey everyone☺️ I recently developed a library called typesafe_builder for implementing builder patterns in Rust, and I’d love to…
ForskScope (diff viewer) 0.22 is in AUR
Diff Viewer in the works: a new cross-platform app. available on AUR: yay -S forskscope Also for other…
JSON Prettier – An Offline JSON Formatter Built with Rust and Tauri
Working with APIs often means dealing with compressed or minified JSON. While there are plenty of online formatters…
🧠 Solana’s Ecosystem: Key Players and How Developers Can Leverage Them
If you’ve been in Web3 long enough, you’ve probably heard how fast and cheap Solana is. But beyond…
🧠 From 2,500 to 1,000,000 Particles: Supercharging a Three.js Demo with WebAssembly
When I first explored the classic webgl_points_waves demo in Three.js, I was amazed by the simplicity and elegance…
Rust Error Handling Compared: anyhow vs thiserror vs snafu
Error handling is an indispensable part of Rust development. Rust’s Result provides fundamental support, but the specific implementation…
Taking Payments with AI Agents and Rig using Stripe’s MCP server
Introduction Hello world! In today’s post we’re going to take a look at how you can build AI…
Rust Concurrency: A Beginner’s Exploration
Concurrency and Parallelism Many people cannot distinguish between the concepts of concurrency and parallelism, so before diving into…
Rust Async Programming: Parallelism with join! vs select!
When executing only one Future, you can directly use .await inside an async function async fn or an…
Rust Key Concepts (I): Ownership System
Rust has specific design choices and feature selections that make the language unique. Let’s dive into the key…