VOZE LAB LIVE · VOL. I · № 004
VOZELAB
where Voze engineers write about what they're building, breaking, and learning.
Vol. I 4 essays published
Established Dec 2023 · DRAPER UT
FEATURED culture 6 min read 10 aug 2026

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 →
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 →
003 PROCESS · 6 min

I’m a designer and today I shipped code to prod

I shipped code to production as a designer. Some unexpected things happened when I coded with Claude and I learned why scope creep is so prevalent. In the end it made me think about new design process ideas I want to try implementing.

Bethany Larsen May 26
002 INFRASTRUCTURE · 9 min

How we built an internal sandbox to safely host non-engineers' AI projects in a day

AI has enabled all parts of our company to build and deploy code, which is amazing. Keeping those projects from exposing company and customer data in that new world is complicated, so we built a secure-by-default sandbox for them.

Daniel Sellers May 13
001 CULTURE · 2 min

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.

Daniel Sellers May 12
▸ FOLLOW THE LAB

stay in the loop.

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