Live data from Hacker News

Viewing profile — nowne

nowne

HN member
Joined
Fri, May 30, 2014, 8:57 PM UTC
HN karma
11
Public activity
6 items

About nowne

No profile information was provided.

Recent public activity

  1. comment
    Comment #13182849

    This is an amazing tool, I use it almost daily. Whenever I want to test an idea, or see what is going on in the assembly, I go straight to godbolt.

  2. comment
    Comment #11981286

    It will likely link, since both clang and gcc will perform RVO on bar(), so the copy constructor won't be called.

  3. comment
    Comment #8740454

    Linear probing works by initially hashing the value, call it h(x), then if there is a collision, it checks h(x)+1, h(x)+2, ..., h(x) + k, until it finds a open slot. Lookup works i…

  4. comment
    Comment #8738590

    The problem with that method is that it doesn't have data access locality, while linear probing does. Linear probing ends up being more efficient because it is easy on the cache.

  5. comment
    Comment #8574820

    There are countably infinite number of functions. A simple proof is that each function can be represented as a string, and there are countably infinite number of strings for a fini…

  6. comment
    Comment #7861221

    That wouldn't solve much, if anything at all, see Kerckhoffs's Principle[1]. The standard encryption algorithms perform perfectly well to the best of our knowledge, why make your o…