Tech should slap, not stress. Iโm here to prove it.
Iโm Gino, part code, part chaos, always vibing. Building, breaking, fixing, and looping my playlist in the background. I like my servers fast, my tech human, and my work a little bit chaotic.
AI? Love it. Hardware? Iโll tinker. Coffee? Always. Gatekeeping? Nah, not here.
Titles are cool, but connecting is cooler. Got a tech story or a question? Letโs talk.
struct Me {
name: String,
username: String,
skills: Vec<String>,
}
impl Me {
fn new(name: &str, username: &str, skills: &[&str]) -> Me {
Me {
name: name.to_owned(),
username: username.to_owned(),
skills: skills.iter().map(|&skill| skill.to_owned()).collect(),
}
}
fn introduction(&self) -> String {
format!("Hey, i go by the name {}.", self.name)
}
fn bio(&self) -> String {
"๐ ๐ช๐-๐๐๐๐๐
๐๐ ๐๐ ๐๐ ๐๐๐๐๐๐
๐๐๐๐๐ ๐ ๐ฌ๐๐๐๐๐๐๐๐๐ ๐ฑ ๐ซ๐๐๐๐๐๐๐๐ ๐ ๐บ๐๐๐๐๐๐ ๐๐๐๐".to_owned()
}
}
fn main() {
let devmesis = Me::new("Devmesis", "Engineer", &[
"Creative", "Fullstack", "Hardware", "Software", "AI",
"Security", "Servers", "Racks",
]);
println!("{}", devmesis.introduction());
println!("{:?}", devmesis.skills);
println!("{}", devmesis.bio());
}
> fetch
console.log(`
โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ OS โ MacOS โ
โ Host โ MacBook โ
โ Terminal โ Ghostty โ
โ Shell โ Zsh โ
โ IDE โ Zed โ
โ Theme โ Dracula Pro โ
โ Font โ Berkeley Mono โ
โโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
`);