Live data from Hacker News

Viewing profile — aavz

aavz

HN member
Joined
Wed, Apr 27, 2016, 5:32 PM UTC
HN karma
16
Public activity
6 items

About aavz

No profile information was provided.

Recent public activity

  1. comment
    Comment #11711289

    Exceptions have the same problem as return codes in that you need to be careful to leave things in a consistent state if a function throws an error. RAII can help to some extent in…

  2. comment
    Comment #11697127

    Copying short non-overlapping chunks of memory is common in a lot of workloads (think manipulation of short strings) and it does happen in tight loops where an overlap check with t…

  3. comment
    Comment #11689198

    I don't really see what your peer did wrong. Sometimes you need to see the actual implementation to understand how different approaches work out. There are definitely plenty of tim…

  4. comment
    Comment #11689177

    On the other hand, if you skip code review for major or complicated changes, you end up with large chunks of code that only one person understands. Sometimes that works out fine, b…

  5. comment
    Comment #11689170

    Assuming that people will make mistakes writing code isn't distrust, it's just common sense. If someone is a good developer, I trust their first cut of code will be well thought ou…

  6. comment
    Comment #11582607

    I'm sorry, but breadth-first-search is a simple and fundamental algorithm and straightforward to write if you understand the concept and have decent coding skills. You're just visi…