Browsing Tag
rust
143 posts
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…
Tauri (8) – Implementing global shortcut key function
Introduction In modern desktop applications, shortcuts are an essential tool for enhancing user experience and productivity. Many applications…
A Gentle Introduction to WebAssembly in Rust (2025 Edition)
It’s clear WebAssembly is one of the more popular up-and-coming technologies out there. Its promise, a universal executable…