Parkinson's Law

파킨슨의 법칙

Work expands to fill the time allotted for its completion — a longer deadline just produces a longer task.

Also known as: Work expands to fill time available
···
html
<div class="stage">
  <div class="pane"><div class="tag">A · 1 week</div>
    <div class="bar"><div class="fill" id="fa"></div></div>
  </div>
  <div class="pane"><div class="tag">B · 2 days</div>
    <div class="bar"><div class="fill" id="fb"></div></div>
  </div>
</div>
css
.stage{width:90%;height:70%;display:flex;flex-direction:column;justify-content:center;gap:20%}
.pane{position:relative}
.tag{font:700 11px/1 monospace;color:var(--muted);margin-bottom:8px;display:block}
.bar{height:10px;border-radius:5px;background:var(--line);overflow:hidden}
.fill{height:100%;background:var(--accent);width:0}
#fa{animation:crawlA 4s cubic-bezier(.7,0,.9,1) infinite}
#fb{animation:crawlB 4s cubic-bezier(.7,0,.9,1) infinite}
@keyframes crawlA{0%{width:0}75%{width:6%}92%{width:60%}100%{width:100%}}
@keyframes crawlB{0%{width:0}75%{width:6%}92%{width:60%}100%{width:100%}}

From a satirical 1955 essay by British historian C. Northcote Parkinson in The Economist. Observing bureaucracies, he noted that staff headcount grows regardless of actual workload — the same logic applies to how individuals manage time.

In UI, progress and deadline indicators exploit this. Hide the remaining time on a file upload and it feels like it's taking forever; give a submission too generous a deadline and everyone crams right before it anyway.

Below, A and B represent the same amount of real work, but with a long deadline progress barely moves until the very end, while the short deadline (B) still finishes exactly at its own cutoff.

When to use

Use this when setting a deadline or timebox — a generous window often buys procrastination, not quality.