Source: https://github.com/skvggor/waka-readme
pie
"TypeScript" : 80.4
"Other" : 11.1
"Python" : 3.5
"Bash" : 1.2
"GraphQL" : 1.2
#[derive(Debug)]
struct Skills {
front_end: Vec<&'static str>,
back_end: Vec<&'static str>,
others: Vec<&'static str>,
}
fn main() {
let skills = Skills {
front_end: vec![
"React",
"Vue",
"MUI",
"Tailwind CSS",
"SCSS",
"Stylus",
"HTML",
],
back_end: vec![
"Node.js",
"Python",
"Rust",
"Clojure",
"Apache Kafka",
"GraphQL",
],
others: vec!["JavaScript", "TypeScript", "Java", "PHP"],
};
let experience_summary = "
I am a senior full-stack developer with about 14 years of experience in large-scale projects
across advertising, marketing, telecommunications, and engineering sectors.
I have led technical teams, built applications using modern front-end frameworks like React and Vue,
and developed microservices in Go, Python, C#, and Node.js. My recent work focuses on improving
developer experience through automation and quality practices, leveraging my skills in both
front-end and back-end technologies.
";
println!("Front-end Skills: {:?}", skills.front_end);
println!("Back-end Skills: {:?}", skills.back_end);
println!("Other Skills: {:?}", skills.others);
println!("Experience Summary: {}", experience_summary);
}