struct Developer {
name: &'static str,
languages: Vec<&'static str>,
currently_learning: &'static str,
fun_fact: &'static str,
}
impl Developer {
fn new() -> Self {
Self {
name: "Esmil",
languages: vec!["C++ (started here)", "Rust (my current obsession)"],
currently_learning: "Full with Rust",
fun_fact: "Started with C++, fell in love with Rust ๐ฆ",
}
}
}- ๐ฆ My languages: Started with C++, now obsessed with Rust
- ๐ฑ Learning: development with Rust
- ๐ง Building: Personal projects in Rust
- ๐ฌ Ask me about: Rust, or why Rust is better than C++ ๐
- โก Fun fact: C++ taught me pointers, Rust taught me safety ๐ฆ
- โ Current status: Debugging with coffee
|
|
// My daily life
loop {
let mut me = Developer::new();
match me.debug_code() {
Ok(_) => println!("It works! ๐"),
Err(e) => {
println!("Error: {:?}", e);
me.drink_coffee();
me.read_docs();
continue; // Try again
}
}
if me.compiler_happy() {
println!("If the compiler is happy, I'm happy ๐ฆ");
}
}- ๐ My debugging: Works best at 3 AM with coffee
- ๐ฆ Rust: Started with C++, never looked back after discovering Rust
- ๐ C++: Taught me about pointers and memory management
- โ Coffee: My best friend during long coding sessions
- ๐ฅ Borrow Checker: Tough love that makes better code
- ๐ Stack Overflow: My second home
- ๐ฎ Breaks: Gaming to clear my mind



