Privacy
May 9, 2026
Six things we will never collect, and why.
Our data manifest in plain English. Six things every other tool in our category collects, and the exact internal arguments that ended each one.
LH
Layla Hassan
engineering · 14 min
fn aggregate(events: &[Event]) -> Metric {
let mut score = 0.0;
for e in events.iter() {
score += e.weight * decay(e.age);
}
score / events.len() as f32
}
// ~3× faster than the v1 pipeline
// off-main-thread, with backpressure
Engineering
May 2, 2026
How we made sparklines 3× faster (and why it mattered).
Drawing 200 sparklines at 60fps on a 4-year-old laptop sounds easy. Turns out the bottleneck wasn't the render — it was the data transform. A teardown.
JL
Jonas Lindqvist
research · 9 min
M T W T F
FLEET ACTIVITY · ANONYMISED · N=412
Research
Apr 25, 2026
What 412 fleets told us about the 11am peak.
Anonymised aggregate data from 412 customer fleets reveals a remarkably consistent shape to the workday. Plus three patterns that genuinely surprised us.
AB
Aisha Bello
field · 7 min
"how's the team this week?"
"open Overview"
"…ah. ok. on it."
Field notes
Apr 18, 2026
Replacing the Monday standup at Aperture Bio.
How one 410-person bio-tech replaced their weekly all-hands status meeting with a 2-minute scan of Overview — and reclaimed 23 person-hours every Monday.
MA
Marcus Adeyemi · guest
essay · 10 min
healthy
overworked
Essays
Apr 11, 2026
Overwork is a measurable failure of management.
The single most common pattern across our customer base is also the most fixable. A short essay on why "they worked late again" should always be a manager problem first.
PR
Priya Raman
engineering · 18 min
agent
api
aggregator
timescale
webhook
Engineering
Apr 4, 2026
The architecture of a privacy-first analytics agent.
How we built an agent that runs at <2% CPU, has a ~28MB footprint, and only writes data the person being measured can also see. Diagrams included.
AO
Amelia Okafor