#![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 {}
}
🤭
Focusing
Pinned Loading
-
-
morpheuslord/GPT_Vuln-analyzer
morpheuslord/GPT_Vuln-analyzer PublicUses 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.…
-
batchee
batchee PublicForked from nasa/batchee
NASA Harmony service that groups together files into batches for concatenation
Python
-
LiteJsonDb
LiteJsonDb PublicForked 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
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


