Viewing profile — denormalfloat
denormalfloat
HN member- Joined
- Fri, Aug 24, 2018, 2:39 AM UTC
- HN karma
- 377
- Public activity
- 86 items
- HN profile
- View on Hacker News ↗
About denormalfloat
Recent public activity
-
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…
-
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.
- story
-
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…
-
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…
-
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…
-
comment
Comment #21779596
This would not work, too many websites (perhaps wrongly) depend on this string.
-
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 …
-
comment
Comment #21749697
Java does something similar, decaying its HashMap into a binary tree after enough collisions.
-
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 …
-
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…
-
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.
-
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…
-
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 …
-
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.
-
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.
-
comment
Comment #20990326
They were previously allowed by the IP RFCs, but limitted by the kernel. They are in the 0/8 block.
-
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 …
-
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…
-
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…
-
comment
Comment #20590947
That's not right, you (we) get accurately priced securities. We also get tighter bid-ask spreads.
-
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?
-
comment
Comment #20590924
This seems needlessly complex. Aside from being an interesting thought experiment, what is the practicality of this style auction?
-
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…
-
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…