I'm a software engineer focusing on application development, especially with C++, Java, C# and Kotlin.
- ๐ My ongoing project is the compiler for Cero, a new general-purpose systems programming language.
- ๐ Currently learning various things related to compiler implementation.
- ๐ต๏ธ Passionate about programming language design.
- ๐ Interested in all things performance-critical, graphics, audio, physics, networking and operating systems.
โฆ๏ธ Working at AnyDesk, primarily on the Android app, but also other platforms.- ๐น Fun fact: A unique way to leak memory in C++ involves making a std::any that refers to itself:
#include <any>
int main() {
std::any a;
std::any& inner = a.emplace<std::any>();
a.swap(inner);
}