interface Developer {
name: string;
title: string;
location: string;
available_for: string[];
current_bugs: number;
}
const aditya: Developer = {
name: "Aditya Trivedi",
title: "Compiler Developer @ LFortran",
location: "IIT Jodhpur (where dreams meet deadlines)",
available_for: [
"Turning coffee into code",
"Making GPUs cry, Use MPI and OpenMp to enter Parallel Multiverse",
"Breaking production... I mean, testing",
"Explaining why my code works on my machine"
],
current_bugs: Number.POSITIVE_INFINITY
};
$ ps aux | grep "current_mood"
๐ฎ Wrestling with OpenMP, MPI and making GPUs do my bidding
๐ช Turning the LFortran LLVM Compiler into my personal playground
๐ช๏ธ Tornado-chasing through Parallel Computing, Blockchain, GPU Programming, Big Graphs Data Analytics, and Android realms
๐ฏ Seeking partners-in-crime for open-source mischief
๐ Want to join the chaos? โ b22cs055@iitj.ac.in
SELECT * FROM skills WHERE coffee_required = true;
Category | Technologies |
---|---|
๐ป Core Powers | C++ (because life needs more pointers) Python (snake charmer) JavaScript (making browsers cry) |
๐ Parallel Universe | OpenMP (race condition generator) CUDA (GPU whisperer) MPI (message passing insanity) |
๐ฑ Mobile Mayhem | Kotlin (Java, but cooler) JetPack Compose (UI magic) |
๐ Web Wizardry | React (DOM manipulator) Express (server speedrunner) Node (async await paradise) |
๐ Also Fluent In | Debugging production at 3 AM Reading legacy code Writing "self-documentary" code |
while not success:
try:
code()
success = True
except Life as e:
coffee.drink()
continue