Live data from Hacker News

Viewing profile — pgrad3

pgrad3

HN member
Joined
Sat, Jun 10, 2017, 9:59 AM UTC
HN karma
12
Public activity
3 items

About pgrad3

No profile information was provided.

Recent public activity

  1. comment
    Comment #17688287

    The article describing blind people getting vision again: https://www.google.com/amp/s/www.newyorker.com/tech/elements...

  2. comment
    Comment #14526847

    Correction: rsp and rbp are 64-bit registers storing 64-bit stack memory addresses, while popcount eax, edi is taking the 32-bit parameter as input and returning the 32-bit return …

  3. comment
    Comment #14526821

    It's a function invocation following x86 C calling convention in assembly. push ebp pushes the base stack pointer of the caller of count() onto the stack, and mov ebp, esp sets the…