Tyler-Staut / Tyler-Staut

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hello World

git config --global user.name "Tyler Staut"

About Me (Written in Rust ๐Ÿฆ€)

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()),
    ])
}

About