What Do Future Engineers Look Like?
Reshaping our organization around agentic software production sent us back to our hiring rubric early, and technical ability lost its standalone score. Here are the six criteria we landed on, and the thinking behind each.
Read this essay →2
3(defn fib-prod-recurse [a b prod]
4 (def product (* a (bigint b)))
5 (if (= product prod)
6 [a b true]
7 (if (> product prod)
8 [a b false]
9 (fib-prod-recurse b (+ a (bigint b)) prod))))
10
11(defn product-fib [prod]
12 (fib-prod-recurse 0 1 prod))