Can a Data Race Happen on a Single-Core Machine? 1. The Question I woke up wondering: Can a data race happen on a single-core machine?. A data race occurs when a program contains two conflicting accesses (write/write or read/write) that are not ordered by a happens-before relationship. This is the definition from Java Language Specification. My first instinct was to ask Claude. The answer I received confidently showed a counter++ example and called it a “data race.”| Ao Li
Chrome Returns 206 when the Server Returns 403 Postmortem It is a feature not a bug! I got detailed explanation from chrome developers which is very helpful. You may find the complete response in the bug ticket. Also this blog post draws a lot of attention after I post it on Hackers News. You may find comments here. Updates: I did know the people who replied my issue are not the developers as pointed out by a HN comment.| Ao Li