Live data from Hacker News

Viewing profile — ejona86

ejona86

HN member
Joined
Thu, Feb 26, 2015, 8:13 PM UTC
HN karma
23
Public activity
15 items

About ejona86

No profile information was provided.

Recent public activity

  1. comment
    Comment #40247626

    If you're already a password manager user, then it sounds like your gripe is "my password manager doesn't support passkeys." That seems either a short-term issue that would be reso…

  2. comment
    Comment #40247464

    "Resident keys" is the solution, not the issue. With U2F it was hard to track which sites used the key. If I wanted to move to a different physical key, what sites should I update …

  3. comment
    Comment #39979954

    > ... CP/M for the in-development Vector 4. Switching would potentially mean redesigning the next line of machines. The Vector 4 and 4-S did receive MS-DOS 2.0 support at some poin…

  4. comment
    Comment #38846434

    Size-optimized, RAM-only mods. Sounds interesting...

  5. comment
    Comment #30971778

    Not just you. It can give no results and partial results, which is sometimes fixed on a re-query. But it also is just poor for code. I think it wants to find full words, so searchi…

  6. comment
    Comment #18297531

    It is true that gRPC tends to implicitly imply Protocol Buffers. It's the only format that is worked on directly by the gRPC team. However, C#/C++ Bond, C++ FlatBuffers, and Java A…

  7. comment
    Comment #14212207

    The thing that went unnoticed with that issue is that grpc-go didn't have an option to manually increase the window size. Both the Java and C implementations had the option much ea…

  8. comment
    Comment #9125662

    HTTP/2 has the concept of streams. Each stream is independent, but within a stream data and headers are ordered. Each HTTP request would be on a new stream. gRPC maps calls to stre…

  9. comment
    Comment #9119120

    HTTP/2 is quite featureful and provides most of the advanced needs that gRPC has; HTTP/2 is pretty similar to what we would make ourselves if gRPC used TCP directly. Using HTTP/2 t…

  10. comment
    Comment #9119064

    gRPC actually still has to calculate the length of a message before transferring it.

  11. comment
    Comment #9119042

    And using HTTP/2 directly allows using HTTP/2-based load balancers and reverse proxies, which is a huge bonus.

  12. comment
    Comment #9116684

    When people might be comparing it to REST with JSON, it is fast. gRPC can be used with flatbuffers and similar. The experience has been targeting protobufs, but at its core it just…

  13. comment
    Comment #9116408

    Immutability is still there. You get to choose whether you want it or not. For when you actually want a nullable field, I think the idea is that it is easy to have a wrapper messag…

  14. comment
    Comment #9116337

    The Java examples are in the examples folder: https://github.com/grpc/grpc-java/tree/master/examples/src/m... The examples folder references a tutorial at https://github.com/grpc/g…

  15. comment
    Comment #9116305

    It varies based on language: some languages use async callbacks, some use futures/promises, some block and require threads, and some support multiple forms. The intent is that prog…