I am currently living in Lyon, France and I am studying again. I am self-taught and I am learning programming through small personal projects in my free time.
struct Identity<'a> {
name: &'a str,
username: &'a str,
location: &'a str,
web: &'a str,
}
struct Skill<'a> {
name: &'a str,
list: Vec<&'a str>,
}
fn main() {
let me = Identity {
name: "Arnaud Gaydamour",
username: "Mageas",
location: "Lyon, France",
web: "https://gitea.heartnerds.org/Mageas",
};
let my_skills = vec![
Skill {
name: "Languages",
list: vec!["Rust", "Shell", "Python", "Javascript", "PHP", "HTML", "CSS"],
},
Skill {
name: "Frameworks",
list: vec!["React", "SugarCRM", "NestJS", "Laravel"],
},
Skill {
name: "Operating system",
list: vec!["Linux", "Windows"],
},
Skill {
name: "Devops",
list: vec!["Docker", "Nginx"],
},
Skill {
name: "Tools",
list: vec!["Git", "Vim", "VSCode", "Emacs"],
},
];
}