Aidan Littman
Technologies
🧠
Machine Learning
⛓️
Blockchain
⚡
Full Stack
🔄
Systems

// Innovation in code
function engineer(problem) {
while(!solved(problem)) {
const approach = innovate();
const result = implement(approach);
if (evaluate(result) > threshold) {
return result;
}
}
}