chore: update /murmurations dc02f14b
Steve Simkins · 2026-05-03 22:55 1 file(s) · +3 −3
src/pages/murmurations.astro +3 −3
4 4
5 5
const meta = {
6 6
	title: "Murmurations",
7 -
	description: "Boids simulation — emergent flocking from local rules",
7 +
  description: "Birds, math, and poetry in motion",
8 8
};
9 9
---
10 10
69 69
		<h2 class="mb-2 text-sm font-semibold">Boids &amp; Starlings</h2>
70 70
		<p class="mb-2">
71 71
			A <em>murmuration</em> is the swirling, shape-shifting flight of thousands of starlings at dusk.
72 -
      No leader directs them; coherence emerges from each bird reacting to its closest neighbors.
72 +
      There is no leader, rather coherence emerges from each bird reacting to its closest neighbors.
73 73
		</p>
74 74
		<p class="mb-2">
75 75
			This simulation uses <a class="underline" href="https://en.wikipedia.org/wiki/Boids" target="_blank" rel="noreferrer">Craig Reynolds&apos; boids algorithm</a>.
81 81
			<li><strong>Cohesion</strong> (steer toward neighbor center)</li>
82 82
		</ol>
83 83
		<p>
84 -
			Real starlings track ~7 nearest neighbors regardless of distance: topological, not metric.
84 +
			Real starlings track ~7 nearest neighbors regardless of distance.
85 85
			That fixed count is why turning waves cross the flock so fast and stay crisp at any density.
86 86
		</p>
87 87
    <br/>