Live data from Hacker News

Viewing profile — Seol

Seol

HN member
Joined
Sun, Nov 06, 2016, 8:55 PM UTC
HN karma
23
Public activity
11 items

About Seol

No profile information was provided.

Recent public activity

  1. comment
    Comment #20439019

    One way to do this is to find a better job. Another way to do it is to put more effort into improving the quality of your current team. In the long run, that's a skill you're gonna…

  2. comment
    Comment #16436125

    I particularly like the "anti-priorities" section. You can't optimise for everything, and it's refreshing to see someone be upfront about the things which they're prepared to let b…

  3. comment
    Comment #15702147

    The interesting thing is that the "obvious correct" behaviour would require the precedence of the + operator to depend on the types of the operands - which is obviously impossible …

  4. comment
    Comment #15702138

    Strong v weak typing isn't an absolute categorisation, it's a spectrum. There aren't many places Java will automatically coerce types, and the ones that do exist are narrow (numeri…

  5. story
  6. comment
    Comment #14177843

    But the problem with Hollywood accounting isn't that distributors are unable to transparently share financial details. It's that they've worked very hard to find ways to obfuscate …

  7. story
  8. comment
    Comment #12889562

    It depends on what you mean by "bad idea". You've got three choices, basically: analyse source, analyse the AST, or analyse bytecode. There are advantages and disadvantages of each…

  9. comment
    Comment #12889509

    The distinction I was trying to make was one between where in the toolchain it lives: error-prone is part of compilation, whereas Findbugs is after-the-fact. Error-prone is a compi…

  10. comment
    Comment #12887428

    Technically, it's not a compiler plugin - it actually replaces javac by extending JavaCompiler, wrapping it and applying additional verifications without altering the output. Effec…

  11. comment
    Comment #12886983

    Also, error-prone works in a fundamentally different way to FindBugs: error-prone is a compiler plugin, whereas Findbugs is an after-the-fact static analyser. This means, for examp…