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);
}
π€
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.



