Viewing profile — chhamilton
chhamilton
HN member- Joined
- Wed, Nov 18, 2020, 2:42 PM UTC
- HN karma
- 6
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About chhamilton
No profile information was provided.
Recent public activity
-
comment
Comment #30279829
Exactly this. Google sign-on equity is actually front loaded now: 33%, 33%, 22%, 12%. Refresh grants (nominally every year) vest equally at 25% per year. Vests are monthly or quart…
-
comment
Comment #25137456
(Chromium dev here.) We don't throttle workers (that could change, but we don't have firm plans here yet). All things being equal, if you move complex work to workers we're happy b…
-
comment
Comment #25137412
(Chromium dev here.) Doing the work in one giant update is actually better from a power consumption / battery point-of-view, because the CPU cost is fixed but there are fewer wakeu…
-
comment
Comment #25137380
(Chromium dev here.) For the most part, events can't really accumulate, because not running code means no new events are posted. The throttling applies to setTimeout/setInterval, a…
-
comment
Comment #25137329
(Chromium dev here) Yes, lots of sites are written with tight setInterval/setTimeout loops, checking for modifications to the DOM, visibility, doing animations, etc. In most cases …
-
comment
Comment #25137293
(Chromium dev here.) Yes, for now all workers continue to run unthrottled (shared, dedicated and service). They may also be throttled at some point, but we have no firm plans aroun…