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>,
preferred_programming_langs: Vec<&'a str>,
hobbies: Vec<&'a str>,
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")]),
preferred_programming_langs: vec!["Rust", "C", "C++", "Python", "Bash"],
hobbies: vec![
"Learning",
"Reading Books",
"Playing Videogames",
"Programming",
"Building Computers",
"Computer Troubleshooting and Maintenance",
],
interests: vec![
"Cybersecurity",
"Networking",
"Linux",
"IT",
"Operative Systems",
"Systems Development",
"Software 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 eighth semester of nine.
Currently, my main interests are cybersecurity, and systems development. I hope to soon become an expert in these fields.
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.

