I'm a software artist straight out of the Netherlands.
I have a genuine curiosity for the world of tech, which has led me to become a jack of all trades in various domains: Hardware, Software, API, Artificial Intelligence, Security, Gadgets, and a bit of tweaking.
But forget about labels; the best way to really get to know me is by reaching out and getting in touch.
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 {
"Painting is silent poetry, and poetry is painting that speaks.".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 β
βββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββ
`);