0
votes
What Language Feature Can You Just Not Live Without?
Closures.
(First-class functions in general, but those are implied.)
…
2
votes
When should I optimize?
Short answer: when it's too slow.
The real answer: when it's too slow for your users. That means you have someone using the feature and it's not fast enough for them. The first par …
9
votes
What is the best way to tell an excellent programmer in a job interview?
This answer is a little outside the box, but I think it's a valuable point.
The very best programmers rarely interview. They don't have to. If your company is particularly world-ch …
1
vote
Functional programming: immutability etc.
"Immutable" means exactly that: it doesn't change.
The way functional programs do updates is by passing around new things. An existing value never changes: you just build a new value and pa …
