Husband, dad, dabbler in things...
Too many hobbies, building tools in Rust and Python, Bug Bounty, iOS app development, cloud technologies, bootrunning, hobby electronics/robotics, photography...
fn main() {
let me = Person::new("thiezn");
me.whoami();
}
struct Person {
name: &'static str,
}
impl Person {
/// Who am I, what am I doing here?
fn new(name: &'static str) -> Self {
Self { name }
}
/// Maybe the answer is here?
fn whoami(&self) {
println!("Hi, I'm {}!", self.name);
}
}BootRunner
'Running and bodyweight exercises for everyone, anywhere'
Moorspots
'Find your next destination. Detailed info on marinas and anchorages worldwide. With reviews and photos. Sail. Discover. Share.'


