Live data from Hacker News

Viewing profile — ucho

ucho

HN member
Joined
Thu, Mar 29, 2012, 8:11 AM UTC
HN karma
203
Public activity
121 items

About ucho

No profile information was provided.

Recent public activity

  1. comment
    Comment #15117637

    Just to power users? I keep getting suggestions to finish viewing last 1-2 minutes of each episode - the end credits that I previously skipped using big "start next episode" button…

  2. comment
    Comment #15115645

    They are called adrenaline junkies for a reason. That makes me wonder - can we put thrill-seeker in "rehab"? And should we?

  3. comment
    Comment #15098261

    Some monitors just have bad backlight. I had old one where maximizing terminal(which is mostly black) window caused taskbar and window handle also to turn almost black.

  4. comment
    Comment #15097109

    Last time I tried hackerrank i wasn't impressed - the problem specification was lacking, input/output wasn't defined well enough. Quality varied wildly between problems.

  5. comment
    Comment #15047362

    > Imgur had DEFINITELY gotten WAY worse than even a year or so ago There is vicious cycle with all image hosting services and Imgur(and Photobucket) has reached the last step: 1. N…

  6. comment
    Comment #15045199

    It worked out for Facebook and PHP so maybe that is why they want to give it a try.

  7. comment
    Comment #14988027

    > Did you read the github issues? There were hundreds of people against it. Every time github issue goes viral it ends with hundreds of useless comments full of animated gifs. That…

  8. comment
    Comment #14978656

    Storing hashes in source repo would make it very hard to manage and I am not sure if processing raw names into hashes as part of build would be any help against such DMCA request.

  9. comment
    Comment #14955831

    > My job is not to balance an arbitrary math equation that x% of engineers are supposed to be women It really sound like Goodhart's law. It no longer matters that corporations want…

  10. comment
    Comment #14927947

    Makes me wonder when Firefox will be able to resume interrupted file downloads without addons.

  11. comment
    Comment #14900700

    Even more interesting will be the effect on sites that can't get "good" ads due to adult content or sketchy legality like file sharing sites.

  12. comment
    Comment #14839962

    What is GraphQL? GraphQL is all about data communication Somehow it reminds me of good old "The S stands for Simple": http://harmful.cat-v.org/software/xml/soap/simple

  13. comment
    Comment #14786772

    Buying ASICs is high risk and (probably) high reward - in event of crash you are left with worthless machines. GPUs will still have some value, even after all crypto currencies dro…

  14. comment
    Comment #14771021

    Now it is wrapped in "SmartCloud" instead. I am not sure if that is an improvement.

  15. comment
    Comment #14762358

    > perfectly clean sensors I saw thin layer of ice appear on parking sensors after few minutes of driving in snowy conditions, triggering "close object" warnings. And cars get dirty…

  16. comment
    Comment #14551365

    As a counter counter anecdote, scientists where estimating that perfecting automatic text translation will take another 10-15 years... in ~1960. I guess hoping that future technolo…

  17. comment
    Comment #14461445

    Yeas, what about it? Oh right, it might stop working after Firefox 57: https://github.com/piroor/treestyletab/issues/1224 . There are people working on it but that isn't true for m…

  18. comment
    Comment #14273419

    Yeah, worst example ever. They should make it harder to make inner anonymous classes, not easier. When such code is used inside JEE/CDI/Spring Beans it leads to some annoying leaks…

  19. comment
    Comment #14155137

    Lucky for us (in this case) certificate pinning is considered to risky to actually deploy in production, it is to easy to make the page completely unacceptable with single mistake.…

  20. comment
    Comment #13839106

    Maybe it is even worse when it is just few - people won't know that website creator isn't responsible for all of its content. And sometimes is hard to know who is the culprit like …

  21. comment
    Comment #13754062

    > know for sure I am not sure about anything on LI page - it so full of dark patterns that spamming random people with invites is always at most 2 clicks away. It might be similar …

  22. comment
    Comment #13310282

    There is an even better way to test your tests - the mutation testing, for example http://pitest.org/ . It also helps to find dead code, that doesn't have any impact on result any …

  23. comment
    Comment #12835756

    Similar stuff is used for good for ages, for example in Valgrind or in `fakeroot` used to build packages in Debian.

  24. comment
    Comment #12706872

    PHP array is equivalent to LinkedHashMap and yes, it has 40 bytes overhead per entry in Java.

  25. comment
    Comment #12706834

    Java has also alternative approach: final a; if (predicate) { a = 3; } else { a = 5; } `final` makes it possible for variable to be assigned exactly once. Verbose but useful when "…