Back to Meshery

Simplicity vs Easy

.agents/skills/reducing-entropy/references/simplicity-vs-easy.md

1.0.641.5 KB
Original Source

Simplicity vs Easy

The Core Distinction

Simple and easy are not the same thing. We conflate them constantly, and it costs us.

  • Simple: One concept, not intertwined with others. Objective measure.
  • Easy: Near at hand, familiar, relative to our capabilities. Subjective.

Easy changes over time as you learn. Simple is absolute.

Why This Matters

When we reach for the "easy" solution - the familiar pattern, the framework we know, the abstraction we've used before - we often add complexity. The easy path introduces concepts that intertwine with others.

The simple solution might be unfamiliar. It might require thinking. But it doesn't braid together concerns that should be separate.

Complecting

"Complect" means to intertwine or braid together.

Complexity comes from braiding together concepts that should be separate. Every time we couple things, we create complexity. Every coupling is a future debugging session.

Simple means:

  • One role
  • One task
  • One concept

If you can't explain it simply, it's too complex.

The Choice

When designing, ask: "Am I choosing this because it's simple, or because it's familiar?"

Familiar feels productive. Simple is productive - over the lifetime of the code.

Choose simple over easy. Always.

External References