Skip to content
View Yusufibin's full-sized avatar
🀭
Focusing
🀭
Focusing

Block or report Yusufibin

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
Yusufibin/README.md
Typing SVG
Profile Views Followers

struct FullStackDeveloper {
    name: &'static str,
    role: &'static str,
    location: char,
    years_coding: u8,
    projects_completed: &'static str,
}

impl FullStackDeveloper {
    fn new() -> Self {
        Self {
            name: "Yusuf",
            role: "Full Stack Developer",
            location: '🌍',
            years_coding: 5,
            projects_completed: "50+", 
        }
    }

    fn current_adventures(&self) -> [(&str, &str); 4] {
        [
            ("Current", "Working on **** "),
            ("Learning", "Advanced Reverse Engineering techniques"),
            ("Looking", "To collaborate on innovative projects"),
            ("Ask me", "About Python, ML, and Reverse Engineering"),
        ]
    }

    fn tech_stack(&self) -> ([&str; 4], [&str; 3], [&str; 4]) {
        (
            ["Python ", "Bash ", "Julia ", "R "],
            ["Go ", "C/C++ ⚑", "Rust "],
            ["JavaScript ", "C# ", "Assembly ", "Java β˜•"]
        )
    }

    fn specialities(&self) -> ([&str; 3], [&str; 3], [&str; 4]) {
        (
            ["Web/App Development ", "Reverse Engineering ", "Machine Learning "],
            ["VSCode", "Jupyter", "Android Studio"],
            ["TensorFlow", "PyTorch", "Flask", "Docker"]
        )
    }

    fn get_contact(&self) -> (&str, &str) {
        ("@kazu_rms", "aenir02")
    }
}

fn main() {
    let me = FullStackDeveloper::new();
    
    println!("Hello! I'm {}, a {} {}", me.name, me.role, me.location);
    println!("Contact me: {} | {}", me.get_contact().0, me.get_contact().1);
    
    let adventures = me.current_adventures();
    println!("Currently: {}", adventures[0].1);
}

streak graph

Activity Graph

Pinned Loading

  1. github2pdf github2pdf Public

    Python

  2. morpheuslord/GPT_Vuln-analyzer morpheuslord/GPT_Vuln-analyzer Public

    Uses ChatGPT API, Bard API, and Llama2, Python-Nmap, DNS Recon, PCAP and JWT recon modules and uses the GPT3 model to create vulnerability reports based on Nmap scan data, and DNS scan information.…

    Python 592 67

  3. batchee batchee Public

    Forked from nasa/batchee

    NASA Harmony service that groups together files into batches for concatenation

    Python

  4. LiteJsonDb LiteJsonDb Public

    Forked from codingtuto/LiteJsonDb

    A lightweight JSON-based database system designed for simplicity and ease of use. It allows you to manage your data efficiently without the complexity of traditional databases. Code less, be produc…

    Python