Asks Quote by Tim Berners-Lee
“The nice thing about programming at the RDF level is that you can just say, I'll ask for all the books. You can ask for all the shelves. You can ask for a given shelf whether a book was on it. And you're not worrying so much about the underlying syntax.”
About This Quote
Source Speech: Talk on Data Integration, 2005
Programming at a high abstraction layer lets you request data without worrying about low‑level syntax, simplifying development.
In simple terms: High‑level code abstracts away details, making data queries easier.
Use abstraction to focus on logic, not syntax.
Themes
Mood
Type
When to use this quote
- API design
- database queries
- software architecture
Key Concepts
Questions to Reflect On
- When should you drop to lower‑level code?
- How does abstraction affect debugging?
Over‑abstraction can hide performance issues; need to understand underlying mechanisms.