Live data from Hacker News

Viewing profile — sphix

sphix

HN member
Joined
Tue, Jan 03, 2017, 7:31 PM UTC
HN karma
11
Public activity
7 items

About sphix

No profile information was provided.

Recent public activity

  1. comment
    Comment #14822314

    Any reason to suspect it'll affect it more than Uber pool and Lyft line already have?

  2. comment
    Comment #14415774

    Typically you solve that through a rewrite, followed by migration and depreciation. Since the microservice is small, you can ideally accomplish the rewrite in under a week.

  3. comment
    Comment #13755101

    The Google version is supposedly coupled heavily to their infrastructure and therefore would give little benefit to opensource without also open sourcing a large portion of their i…

  4. comment
    Comment #13600817

    Sometimes I wonder if these online tools mine data on text blobs and regex we pass in. I can only imagine how potential IP could be leaked if the data was correlated to a company t…

  5. comment
    Comment #13411630

    The article specifies two independent verifications.

  6. comment
    Comment #13338986

    The problem with IOCP is that it is more memory intensive as all memory for outstanding operations must be pre-allocated. With the readiness model, you can use pools of memory inst…

  7. comment
    Comment #13338944

    kqueue allows for batch updates on fds that are being polled for readiness. In addition, it has less hacky support for non-socket files such as timers, events, signals, and disk IO…