Live data from Hacker News

Viewing profile — je-so

je-so

HN member
Joined
Fri, Dec 12, 2014, 6:34 AM UTC
HN karma
8
Public activity
4 items

About je-so

No profile information was provided.

Recent public activity

  1. comment
    Comment #10967012

    Personal space is a natural right! Even animals has this right except farm animals.

  2. comment
    Comment #9764570

    If you know that sizeof(float) >= sizeof(int) the memory alignment should be fine. Also in this case * (int* )&a does not access any bytes outside of an defined data object. To pre…

  3. comment
    Comment #9243363

    Another interesting thing to know about pointer and arrays is: #include typedef int a_t[100]; int main(void) { int a[100]; a_t* p = &a; // all printed pointer values are equal prin…

  4. comment
    Comment #8738836

    (See http://pastebin.com/KypbginU ) // corrected overflow hget for (int k2=k,o=0; t[k&(SIZE-1)] && **t[k&(SIZE-1)] != k2 && o // hset now allows overwrite for (int (**a)[2] = hget(…