use std::collections::HashMap;
#[allow(dead_code)]
#[derive(Debug)]
struct ComputerEngineer<'a> {
name: &'a str,
age: u8,
occupation: &'a str,
languages: HashMap<&'a str, &'a str>,
favorite_programming_langs: Vec<&'a str>,
hobbies: Vec<&'a str>,
main_interests: Vec<&'a str>,
}
fn main() {
let mr_donkey_08 = ComputerEngineer {
name: "Alan Yahir Juárez Rubio",
age: 23,
occupation: "Student",
languages: HashMap::from([("Spanish", "Native"), ("English", "B1")]),
favorite_programming_langs: vec!["Rust", "C", "C++", "Bash", "Python", "Nasm"],
hobbies: vec![
"Learning",
"Reading Books",
"Playing Videogames",
"Programming",
"Building Computers",
"Computer Troubleshooting and Maintenance",
],
main_interests: vec![
"Cybersecurity",
"Linux",
"Networking",
"Systems Administration",
"DevOps",
"Operating Systems",
"Systems Development",
"Backend Development",
],
};
println!("{:#?}", mr_donkey_08);
}Hi, I'm Alan, a Computer Engineering student at the Centro Universitario de Ciencias Exactas e Ingenierías (CUCEI, UDG), currently in my last semester.
Currently, my main interests are Cybersecurity, Systems Administration, DevOps, Systems Developmen and Backend Development. I hope to become an expert in these fields soon.
I have high proficiency in fields such as Cybersecurity, Networking, Linux, IT, and Software Development.
In the future, I plan to share my knowledge, not only through my blog, but also through other media. I would like to become a teacher, create courses, make YouTube videos, and more.

