🔭 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!["Compiler & Toolchain", "MLsys", "Storage System"]
}
fn languages(&self) -> Vec<&'static str> {
vec!["C/C++", "CUDA", "Rust", "Python", "TypeScript", "C#"]
}
fn agents(&self) -> Vec<&'static str> {
vec!["Codex"]
}
}
impl LinuxUser for Lancern {
fn distros() -> Vec<&'static str> {
vec!["Fedora", "Ubuntu", "ArchLinux", "Debian", "openSUSE"]
}
}
impl FormerACMer for Lancern {}
impl FormerCTFer for Lancern {}




