Skip to content
View PhilipCramer's full-sized avatar

Block or report PhilipCramer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
PhilipCramer/README.md

Compile check?

struct PersonalInfo<'a> {
    name: &'a str,
    description: &'a str,
    mail: &'a str,
    interests: Vec<&'a 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: "[email protected]",
            interests: vec!["Linux", "Programming", "Cyber Security"],
            skillset: PersonalInfo::my_skills()
        }
    } 
    fn my_skills() -> Vec<Skills> {
        vec![
            ("Advanced", vec!["Linux", "Rust"]),
            ("Intermediate", vec!["C", "Bash", "Java", "Kotlin", "Docker", "Git"]),
            ("Beginner", vec!["F#", "Python", "SQL", "Prolog", "OpenTofu"])
        ]
    }
}

Pinned Loading

  1. RustyOthelloAI RustyOthelloAI Public

    AI capable of playing the game Othello implemented in Rust

    Rust

  2. homelab-IaC homelab-IaC Public

    My terraform homelab

    HCL

  3. Tiered-Vector Tiered-Vector Public

    Rust

  4. os-challenge os-challenge Public

    C

  5. Gruppe-10-DTU/TODOAPP Gruppe-10-DTU/TODOAPP Public

    Kotlin

  6. Gruppe-10-DTU/Roborally3 Gruppe-10-DTU/Roborally3 Public

    Roborally game for course Advanced Programming 023424 at DTU

    Java