Live data from Hacker News

Viewing profile — soberhoff

soberhoff

HN member
Joined
Sun, Jul 24, 2016, 12:17 PM UTC
HN karma
89
Public activity
68 items

About soberhoff

No profile information was provided.

Recent public activity

  1. comment
    Comment #22552939

    How is it a "bright side" that when something bad happens people try to avoid it happening again in the future? That's just circular.

  2. comment
    Comment #21995950

    Let me quote Torkel Franzen in this issue: > True in the Standard Model > The idea is sometimes expressed that instead of speaking of arithmetical statements as true or false, we s…

  3. comment
    Comment #21988969

    This is hairsplitting. It's okay to say that there are true yet unprovable sentences without always carrying "true under the standard interpretation" around. It's understood from c…

  4. comment
    Comment #20552991

    Regarding the first point, Caplan personally estimates that about 80% of education is signalling and that 30% is the lowest figure one can plausibly maintain. As for the second poi…

  5. comment
    Comment #20548186

    What are we even arguing over? Is it just over the exact percentage of signaling in education's payoff?

  6. comment
    Comment #20547002

    In brief: there are strong reasons to believe that much of higher education and even large parts of school serve not to teach but to test students. An English major doesn't lead to…

  7. comment
    Comment #20546828

    As somebody who spent many years in education (as a student and about 1 year as a teacher) I find Caplan's case deeply convincing. Caplan actually goes through reams of evidence. A…

  8. comment
    Comment #20546777

    This is addressed in the summary. No, these essential skills are given a pass.

  9. comment
    Comment #20544030

    Are you familiar with Caplan's Case against Education? Here's a good review (and some critique): https://www.scottaaronson.com/blog/?p=3678 Caplan makes a very compelling case that…

  10. comment
    Comment #19928287

    Is that a definition?

  11. comment
    Comment #19928244

    Step 1: Define "Free Will".

  12. comment
    Comment #19477040

    You're saying you should get diagnosed as a form of legal protection in case you accidentally have a weird interaction with the other sex?

  13. comment
    Comment #19293974

    I don't agree with that definition of "effectively axiomatized". Granted, that's what Wikipedia says here: https://en.wikipedia.org/wiki/G%C3%B6del%27s_incompleteness_... But the r…

  14. comment
    Comment #19291554

    I don't see why there's a theorem required here. Let our formal system be effectively axiomatized. Then by definition its axioms are a recursive set. So I can just check a proof by…

  15. comment
    Comment #19279649

    Sorry, I was out of town for a while. I'm only assuming that checking whether "does s prove S?" is a recursive property. That's not the same as demanding "is S provable?" to be rec…

  16. comment
    Comment #19181391

    I feel like I didn't argue this as clearly as I could have. Let me make one more addition. Throughout the discussion I'm making the tacit assumption that there is one standard view…

  17. comment
    Comment #19181274

    You can call it "similar but weirdly different" in the same sense that the people who are subject to propaganda live in similar but weirdly different realities. What is true depend…

  18. comment
    Comment #19180167

    I agree in the cases where I argue "suppose, then..." But there are instances where I argue "either this is the case, or this is not the case." Unless there are multiple laws of th…

  19. comment
    Comment #19179240

    Every time I said "either/or" I was making use of the law of the excluded middle. But I didn't add a detailed disclaimer explicitly highlighting this fact either. Should I have? I …

  20. comment
    Comment #19178251

    Perhaps Gödel had a vague notion of what he was up to. Nonetheless, the whole concept of universal computation was still half a decade away and higher level languages several decad…

  21. comment
    Comment #19178195

    Author here. I'd like to mention that this article is currently slated for publication in the Bulletin of the European Association for Theoretical Computer Science. A revised draft…

  22. comment
    Comment #17608627

    If the database was encrypted, you would need a different encrypted database for every user - again impractical.

  23. comment
    Comment #17595784

    How does this affect internet searches?

  24. comment
  25. comment
    Comment #17522642

    Are you familiar with Java? If you use just `"foo"`, then the string will be interned and reused. If you use `new String("foo")`, each call creates a new copy on the heap. This cal…