Skip to content
View KujouYuko's full-sized avatar
🐔
🎤 🕺 🤙 🏀
🐔
🎤 🕺 🤙 🏀

Organizations

@SudaMod @taichi-framework @Project-Kaleidoscope @Project-Mia @ZakoClubROM

Block or report KujouYuko

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
KujouYuko/README.md
use std::collections::HashMap;

fn print_section(title: &str, items: &[&str]) {
    println!("{title}:");
    for item in items {
        println!("- {item}");
    }
}

fn print_contact(title: &str, contact: &HashMap<&str, &str>) {
    println!("{title}:");
    for (key, value) in contact {
        let formatted = value.replace(" at ", "@").replace(" dot ", ".");
        println!("- {key}: {formatted}");
    }
}

fn main() {
    let about = [
        "I'm a master's student of Big Data Technology and Engineering, founder on Zako Club and Mia Institute.",
    ];

    let doing = [
        "Nothing.",
    ];

    let device = [
        "Samsung Galaxy S25",
        "ASUS TUF Gaming A14 (2024)",
    ];

    let contact: HashMap<_, _> = [
        ("Email", "779 at zako dot club"),
        ("X", "https://x.com/KujouYuko"),
        ("Bilibili", "https://space.bilibili.com/19036404"),
    ].into_iter().collect();

    print_section("About", &about);
    print_section("Doing", &doing);
    print_section("Device", &device);
    print_contact("Contact", &contact);
}

Pinned Loading

  1. scripts scripts Public

    Useful tools collection.

    Python 7 1

  2. archlinuxcn/repo archlinuxcn/repo Public

    Arch Linux CN Repository

    Shell 1.8k 378