My name is Emanuel Lima and I am a software engineer in love with low level computing and platform engineering. 👨💻
I'm a Brazilian 🇧🇷 currently living in Fortaleza 🌴🏖️
#[derive(Debug)]
struct EmanuelLima {
interests: String,
}
impl EmanuelLima {
fn new() -> Result<EmanuelLima> {
Ok(EmanuelLima {
interests: "Operating Systems, HPC, Compilers, Computer Architecture,\
Confidential Computing, Cryptography, Release Engineering and DevSecOps",
})
}
}





