Revanth Pothukuchi

MIT '25, CS

Member of Technical Staff at Nexus. Previously, an algorithmic quantitative intern at Citi, technical co-founder of a startup, and security researcher at MIT CSAIL.

redis-cli

redisPING

PONG

redis

Redis Server

A partial implementation of an asynchronous, multi-threaded, and multiplexed Redis server.

explore
main.envy
123456789101112
fn fibonacci(n: Int) -> Int {
  if n <= 1 {
    return n
  }

  let a = fibonacci(n - 1)
  let b = fibonacci(n - 2)
  return a + b
}

let result = fibonacci(10)
print(result)
output

Envious

An AOT compiler for a custom language with a LLVM backend and Hindley-Milner type inference.

explore