Hi there 👋

🚀 Help me to become a full-time open-source developer by sponsoring me on GitHub

struct Portfolio;

impl Portfolio {
    const NAME: &'static str = "messense";
    const LOCATION: &'static str = "Shanghai, China";
    const PROFILE: &'static str = "Python backend engineer";
    const EXPERIENCE: &'static str = "5+ years";
}

struct Skills;

impl Skills {
    const LANGUAGES: [&'static str; 5] = ["Python", "Rust", "JavaScript", "C/C++", "Kotlin/Java"];
    const OPERATION_SYSTEMS: [&'static str; 3] = ["macOS", "Linux", "Windows"];
    const STORAGES: [&'static str; 5] = ["PostgreSQL", "Elasticsearch", "MongoDB", "Redis", "MySQL"];
    const MESSAGE_QUEUES: [&'static str; 3] = ["Kafka", "RocketMQ", "RabbitMQ"];
    const WEB_FRAMEWORKS: [&'static str; 4] = ["Flask", "Django", "Actix-Web", "Rocket"];
    const DEVOPS: [&'static str; 3] = ["Docker", "SaltStack", "Kubernetes"];
}