Explore >> Select a destination


You are here

wizardzines.com
| | blog.m-ou.se
15.2 parsecs away

Travel
| | A few years ago, due to some random chain of events, I ended up implementing a conversion from 128 bit integers to 64 bit floats. This would've turned out to be a complete waste of time, except that my final version is faster than the builtin conversion of every compiler I tested. In this blog post, I'll explain what happened, how floats work, how this conversion works, and how it got a bit out of hand.
| | yal.cc
6.6 parsecs away

Travel
| | This is a kind of a blog post that you probably don't need unless you've already had an encounter with its subject. Continue reading ?
| | www.philipzucker.com
15.8 parsecs away

Travel
| | *up to \epsilon_0
| | surfingcomplexity.blog
363.6 parsecs away

Travel
| In the previous blog post, we saw how a transaction isolation strategy built on multi-version concurrency control (MVCC) does not implement the serializable isolation level. Instead, it implements a weaker isolation level called snapshot isolation. In this post, I'll discuss how that MVCC model can be extended in order to achieve serializability, based on work...