Is it true that names will never hurt you?
No
Without uncertainty, what is Miller's number?
7
What are two groups of six words that should be avoided in naming, three of them specifically because they are redundant?
data, object, type
be, do, perform
What are two groups of six words that should be avoided in naming, three of them specifically because they add noise and do not add value?
be, do, perform
data, object, type
What is the most important naming principle according to Code Craft?
Consistency
What does Code Craft say about splitting the code into files?
It should be split into the maximum number of files that it can
What kind of word should the name of a function be?
A verb
What kind of word should the name of a variable be?
A noun
What was one of the things that made Hungarian notation popular?
Microsoft's Win32 APIs
What might you need to do if you cannot come up with a good name for something in code?
Reconsider the design
What does Code Craft call i18n?
A "sexy little abbreviation" and a way of naming should be avoided
What is a common cause of bad names, as pointed out by Code Craft?
Not understanding what you are naming
When should you name things well in programming?
All the time
Previous card
First card
Random order
Next card