mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-29 07:44:06 -06:00
13 lines
689 B
Markdown
13 lines
689 B
Markdown
---
|
|
title: Conway's Law
|
|
tags:
|
|
- software-arch
|
|
date: 2024-03-01
|
|
---
|
|

|
|
|
|
Conway's Law is essentially the observation that the **architectures of software systems look remarkably similar to the organization of the development team** that built it. It was originally described to me by saying that if a single team writes a compiler, it will be a one-pass compiler, but if the team is divided into two, then it will be a two-pass compiler. Although we usually discuss it with respect to software, the observation applies broadly to systems in general.
|
|
|
|
# Reference
|
|
|
|
* https://martinfowler.com/bliki/ConwaysLaw.html |