Tech should be fun, and Iโm here to prove it.
Iโm Gino, a hands-on tech enthusiast from the Netherlands with a background that spans support, development, hardware tinkering, and AI exploration. I thrive on solving real-world problems, learning new tools, and making technology more approachable and human-centered.
Whether Iโm at a support desk or deep in a side project, I bring energy, empathy, and curiosity to the table. I care deeply about accessibility, inclusive design, and helping people get the most out of their tech.
Titles are cool, but connection is better, so feel free to reach out.
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!("Hi, i go by the name {}.", self.name)
}
fn quote(&self) -> String {
"There's an app for that.".to_owned()
}
}
fn main() {
let devmesis = Me::new("Devmesis", &[
"Creative", "Fullstack", "Hardware", "Software", "Artificial Intelligence",
"Security", "Gadgets", "a bit of tweaking",
]);
println!("{}", devmesis.introduction());
println!("{:?}", devmesis.skills);
println!("{}", devmesis.qoute());
}
> fetch
console.log(`
โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ OS โ MacOS โ
โ Host โ MacBook โ
โ Terminal โ Ghostty โ
โ Shell โ Zsh โ
โ IDE โ Zed โ
โ Theme โ Dracula Pro โ
โ Font โ Berkeley Mono โ
โโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
`);