█████╗ ██╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗
██╔══██╗██║ ██║ ██║██╔══██╗████╗ ██║██╔═══██╗
███████║██║ ██║ ██║███████║██╔██╗ ██║██║ ██║
██╔══██║██║ ██║ ██║██╔══██║██║╚██╗██║██║ ██║
██║ ██║███████╗███████╗██║██║ ██║██║ ╚████║╚██████╔╝
╚═╝ ╚═╝╚══════╝╚══════╝╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
struct Developer {
name: &'static str,
location: &'static str,
role: &'static str,
company: &'static str,
os: &'static str,
passion: Vec<&'static str>,
}
impl Developer {
fn new() -> Self {
Developer {
name: "Alliano",
location: "Indonesia 🇮🇩",
role: "Senior Software Engineer",
os: "Linux 🐧",
passion: vec![
"Clean Architecture",
"High Performance Systems",
"Open Source",
"Backend Engineering",
],
}
}
}
fn main() {
let me = Developer::new();
println!("Hello, World! I'm {}", me.name);
}drwxr-xr-x planout.ai/ # 🤖 AI-powered planning application
drwxr-xr-x kolosal-api/ # ⚡ High-performance REST API with Rust + Axum
drwxr-xr-x open-source/ # 🌍 Contributing back to the community
drwxr-xr-x system-design/ # 📐 Learning distributed systemswhile alive; do
eat()
sleep()
code() # ← this is the important one
done⚡ "First, solve the problem. Then, write the code."