git config --global user.name "Tyler Staut"
use std::collections::HashMap;
fn main() {
for (key, val) in Bio().iter() {
println!("{} {}", key, val);
}
}
fn Bio() -> HashMap<String, String> {
HashMap::from([
("- โก Quick bio:".to_string(),
"I am currently a cloud security engineer working to become a certified penetration tester".to_string()),
("- ๐ญ Iโm currently working on".to_string(),
"Not taking down production servers ๐
".to_string()),
("- ๐ฑ Iโm currently learning".to_string(),
"How to become a better penetration tester in the cloud".to_string()),
("- ๐ป Iโm looking to collaborate on".to_string(),
"Any fun and interesting project".to_string()),
("- ๐ค Iโm looking for help with".to_string(),
"Anything related to what I am currently learning ".to_string()),
("- ๐ฎ I'm currently playing".to_string(),
"Flight Simulator โ๏ธ".to_string()),
("- ๐๏ธ I'm currently watching".to_string(),
"Too much Formula 1".to_string()),
("- ๐ฌ Ask me about".to_string(),
"Cloud Security | Red Teaming | Competitions".to_string()),
("- ๐ฅ Blog:".to_string(),
"https://blog.tyler-staut.cloud/".to_string()),
])
}