Skip to content

Instantly share code, notes, and snippets.

@aucker
Last active April 16, 2022 14:48
Show Gist options
  • Save aucker/52b971cf45bca6172329c153e3513813 to your computer and use it in GitHub Desktop.
Save aucker/52b971cf45bca6172329c153e3513813 to your computer and use it in GitHub Desktop.

Hi there ๐Ÿ‘‹

๐Ÿš€

struct Portfolio;

impl Portfolio {
    const NAME: &'static str = "aucker";
    const LOCATION: &'static str = "Harbin, China";
    const PROFILE: &'static str = "MSc.";
    const EXPERIENCE: &'static str = "5+ years";
}

struct Skills;

impl Skills {
    const LANGUAGES: [&'static str; 5] = ["Rust", "C/C++", "JavaScript", "Golang", "Python", "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] = ["Actix-Web", "Rocket"];
    const DEVOPS: [&'static str; 3] = ["Docker", "Kubernetes"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment