Programming Quote by Frederick P. Brooks Jr
““The programmer at wit's end for lack of space can often do best by disentangling himself from his code, rearing back, and contemplating his data. Representation is the essence of programming.””
About This Quote
Source Book: The Mythical Man-Month, Frederick P. Brooks Jr., 1975
When memory limits constrain a programmer, stepping back to abstract and reorganize data yields better solutions than fiddling with code.
In simple terms: Think abstractly when space is tight.
Abstract data before code.
Themes
Mood
Type
When to use this quote
- debugging sessions
- system design
- performance optimization
Key Concepts
Questions to Reflect On
- How can you redesign data structures to reduce memory use?
- When is code refactoring preferable to data abstraction?
Abstraction may not solve algorithmic inefficiencies.