Skip to content
View Tyler-Staut's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report Tyler-Staut

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
Tyler-Staut/README.md

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

Pinned

  1. Tylers-Cogs Tylers-Cogs Public

    Tyler's Cogs for Red-DiscordBot

    Python

  2. docker-steamcmd-play docker-steamcmd-play Public

    Forked from InAnimaTe/docker-steamcmd-play

    This Project was Forked From: https://github.com/InAnimaTe/docker-steamcmd-play

    Dockerfile

  3. Hashcat-Docker Hashcat-Docker Public

    Docker Container for Hashcat

    Dockerfile

  4. init init Public

    Custom System Initialization

    Shell