Live data from Hacker News

Viewing profile — sika_grr

sika_grr

HN member
Joined
Tue, Oct 14, 2014, 10:44 AM UTC
HN karma
13
Public activity
17 items

About sika_grr

No profile information was provided.

Recent public activity

  1. comment
    Comment #24977211

    You mention the wiki page is badly written, and I have the same feeling whenever I read about anything mathematics related on it. But... it's written by volunteers, so I'll take wh…

  2. comment
    Comment #23176990

    wow, just wow unsubscriber: a system of telephone bills and their fees which can be charged only to subscribers "every item is charged with the unsubscriber"

  3. comment
    Comment #22308372

    There is a difference between preventing a program crash and handling errors. Please don't use catch-all-exceptions clause for either, especially not in hospital machines. The diff…

  4. comment
    Comment #22307425

    I disagree with both points, in fact with every statement you made. Correctness can be achieved without use of exceptions (whether this is easier or harder to do is up for debate).…

  5. comment
    Comment #15986579

    > Even if reCAPTCHA was perfect, a hacker could manually validate their usernames of interest by trying to sign up, then automate an attack on the sign in page. Why is imperfect re…

  6. comment
    Comment #15583744

    If this is one of his worst, I must read the rest. You are unsatisfied with an essay that is merely of correct reasoning, can you recommend some even better reading material than t…

  7. comment
    Comment #14057723

    Does nobody on Hacker News watch Silicon Valley? Or are references in comments frowned upon?

  8. comment
    Comment #11420595

    I only see an O(n) algorithm there, there is no O(k). Am I missing something?

  9. comment
    Comment #11073019

    http://www.toothycat.net/~hologram/Turing/HowItWorks.html

  10. comment
    Comment #10668511

    Yea, I guess that also explains why gradients don't look that smooth.

  11. comment
    Comment #10663517

    Can anyone explain the gradient merging example? If we sum an image in which luminosity is linearly rising from left to right with the image in which the luminosity is linearly ris…

  12. comment
    Comment #9504427

    Of course you need to log some data in textual format for emergencies, but if you had a tool that indexes events on timestamps, servers, monitorees, severity and event type, while …

  13. comment
    Comment #8680193

    Nevermind, I managed to squint enough to get the letters to combine into a perfect image. It should not be possible to get more than 1 correct 3D image, the period of the backgroun…

  14. comment
    Comment #8680176

    Wait, did it get your name right? It's kinda buggy for me, it draws every letter twice for me (twice in 3D, of course it has to draw it twice in 2D).

  15. comment
    Comment #8668895

    Yea, change a certain .h file and you can go get a cup of coffee while waiting for the build to end. This can't ever happen with Java/C#.

  16. comment
    Comment #8453588

    No. For radix sort this constant factor is quite low, so it outperforms std::sort in most cases. Try sorting a million integers, my results are: std::sort: 60 ms; radix-sort (LSB, …

  17. comment
    Comment #8452768

    Please note that radix sort is easy to implement to work correctly with doubles, Table 1 is misleading.