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 is supported. This note will only be visible to 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: "s224319@dtu.dk",
            interests: vec!["Linux", "Programming", "Cyber Security"],
            skillset: PersonalInfo::my_skills()
        }
    } 
    fn my_skills() -> Vec<Skills> {
        vec![
            ("Advanced", vec!["Linux", "Rust", "Python"]),
            ("Intermediate", vec!["Go", "Bash", "Kotlin", "Terraform", "Docker", "Kubernetes"]),
            ("Beginner", vec!["C#", "Prolog", "Nix"])
        ]
    }
}

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. aptly-dev/aptly aptly-dev/aptly Public

    aptly - Debian repository management tool

    Go 2.8k 414

  6. k8sstormcenter/bob k8sstormcenter/bob Public

    Software Bill of Behaviour: A vendor-supplied profile of runtime behaviors for software, designed to be distributed directly within OCI artifacts.

    Shell 53 8