Memory Quote by Peter Seibel
““When they realize, “Oh, my program's getting gigantic,” what are they going to do? They're not going to know where to start. That's my first instinct because I'm a caveman. Really that probably doesn't even matter because you'll just throw more memory at it and it'll be fine.””
About This Quote
Source Interview: Programming Podcast, 2005
Developers often panic when code grows huge, but the instinct is to add resources rather than refactor.
In simple terms: Huge code leads to panic and quick fixes.
Add memory, not structure.
Themes
Mood
Type
When to use this quote
- large codebases
- performance tuning
- budget constraints
Key Concepts
Questions to Reflect On
- How can you redesign before scaling?
- What are the long term costs of quick fixes?
Throwing more memory may mask underlying design flaws.