use std::collections::HashMap;
struct Programmer {
name: &'static str,
age: u32,
socials: HashMap<&'static str, &'static str>,
interests: Vec<&'static str>,
languages: Vec<&'static str>,
coffee: bool,
}
fn main() {
let mut socials = HashMap::new();
socials.insert("Discord", "swayamm5342");
socials.insert("Instagram", "swayam5342_");
socials.insert("LinkedIn", "swayam5342");
let swayam = Programmer {
name: "Swayam",
age: 19,
socials,
interests: vec![
"Cybersecurity",
"Backend Development",
"AI",
"Astronomy",
"Books",
"Music",
],
languages: vec![
"Python",
"Go",
"TypeScript",
"Rust",
],
coffee: true,
};
println!("Thanks for visiting!");
}- ๐ Cybersecurity tools & experiments
- ๐ Backend APIs and systems
- ๐ Raspberry Pi projects
- Web Security
- Networking
- Linux
- Reverse Engineering
- CTF Challenges
- OSINT
- Rust
- Backend Development
- AI Engineering
- Offensive Security
- System Design

