beewyka819
beewyka819
This is likely your college network blocking the request. I recently moved onto campus as well and mine also appears to block these requests. You could try seeing if there...
Found a pretty accurate sleep function implementation here: [https://blat-blatnik.github.io/computerBear/making-accurate-sleep-function/](https://blat-blatnik.github.io/computerBear/making-accurate-sleep-function/). Could potentially look into using something similar. I tested this with Kohi's clock implementation, and it seems to work really well.
Update: I emailed the author of the aforementioned blog post after noticing some adjustments that could be made to his accurate sleep function, and he ended up following up by...
The blog mentions how newer versions of Windows 10/11 support timers, which can be preferable as they don't affect global state (changing scheduler period is global state. Setting this below...
Rebased to fix conflicts
Found a solution to this, it is related to the default accuracy of the windows Sleep function. This accuracy is normally tied to the interrupt ticks (64 per second), but...