๐
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"];
}