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",
})
}
}