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,
}
struct Skill<'a> {
name: &'a str,
list: Vec<&'a str>,
}
fn main() {
let me = Identity {
name: "Arnaud Gaydamour",
username: "Mageas",
location: "Lyon, France",
};
let my_skills = vec![
Skill {
name: "Languages",
list: vec!["Rust", "Go", "PHP", "JavaScript", "TypeScript", "Python", "SQL", "Shell"],
},
Skill {
name: "Frameworks",
list: vec!["Svelte", "Vue.js", "React"],
},
Skill {
name: "CRM & Automation",
list: vec!["SugarCRM", "Zendesk", "Make", "Monday", "HubSpot", "AWX"],
},
Skill {
name: "DevOps & Tools",
list: vec!["Docker", "Nginx", "Git", "Linux", "Github CI", "Grafana"],
},
Skill {
name: "Editors",
list: vec!["Neovim", "VSCode", "Helix"],
},
];
}