struct PersonalInfo<'dynamic> {
name: &'static str,
description: &'dynamic str,
mail: &'static str,
interests: Vec<&'dynamic str>,
skillset: Vec<Skills>
}
type Skills = (&'static str, Vec<&'static str>);
impl PersonalInfo<'_> {
pub fn new() -> Self {
PersonalInfo {
name: "Philip Cramer",
description: "I am a software engineering student at DTU",
mail: "",
interests: vec!["Linux", "Programming", "Cyber Security", "System Engineering"],
skillset: PersonalInfo::my_skills()
}
}
fn my_skills() -> Vec<Skills> {
vec![
("Advanced", vec!["Linux", "Rust"]),
("Intermediate", vec!["C", "Java", "Kotlin", "Docker", "Git"]),
("Beginner", vec!["F#", "Python", "Bash", "SQL", "Prolog"])
]
}
}
Pinned Loading
-
RustyOthelloAI
RustyOthelloAI PublicAI capable of playing the game Othello implemented in Rust
Rust
-
-
-
Gruppe-10-DTU/Roborally3
Gruppe-10-DTU/Roborally3 PublicRoborally game for course Advanced Programming 023424 at DTU
Java
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.