Live data from Hacker News

Viewing profile — steerb

steerb

HN member
Joined
Tue, Mar 27, 2012, 1:04 PM UTC
HN karma
16
Public activity
7 items

About steerb

No profile information was provided.

Recent public activity

  1. comment
    Comment #4562621

    Thanks for the clarification. This sounds valid. In my last question I was just wondering how or when you (or others) tend to improve their coding style. For me its mostly when rea…

  2. comment
    Comment #4562571

    This does really sound unusual. For me, the ratio of reading to writing is about 4:1. Are you sure you are not writing too much new code, because you didn't invest the time to prop…

  3. comment
    Comment #4311587

    Using the heap layout, you can sometimes even eliminate branch misspredictions and subsequent (expensive) pipeline flushes. The basic idea is to allow your compiler to use predicat…

  4. comment
    Comment #3819369

    This sounds somewhat similar to (software) transactional memory.

  5. comment
    Comment #3817320

    I tend to agree. Let's assume a sufficiently smart compiler can parallelize 90% of our hot code. Now considering Amdahl's Law, we cannot achieve a speedup greater than 10 and are t…

  6. comment
    Comment #3813644

    I guess that the kernel cannot know that the application (in your case scp) will not try to touch the data ever again. The current default behavior, which you call crazy, does howe…

  7. comment
    Comment #3761258

    Is this a way of saying one should always live on the edge of incompetence? Edit: I ask this, because I have difficulties applying your ideas on fields where I don't have any good …