🔭 I'm constantly looking for interesting open-source projects to contribute.
⚡ I'm open to new job opportunities. You could reach me through my email if you're interested.
impl Lancern { pub fn about() -> Self { Self { name: "Sirui Mu", email: "msrlancern@gmail.com", education: Education { bachelor: Degree("Beijing Institute of Technology", "Software Engineering", 2016..=2020), master: Degree("Tsinghua University", "Cybersecurity", 2020..=2023), }, } } } impl Programmer for Lancern { fn topics(&self) -> Vec<&'static str> { vec!["Compilers", "Toolchain", "MLsys", "Storage Systems"] } fn languages(&self) -> Vec<&'static str> { vec!["C/C++", "C#", "CUDA", "Python", "Rust", "TypeScript", "Zig"] } } impl LinuxUser for Lancern { fn distros() -> Vec<&'static str> { vec!["openSUSE", "ArchLinux", "Fedora", "Ubuntu", "Debian"] } } impl FormerACMer for Lancern { } impl FormerCTFer for Lancern { }