VOZE LAB LIVE · VOL. I · № 01
VOZELAB
where Voze engineers write about what they're building, breaking, and learning.
Vol. I 1 essay published
Established Dec 2023 · DRAPER UT
FEATURED culture 2 min read 12 may 2026

Welcome to the Lab

The AI engineering discourse is split between hype and dismissal. We're building with LLMs in production at an early-stage company — this is where we write honestly about what we find.

Read this essay →
product-of-fib.clj clojure
1(ns product-of-fib.core)
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))
Thinking through your fingers — a recursive Fibonacci product in Clojure.

recent essays

filter ↓ all view all essays →
▸ FOLLOW THE LAB

stay in the loop.

Subscribe via RSS, Atom, or JSON Feed — or see all options.