Live data from Hacker News

Viewing profile — someguy1234

someguy1234

HN member
Joined
Wed, Sep 30, 2015, 5:07 AM UTC
HN karma
10
Public activity
5 items

About someguy1234

No profile information was provided.

Recent public activity

  1. comment
    Comment #12395161

    Yeah, they have to because of how they work. As much as possible they do via SAML, and for that no plaintext is needed. But a lot of their customers want to log in to sites that do…

  2. comment
  3. comment
    Comment #11444354

    It's the same. TextSecure called it "Axolotl", but the "Signal protocol" appears to just be a branding change.

  4. comment
    Comment #11397013

    Sometimes you do it because the compiler insists a case (that really can never happen) needs to be handled. It happens a lot to me in Rust and Go.

  5. comment
    Comment #11371586

    ThreadPool would lock the GIL, wouldn't it? I think multiprocessing.Pool uses processes and that's where you can avoid the GIL (each process gets its own) at the cost of making dat…