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

#![no_std]
#![no_main]

#[repr(C, packed)]
struct FullStackDeveloper {
    name: &'static str,
    role: &'static str,
    location: char,
    years_coding: u8,
    projects_completed: &'static [u8],
}

impl FullStackDeveloper {
    #[inline(always)]
    const fn new() -> Self {
        Self {
            name: "Yusuf",
            role: "Full Stack Developer",
            location: '\u{1F30D}',
            years_coding: 0x05,
            projects_completed: b"50+",
        }
    }

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

    fn tech_stack(&self) -> ([&'static str; 4], [&'static str; 3], [&'static str; 4]) {
        (
            ["Python \u{1F40D}", "Bash \u{1F4BB}", "Julia \u{1F4CA}", "R \u{1F4C8}"],
            ["Go \u{1F504}", "C/C++ \u{26A1}", "Rust \u{1F980}"],
            ["JavaScript \u{1F310}", "C# \u{1F4AB}", "Assembly \u{1F527}", "Java \u{2615}"]
        )
    }

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

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

#[no_mangle]
pub extern "C" fn _start() -> ! {
    let me = FullStackDeveloper::new();
    
    let _status = me.current_adventures();
    let _stack = me.tech_stack();
    let _specs = me.specialities();
    let _comms = me.get_contact();

    loop {
        core::hint::spin_loop();
    }
}

#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
    loop {}
}

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 590 70

  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