Viewing profile — steerb
steerb
HN member- Joined
- Tue, Mar 27, 2012, 1:04 PM UTC
- HN karma
- 16
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About steerb
No profile information was provided.
Recent public activity
-
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…
-
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…
-
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…
-
comment
Comment #3819369
This sounds somewhat similar to (software) transactional memory.
-
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…
-
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…
-
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 …