INNOVATIONMonths to result

Good Taste Engineering Principle

Good taste in engineering means seeing the simple elegant solution that others miss beneath complexity

Problem it solves

Building effective systems that produce reliable outcomes with minimal ongoing effort

Best for

Engineers, designers, and anyone who builds systems and wants to develop the ability to recognize and create elegant solutions rather than merely functional ones.

Not ideal for

People working on quick prototypes where elegance is secondary to speed of delivery.

Overview

Why this framework exists

Linus Torvalds, creator of Linux and Git, reveals that the difference between good engineers and great engineers is taste—the ability to see the simple, elegant solution hidden beneath the complex one. Using a code example, Torvalds shows two implementations of a linked list removal: one with special cases and conditional logic, and one that eliminates the special cases entirely through a more fundamental understanding of the data structure. The second approach is not just shorter but fundamentally better because it removes unnecessary complexity at the conceptual level. Torvalds argues that this taste—the ability to recognize and create simplicity—is what separates transformative engineering from competent engineering, and it applies equally to operating system kernels and to any system design challenge.

Core principles

5 total
  1. Good taste means eliminating special cases through deeper understanding of the problem
  2. The elegant solution is always simpler, not more clever
  3. Complexity is a cost that compounds at the system level
  4. Vision is the ability to see where you want to end up and work backward from there
  5. The best engineers do not add features—they remove unnecessary complexity

Steps

3 steps
  1. Recognize Unnecessary Complexity as a Design Smell
    When your solution requires special cases, conditional branches, and workarounds, treat these as signals that you have not yet found the right abstraction. The presence of special cases usually means you are working at the wrong level of abstraction. Step back and look for a more fundamental approach that makes the special cases disappear entirely rather than handling them individually.
    Pro tipWhen you find yourself writing an if-else chain, ask: is there a way to restructure this so the conditional is unnecessary? The answer is often yes.
    WarningNot all complexity is unnecessary. Some problems are genuinely complex. The skill is distinguishing essential complexity from accidental complexity.
  2. Develop Taste Through Exposure to Elegant Solutions
    Good taste in engineering, like taste in any craft, develops through exposure to both excellent and poor examples. Study well-designed systems and understand why they feel right. Study poorly designed systems and identify what makes them feel wrong. Over time, you develop an intuition for elegance that guides your own design decisions. Torvalds developed his taste through decades of reading and evaluating code, not through following rules.
    Pro tipWhen you encounter a solution that feels surprisingly simple for a complex problem, study it carefully. Understand why it works and what insight made the simplicity possible.
  3. Optimize for the System, Not the Component
    Good taste requires thinking at the system level, not just the component level. A solution that is locally optimal for one component can introduce complexity that makes the overall system worse. Torvalds evaluates code contributions not just on whether they work but on how they affect the overall kernel. The discipline of thinking at the system level while working at the component level is what produces truly elegant engineering.
    Pro tipBefore finalizing any solution, ask: how does this affect everything else it connects to? The best solutions reduce complexity not just locally but systemically.
    WarningSystem-level thinking can cause analysis paralysis. Set a time limit for design exploration, then commit and iterate.

Checklist

Saved in your browser

Examples

1 cases
The Linked List Removal Example

Torvalds shows two ways to remove an item from a linked list. The typical approach uses a special case for the head of the list and a different case for middle items, requiring conditional logic. The elegant approach uses an indirect pointer that makes both cases identical, eliminating the conditional entirely. The second approach is not just shorter—it reveals a deeper understanding of the data structure that makes the special case conceptually unnecessary. This is what Torvalds means by good taste: the ability to see the solution that makes complexity disappear.

OutcomeThe example became one of the most widely referenced demonstrations of engineering elegance, showing concretely what good taste looks like in practice and why it matters for system quality.

Common mistakes

2 traps
Solving complexity with more complexity
When faced with a complex problem, the instinct is to build a complex solution. But the best solutions simplify the problem rather than managing its complexity. Adding layers of abstraction, configuration, and special cases is usually a sign that the underlying approach needs to be rethought from a more fundamental level.
Optimizing individual components without considering system-level effects
A clever solution in one component can create dependencies, edge cases, and maintenance burden that makes the overall system harder to work with. Good taste means evaluating solutions by their total system cost, not just their local effectiveness.

Origin story

How this framework came to be

Torvalds developed this perspective through decades of maintaining Linux, where he reviews thousands of code contributions and must constantly choose between approaches that work and approaches that are right. His famous exacting standards for code quality come not from pedantry but from the practical understanding that in a system with millions of lines of code, complexity in individual components multiplies into unmanageable chaos at the system level. Good taste at the micro level is a survival requirement at the macro level.

Source

Traced to primary
Source · VIDEO
The Mind Behind Linux
Linus Torvalds · 2016
Open source →

Related frameworks

Browse all Innovation →