Code Quote by Tim Bray
“All the PHP code I've seen in that experience has been messy, unmaintainable crap. Spaghetti SQL wrapped in spaghetti PHP wrapped in spaghetti HTML, replicated in slightly-varying form in dozens of places.”
About This Quote
Source Talk: Software Development Conference, 2005
The quote criticizes tangled, hard‑to‑maintain code that mixes languages and repeats patterns across many files.
In simple terms: Messy code is hard to fix and evolve.
Refactor for clarity and modularity.
Themes
Mood
Type
When to use this quote
- web app refactoring
- legacy system overhaul
- team code reviews
- continuous integration
Key Concepts
Questions to Reflect On
- How can you enforce clean boundaries in a mixed‑language stack?
- What practices prevent code duplication?
Complex systems may still inherit legacy constraints despite refactoring.