Skip to content
View da0p's full-sized avatar
  • Milan, Italy
  • 07:25 (UTC +02:00)

Block or report da0p

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
da0p/README.md

Hello 👋, I am Phuong Dao

Linkedin: phuongdao GitHub da0p GitHub views counter

  • An Embedded Software Engineer ✨

About me

struct SoftwareEngineer {
    expertises: Vec<String>,
    hobbies: Vec<String>,
    technologies: Vec<String>,
    sports: Vec<String>,
}

fn main() {
    let expertises = vec!["Embedded", "IoT", "Programming"]
        .iter()
        .map(|&expertise| expertise.into())
        .collect();

    let hobbies = vec![
        "Programming",
        "Building stuffs",
        "Breaking stuffs",
        "Fixing stuffs",
    ]
    .iter()
    .map(|&hobby| hobby.into())
    .collect();

    let technologies = vec!["C++", "Rust", "Python"]
        .iter()
        .map(|&tech| tech.into())
        .collect();

    let sports = vec!["football", "boxing", "running"]
        .iter()
        .map(|&sport| sport.into())
        .collect();

    let me = SoftwareEngineer {
        expertises,
        hobbies,
        technologies,
        sports,
    };
}

Technologies used

My Github stats

SPhuong's github status Top Langs

Pinned Loading

  1. 23_tree 23_tree Public

    23-tree implementation in C

    C

  2. daily-cpp daily-cpp Public

    Exploring modern cpp features

    C++

  3. oh-weather oh-weather Public

    C

  4. AoC_2023 AoC_2023 Public

    Rust

  5. DataStructure_and_AlgorithmInRust DataStructure_and_AlgorithmInRust Public

    Practicing solving data structure and algorithms in Rust

    Rust

  6. dns_resolver dns_resolver Public

    A basic dns resolver client

    Rust