Mateusz Burzyński

@andarist.bsky.social

programmer but also a little bit of code-poet wannabe, maintaining XState, Emotion, Changesets, redux-saga & more, OSS enthusiast

My Replay time-travel-based React+Redux perf reports experiments are coming together! Just nailed sourcemapped component + selector identities, and I've got accurate timing details on dispatches + renders from a Replay DevTools E2E recording! Early perf report example attached.

BildBild
Mark Erikson@acemarke.dev · 6mo ago

A week-ish later - it's working! Rebuilt my React+Redux dispatch+render perf POC on top of Replay's current infra. Currently extracting dispatch+render timings and selector calls . Just raw data atm, but now I can build meaningful visualizations / perf analysis with this! time travel's awesome!

Weird trivia learned while looking through v8's source: function fn(a) { console.log(a) } fn.toString() // 'function fn(a) { console.log(a) }' const bound = fn.bind(null) bound.toString() // 'function () { [native code] }'