Live data from Hacker News

Viewing profile — denormalfloat

denormalfloat

HN member
Joined
Fri, Aug 24, 2018, 2:39 AM UTC
HN karma
377
Public activity
86 items

About denormalfloat

I write Go by night and Java by day. I like both and neither of them.

Recent public activity

  1. comment
    Comment #22885308

    With the number of people who go through Google's interview process, this might actually change the industry to think more carefully about the interview process. If Google isn't ma…

  2. comment
    Comment #22863698

    >I'd love to hear what OP suggests to replace the coding tests with. Making it easier to fire mishires would probably cover it.

  3. story
  4. comment
    Comment #21861444

    But that's also why BPF doesn't seem to have a place in this world. Anything surfaced by a BPF program should probably be surfaced by a proper kernel module or syscall. As far as I…

  5. comment
    Comment #21861192

    That's not how HTTP works. HTTP is a transfer protocol, and is not so opinionated on the semantic meaning of the Data it moves. HTTP, HTTP/2, and HTTP/3 were designed to be backwar…

  6. comment
    Comment #21861179

    I want to like BPF, but so few of my problems are in the kernel. Performance problems are usually at the application layer, either in my code or my dependencies. Even in the rare c…

  7. comment
    Comment #21779596

    This would not work, too many websites (perhaps wrongly) depend on this string.

  8. comment
    Comment #21779587

    There are wrong reasons to sniff the UA string, and less wrong reasons. If a Browser has a bug that gets fixed in later versions, sites have to sniff the UA string to do the right …

  9. comment
    Comment #21749697

    Java does something similar, decaying its HashMap into a binary tree after enough collisions.

  10. comment
    Comment #21749681

    That's not what big O notation is about. It represents the growth rate. In a the case of a hash table, the size of the thing you are hashing is not affected by the number of items …

  11. comment
    Comment #21571391

    Yes, they still need unlimited kernel threads (for liveness reasons). When I asked a few years back about this, go-nuts@ suggested implemented my own rate limiting in application s…

  12. comment
    Comment #21522011

    Disney is in a tough spot since they also pay dividends. Companies typically don't ever reduce their dividends, which leaves Disney unable to spend that cash on their growth.

  13. comment
    Comment #21300795

    It's poignant to watch Go slowly realize the why other languages have more powerful, more useful error types. The `error` interface is anemic to the point of uselessness. Making it…

  14. comment
    Comment #21219410

    I didn't come to appreciate the power of USB-C until I started using it with my laptop. It is a single cable that connects to my monitor, powers the laptop, provides USB access to …

  15. comment
    Comment #21167132

    That is a lot of moving parts for a toaster. It seems like even a few crumbs falling into the wrong spot would jam the falling/raising mechanism.

  16. comment
    Comment #21036164

    There are more than 100k TVCs at Google. I don't think you can speak generally about them, because there is high diversity in their job roles.

  17. comment
    Comment #20990326

    They were previously allowed by the IP RFCs, but limitted by the kernel. They are in the 0/8 block.

  18. comment
    Comment #20850617

    It may not be the first but it is a reason to upgrade from HTTP/1.1. PING frames have other uses too, like being able to estimate connection latency in an application, rather than …

  19. comment
    Comment #20850579

    A cool thing HTTP/2 provides is PING frames, which allow clients and servers to check if connections are still alive. In case your application can't turn on TCP keep-alives, you ca…

  20. comment
    Comment #20591044

    It's needlessly complex because it doesn't solve any problems I have or any I have heard of. A simpler auction would still work pretty well, and be more easily understood by partic…

  21. comment
    Comment #20590947

    That's not right, you (we) get accurately priced securities. We also get tighter bid-ask spreads.

  22. comment
    Comment #20590931

    Without having read the regulation, why don't institutional investor just make a private market place where they can trade for sub-penny values?

  23. comment
    Comment #20590924

    This seems needlessly complex. Aside from being an interesting thought experiment, what is the practicality of this style auction?

  24. comment
    Comment #20590907

    Exchange traded funds depend on special traders who buy the underlying stocks (like AMZN and MSFT), and sell them in exchange for the ETFs (like SPY and VOO). If the individual sto…

  25. comment
    Comment #20562851

    I found it surprising that atomic operations in Java are converted in to locking when compiling for some versions of android. The guarantees of Java (before 9) on ordering are slig…