The two pillars of rust are
speed
safety
Rust built in safety features
Borrow checker
Type system
Pattern matching
Borrow checker
The borrow checker is an useful feature of the Rust language. It help...
When I first explored the classic webgl_points_waves demo in Three.js, I was amazed by the simplicity and elegance of the animation — around 2,500 particles oscillating in a wave pattern. But natura...
Rust groups errors into two major categories:
recoverable errors
unrecoverable error
Recoverable ErrorsWhen it is recoverable error then problem will report to the user and and retry the operation. Th...
Preface
anyhow is a popular crate in Rust for error handling. It provides a simple and flexible way to manage errors, making it especially suitable for rapid development and prototyping. anyh...
Leapcell: The Best of Serverless Web Hosting
Optimizing Python Computational Performance with Rust
Introduction
Python, as a widely used programming language, plays a crucial role in ...
I have been following Rust for very long time, I tried to learn Rust at least 3 times in the past 5 years. Last time I started learning rust, v1.36 was just released. I always started to learn from th...
Welcome 👋!
If you've ever built a frontend app in Rust, you've probably realized one thing real quick: making a responsive, polished, and customizable navbar is surprisingly annoying. Between layo...
As a best-selling author, I invite you to explore my books on Amazon. Don't forget to follow me on Medium and show your support. Thank you! Your support means the world!
Rust's zero-copy parsing rep...
Hi developers, as I introduced Rocal - Full-Stack WASM framework in my previous article, today I'm really pleased to show you guys "Rocal UI - A simple template engine with Rust".Although this templat...
Tauri lets us build cross-platform desktop apps using web stack.
Compared to Electron, Tauri apps often have smaller bundle sizes and use less memory at runtime.
That's why I usually pick Tauri for my...