zer0yu - Overview
More about me...
#[derive(Debug)] struct Me { code: &'static str, job: &'static str, best_and_favorite_skill: &'static str, sweet_heart: &'static str, } fn main() { let me = &Me { job: "Researcher in Cybersecurity and AI Agents", sweet_heart: "01", code: "PHP and Go and Python and TypeScript and Rust (Currently vibe coding everything. XD)", best_and_favorite_skill: "Web Hacking :D", }; let _ = me; }