I found two interesting ideas in CACM, Vol.55, No.9. 1. DieHard Many C++ program's crash bugs are caused by small out of bound access. So, if a memory allocator gives a slightly large memory chunk, also randomize the heap allocation. Then many bugs become non-deterministic, Heisenberg bug. This is a nightmare for developers who should fix this kind of bugs. Because, it is hard to catch the bug. However, for some users, this might be better. If one just restarts the program, the crash may be gone if they are lucky. You can find this idea entitled DieHard from Microsoft research. Although, I don't think randomly hiding bugs are analogy of Seat belts or Airbags. I found this idea interesting, but I prefer deterministic bugs as a developer. Also I prefer to fix the bugs rather than hiding them. http://queue.acm.org/detail.cfm?id=2333133 2. CriptDB I heard some methods that you can search encrypted data without decrypt it or search a compressed data without decompre
Mathematics, programming, and a little bit of my life.