My name is Emanuel Lima and I am a software engineer in love with low level and cloud computing. π¨βπ»
I'm a Brazilian π§π· currently living in Fortaleza π΄ποΈ
#[derive(Debug)]
struct EmanuelLima {
twitter: String,
working_on: String,
interests: String,
}
impl EmanuelLima {
fn new() -> Result<EmanuelLima> {
Ok(EmanuelLima {
twitter: "e_manuel1",
working_on: "cadCAD and Kata Containers",
interests: "Operating Systems, HPC, Compilers, Computer Architecture,\
Confidential Computing, Cryptography, Release Engineering and DevSecOps",
})
}
}