Results 310 comments of Fabian

New additions: https://copy.sh/v86/?profile=nopeos https://copy.sh/v86/?profile=soso https://copy.sh/v86/?profile=pcmos https://copy.sh/v86/?profile=jx https://copy.sh/v86/?profile=house https://copy.sh/v86/?profile=bleskos https://copy.sh/v86/?profile=boneos

@edwillard In what sense does this bug prevent you from using Alpine on v86? From what I can tell, it doesn't cause any problems besides a 5 second delay in...

Are you using http://copy.sh? Try https://copy.sh or localhost. Timer resolution is reduced on non-https (see https://developer.mozilla.org/en-US/docs/Web/API/Performance/now#security_requirements)

You can run this code to determine the resolution of performance.now(): `x = new Set(); while(x.size < 5) x.add(performance.now()); Array.from(x).sort((a,b) => a-b).slice(-2).reduce((a,b) => b-a) ` On Firefex (developer edition), I...

It's used roughly three places: - rdtsc returns it directly (multiplied by `TSC_RATE`): https://github.com/copy/v86/blob/21cf9ad/src/rust/cpu/cpu.rs#L3966 - main_loop uses it to yield to the browser (for redrawing and receiving mouse/keyboard/fetch events) every...

@edwillard I don't have a fix for the nmi selftest yet, but I pushed a fix for slow disk IO into the wip branch ([dfacd61](https://github.com/copy/v86/commit/dfacd6109dd915104ad916f87fb2f2d3e6cee623)). Please test and let me...

I pushed a fix for the nmi selftest (especially with `privacy.resistFingerprinting`) to the wip branch. It might also help performance in some other cases where programs sleep waiting for (small)...

I pushed a better fix in https://github.com/copy/v86/commit/e644f89d7a5f818037a49f9597ca5bd2e0d0c369 (in the wip branch)

It's probably https://github.com/copy/v86/issues/845 now.