struct Developer {
name: &'static str,
role: Vec<&'static str>,
languages: Vec<&'static str>,
interests: Vec<&'static str>,
os: Vec<&'static str>,
currently: &'static str,
fun_fact: &'static str,
}
impl Developer {
fn me() -> Self {
Developer {
name: "JU-NINE NGU CHO",
role: vec![
"Software Engineer",
"Systems Developer & Linux Admin",
"Cybersecurity Enthusiast",
"Cloud & Infrastructure Engineer",
],
languages: vec!["Rust 🦀", "Python 🐍", "Bash 📜", "HTML/CSS 🌐"],
interests: vec![
"System Development",
"Cybersecurity",
"Cloud Computing",
"Open Source",
],
os: vec!["Linux (Ubuntu) 🐧", "Windows 🪟", "macOS 🍎"],
currently: "Building FerrisKey — an auth server in Rust 🔐",
fun_fact: "I play video games & read sci-fi between builds 📚🎮",
}
}
}
| 🔑 Project | 📖 Description | 🛠️ Tech |
|---|---|---|
| FerrisKey | A powerful authentication & authorization server built in Rust | Rust PostgreSQL Docker |
| Async-Chat | Real-time asynchronous chat application | Rust Async WebSockets |
| System Health | System monitoring and health check tool | Rust Linux Bash |
| AI Engineering Hub | AI engineering resources and experiments | Python AI/ML APIs |