HN user

ericpts

53 karma
Posts1
Comments10
View on HN

What books did your group find well written? It would be very helpful for outsiders to know what people who know their stuff consider good learning material.

What would be a good reason for distributing students based on luck (which is what I gathered from the article), versus having everyone take a standardized test and then assigning pupils to schools based on their performance in their test?

The test approach seems the fairest to me, as a grade A student should have a higher priority of getting into a top school than a lower grade student.

Contrast this with having a high achieving student not getting into the school of his choice due to sheer bad luck, and I do not see much benefit from the lottery system.

I find that most of the arguments given against C++ (such as memory leaks or dangling pointers) can be avoided by using Modern C++ features, like never allocating memory with new but using std::make_unique or avoiding null pointers with not_null from GSL or std::optional.