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 |




