Ask HN: What is your favorite CS paper?
41–50 of 265 posts
Re: Ask HN: What is your favorite CS paper?
#42"The Limits of Correctness" (1985) by Bryan Cantwell Smith: https://www.student.cs.uwaterloo.ca/~cs492/11public_html/p18... I know Thompson's "Reflections on Trust" and Shannon's "Communication" papers are more famous but I believe BCS's "Correctness" paper has more immediate relevance to a wider population of programmers. For example, I don't believe Ethereum's creator, Vitalik Buterin, is familiar with it because i…
I think for many applications there is no binary answer, it's not just a good or bad idea. The question is how good can we get and is it any better than the state of the art? There are theoretical limits, but the interesting part is whether there exists a practical approximation. I don't believe in a fundamental difference between us and computers, i think everything we can reason about should be possible to algorithmically reason about. I think smart-contracts are a fundamental improvement over "non-code as law", i really believe in them. They are reproducible and exact. But it's a shame that solidity is so badly engineered, because they it is really hard to prove anything in it. I think they did the exact opposite of what would be the right language. I understand the reasoning behind "the limits of correctness", but does this means that proving anything is meaningless?
I would expect most contracts to be stupidly simpel, at least to a machine, with simpel properties that need to be proven comparable to testing Haskell with quickcheck. And i believe they are an improvement over "non-code as law", even if not provably correct.
The problem with bugs and smart-contracts is interesting. But implementing smart-contracts does not mean automating the judge.
Re: Ask HN: What is your favorite CS paper?
#43How to share a secret by Adi Shamir. Simple, elegant, short and highly impactful.
Re: Ask HN: What is your favorite CS paper?
#44http://johanneskopf.de/publications/pixelart/paper/pixel.pdf
I think this paper is very cute and also technically interesting.
Re: Ask HN: What is your favorite CS paper?
#45Re: Ask HN: What is your favorite CS paper?
#46"Reflections on Trusting Trust" - Ken Thompson https://www.ece.cmu.edu/~ganger/712.fall02/papers/p761-thomp...
Re: Ask HN: What is your favorite CS paper?
#47Earlier quoted context omitted.
> you will see that the DAO hack and its reversal as inevitable. Honest naïve question. What's the proof?
FWIW I think this is a very fair question. Parent's post veers a bit further toward defeatism than I think Smith's paper advocates for or justifies. In particular, of course the DAO hack wasn't inevitable -- a more careful programmer could've foreseen and prevented that attack and whole other classes of attack.
But, for example, people have also lost money due to bugs in the Solidity compiler: https://np.reddit.com/r/ethtrader/comments/5foa5p/daily_disc... How many "more careful" Ethereum programmers also check the compiler for correctness?
Another paper in this vein is James Fetzer's "Program Verification: The Very Idea". http://lore.ua.ac.be/Teaching/SSPEC2LIC/critique2.pdf
Re: Ask HN: What is your favorite CS paper?
#48Facebook’s Distributed Data Store for the Social Graph https://research.fb.com/publications/tao-facebooks-distribut...
Re: Ask HN: What is your favorite CS paper?
#49Producing Wrong Data without Doing Anything Obviously Wrong. Immediately useful for anyone measuring compiler transformations performance!