/* jminjares4 GitHub Page */
/* Degree enumeration */
#[derive(Debug)]
enum Degree { ASEE, BSEE, MSCPE, MSAI,}
/* Contact data structure */
#[derive(Debug)]
struct Contact {
email: String,
linkedin: String,
github: String,
}
/* Info data structure */
#[derive(Debug)]
struct Info {
name: String,
degree: Degree,
contact: Contact
}
fn main () {
/* Store data */
let jminjares4 = Info {
name: String::from("Jesus Minjares"),
degree: Degree::MSAI,
contact: Contact {
email: String::from("jesusminjaresjr@gmail.com"),
linkedin: String::from("https://www.linkedin.com/in/jesusminjares"),
github: String::from("https://github.com/jminjares4"),
},
};
/* Print data */
println!("Info: {:?}", jminjares4);
}Welcome to my GitHub page. I am an embedded software engineer @ Sandia National Laboratories, using my hardware and software skills to develop embedded systems.
Currently pursuing an M.S. in Artificial Intelligence at UT Austin, working toward the intersection of embedded systems and machine learning.



