NCBD

Not Centralized, But Distributed

Why Distributed?

Centralization is a single point of failure. Distribution is resilience woven into structure itself — every node carries the whole, every path leads to continuity.

The Topology

Mesh networks have no hierarchy. Each node connects to its neighbors, forming a web where information flows like water finding its own level.

Consensus Without Center

Agreement emerges from conversation between peers, not dictation from above. Byzantine fault tolerance is democracy at the protocol level.

Organic Resilience

Cut a branch and the tree survives. Sever a node and the network reroutes. Resilience is not strength — it is adaptability encoded in structure.

The Leaf Network

A single leaf distributes water through branching veins with no central pump. Nature solved distribution billions of years before we named the problem.

Join the Mesh

Every participant strengthens the whole. The network is not a service — it is a commons, sustained by those who use it, owned by none.

Gossip Protocol

fn propagate(msg, peers):
  for peer in peers:
    if not peer.has(msg):
      peer.send(msg)
      peer.propagate(msg)

Leaf Venation

“The pattern of veins in a leaf is a map of efficient distribution, refined by 400 million years of evolution.”

Hash Ring

node_id = hash(address)
ring.insert(node_id)
data -> ring.nearest(
  hash(key)
)

“Decentralization is not the absence of order — it is order that emerges from below rather than imposed from above.”

Stomata

Hexagonal pores on every leaf surface. Each one independently regulates gas exchange. A distributed breathing system at microscopic scale.

Merkle Trees

root = hash(
  hash(L1) + hash(L2)
)
verify(leaf, proof, root)

“In nature there are no central servers. The forest is a mesh network of mycorrhizal connections.”

CAP Theorem

Consistency, Availability, Partition tolerance. Choose two. The distributed system’s fundamental constraint — and its creative liberation.

Mycelium

Beneath every forest floor, fungal networks distribute nutrients between trees. The original internet runs on spores, not silicon.

Vector Clocks

clock = {A:0, B:0, C:0}
on_event(node):
  clock[node] += 1
  broadcast(clock)

“The strength of a network is measured not by the power of its nodes, but by the richness of its connections.”

Phyllotaxis

Leaves arrange themselves in golden-ratio spirals to maximize sunlight capture. Distribution optimized by mathematics embedded in DNA.

Contact hello@ncbd.dev
Source github.com/ncbd
License MIT / CC BY 4.0
N NE SE S SW NW