Bastian Gruber

Software Engineer & Author

Currently working at Mozilla. Author of "Rust Web Development" and passionate about creating robust, efficient software solutions that makes a difference.

I share insights on systems programming, web development, and the art of writing maintainable code that scales.

1 use axum::{response::Json, routing::get, Router};
2
3 async fn hello() -> Json<&'static str> {
4     Json("Building with Rust!")
5 }
6
7 // "Building with Rust!" 🦀

Recent Posts

Thoughts on Rust, web development, and software engineering

View All Posts →

Contents