Skip to content

Commit 2020b82

Browse files
vanceingallsclaude
andauthored
feat(studio): family lettering, tints, and the rack as a signal path (#3187)
* fix(studio): close the typecheck and fallow gaps wa-18b-reschedule opened useAutomationLanes.ts's write() assumed gesture-scoped coalescing and a preview-only commit that useDomEditAttributeCommits.ts never grew — backported that option support from its own later commit so the two sides of the API agree. The paste path and its tests were missing the box selection's v0/v1 bounds a sibling commit added to AutomationSelection. The FX panel's carve controls still edited the six mechanism numbers (maxCutDb, bands, intelligibilityBias) after carveProfile() collapsed authoring to one Strength knob, so those fields no longer existed on HfCarveSettings; UI now edits strength, and analyseCarveBands is called with carveProfile(strength). Also closes fallow's complexity, dead-code and duplication findings on this PR's diff: extracted automationLaneDragMath.ts (pure group/point-move math) and useAutomationRangeDrag.ts (the marquee-select gesture) out of useAutomationLaneGestures.ts, pulled a couple of render-loop ternaries and a resolver into named functions, dropped an export nothing outside its file used, and shared a step-simplifier between audioCarve's two envelope builders. The edge-stretch vs. box-select priority test in TimelineAutomationLane.test was still pinning the pre-box-select rule (edge wins over a point sitting on it) that a sibling commit deliberately reversed — a point inside the box is now selected content, so grabbing it drags the group instead. Updated the test to the shipped rule instead of the old one. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(core): cap the via conic's weight so an edge-clamped via point can't NaN A via point pulled out past the segment (viaX: 5, viaY: -3) clamps to (0.999, 0.001) — exactly on the steady region's edge, where edge - viaX is 0. viaConic divided by that zero to get an infinite weight, and shapeVia turned Infinity into NaN a few steps later (Infinity - Infinity in the quadratic coefficient). NaN reaching setValueCurveAtTime silences the automated parameter for the rest of the render. Capped the weight at 1e6 instead of leaving it unbounded — past that point the arc already reads as touching the via point, so nothing visible is lost. Also hardened shapeVia's existing denominator guard (`<= 0`) to `!(> 0)`, since NaN fails the original comparison and fell through it. Review by Miga (PR #3208). * fix(studio-server): fingerprint the proactive waveform cache key too The route already keys the waveform cache on the asset's size and mtime as well as its path, so a rebuilt-in-place file gets fresh peaks instead of stale ones. generateWaveformCache — the proactive path that runs on upload — still called buildWaveformCacheKey with the path alone, so it wrote to a different key than the route reads from (making the pre-generated cache never found) and kept the exact collision bug this fingerprint exists to fix on its own path. Review by Miga (PR #3211). * style(docs): run oxfmt on the /hyperframes-audio skill docs Table column widths had drifted out of alignment with oxfmt's own rules, failing format:check and blocking the Preflight gate every downstream branch inherits. Whitespace only, no content change. * fix(core): stop \b from missing underscore-separated names, guard clipsOverlap's negative duration \b treats `_` as a word character, so \bbed\b never matched bed_01, music_bed_loop, or theme_song, and \bvo\b/\bvox\b/\btts\b had the same gap — an underscore-separated bed classified as "unknown" and could end up offered as its own carve source. Replaced the short hints with a boundary that actually excludes letters and digits on both sides. clipsOverlap computed end = start + duration without guarding sign, so a negative duration put end before start — an interval that does not describe anything, and one specific case showed it silently dropping a real overlap (a shorter, earlier broken end rejected a clip that genuinely contained the point). Duration clamps to zero instead: a clip cannot un-play time, and a zero-length clip at its start is the sane reading of "duration nobody wrote down as positive." Review by Miga (PR #3212). * fix(studio): widen PropertyPanel's resetModules render timeout again The 20s margin (already once widened for the same reason) is timing out in CI's full-monorepo Test run — the resetModules()+fresh-import render this test needs is uncached and competes with every other package's test suite for the same worker pool, and the same test passes in well under 2s standalone. Went to 45s rather than re-tuning to whatever number happens to clear the current CI load, since that number moves every time CI gains a package. * fix(studio): stop the single-candidate auto-apply carve firing twice Two auto-apply effects both fire when sourceOptions.length === 1: the multi-candidate effect only guards length === 0, so a single candidate passes it too, and the single-candidate effect passes its own guard right after — both compute the same sources list and both call setCarve, so the common case (one narrator, one bed) triggered two decodes, two FFT runs, and two concurrent attribute writes for one decision. The multi-candidate effect now defers to its sibling for exactly one candidate, which already has its own detailed handling for that case. Review by Miga (PR #3213). * feat(core): carve against every voice over a bed, always (#3212) * feat(core): carve against every voice over a bed, always dynamically A bed usually runs under a whole sequence — a narrator, an interview answer, a second presenter — and carving against one of them left the others fighting it. `source` becomes `sources`, and `mixCarveSources` sums every voice onto the BED's clock before anything is measured. That is what keeps one analysis sufficient: the chain is fixed, so there is no per-voice filter to switch between, and bands drawn from all the speech there is with envelopes that rise wherever any of it happens answer the actual question — where and when is speech masking this bed. Summed rather than averaged: two people talking at once mask more than either alone. Audio before the bed starts is dropped rather than folded in at zero, since it plays over nothing and shifting it would put a cut where there is no voice. `dynamic` is gone. A fixed depth thins the bed through every pause, and once both have been heard there is no reason to want it, so every carve follows the speech. Two helpers the panel and the headless script now share instead of each carrying a copy — two definitions of "what does this name suggest" drift, and then the two disagree about which track is the voice: - `classifyAudioName` reads a track's kind from its id and filename together. `unknown` is deliberately common: treating an unrecognised name as "not a voice" would hide the one track somebody needs to pick. - `clipsOverlap` keeps out a voice that never plays while the bed does. An unwritten duration counts as unbounded, not zero — refusing a clip whose length the composition leaves to the media would drop the commonest case there is. Files written before this still load: a single `source` reads as a one-voice list, a stored `dynamic` is ignored, and an absent attribute means the defaults whole. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(core): stop \b from missing underscore-separated names, guard clipsOverlap's negative duration \b treats `_` as a word character, so \bbed\b never matched bed_01, music_bed_loop, or theme_song, and \bvo\b/\bvox\b/\btts\b had the same gap — an underscore-separated bed classified as "unknown" and could end up offered as its own carve source. Replaced the short hints with a boundary that actually excludes letters and digits on both sides. clipsOverlap computed end = start + duration without guarding sign, so a negative duration put end before start — an interval that does not describe anything, and one specific case showed it silently dropping a real overlap (a shorter, earlier broken end rejected a clip that genuinely contained the point). Duration clamps to zero instead: a clip cannot un-play time, and a zero-length clip at its start is the sane reading of "duration nobody wrote down as positive." Review by Miga (PR #3212). --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(studio): port the carve UI off the removed source/dynamic fields #3212 (accidentally squash-merged into this branch instead of main) changed HfCarveSettings from a single `source` + `dynamic` toggle to a `sources` list with dynamic mode removed outright — the multi-voice UI consumer that goes with that shape lands in the very next PR, so this branch was left with a type that no longer matched its own code. Minimal port, not the multi-voice redesign that PR does properly: the "Listen to" picker and analyse() treat sources[0] as the one voice this UI still understands, and every dynamic-mode branch (the automated envelope lanes, the toggle, the checkbox) is gone along with the field — a carve is now always the static value the analysis computes, matching what the type change made permanent. Test suite trimmed the same way: the automation-lane and toggle tests covered behavior that no longer exists. --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 96fd4d0 commit 2020b82

6 files changed

Lines changed: 269 additions & 8 deletions

File tree

packages/studio/src/components/editor/propertyPanelFxCarveModule.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
import { DEFAULT_CARVE, type HfCarveSettings } from "@hyperframes/core/audio-carve";
1818
import { fxAutomationTarget } from "@hyperframes/core/audio-automation";
1919
import { FxParamRow } from "./propertyPanelFxControls.js";
20+
import { FX_FAMILY_TYPE, fxFamilyTint } from "./propertyPanelFxFamily.js";
2021
// Shared with the timeline's lane labels: a band is named by its frequency in
2122
// both places, and two formatters would drift.
2223
import { formatHz } from "../../player/components/automationLaneData";
@@ -201,16 +202,21 @@ export function FxCarveModule({
201202
: "pick a voice";
202203
return (
203204
<div
204-
className={`hf-fx-node hf-fx-carve-module hf-fx-carve rounded-[4px] border border-panel-border-input${
205+
className={`hf-fx-node hf-fx-carve-module hf-fx-carve rounded-[4px] border border-l-2 border-panel-border-input${
205206
on ? "" : " opacity-50"
206207
}`}
207208
data-fx-node="carve"
209+
data-fx-family="smart"
210+
// Smart, like the Tone EQ and the leveller: it measures the audio and
211+
// writes its own settings, and what it shows is a readout of what it
212+
// decided rather than controls the author set.
213+
style={{ borderLeftColor: fxFamilyTint({ type: "carve", fromCarve: true }) }}
208214
data-carve-enabled={on ? "" : undefined}
209215
>
210216
<div className="hf-fx-node-head flex min-h-7 items-center gap-1 px-1.5">
211217
<button
212218
type="button"
213-
className="hf-fx-node-name min-w-0 flex-1 truncate text-left text-[11px] font-semibold text-panel-text-1 hover:text-panel-text-0"
219+
className={`hf-fx-node-name min-w-0 flex-1 truncate text-left text-[11px] text-panel-text-1 hover:text-panel-text-0 ${FX_FAMILY_TYPE.smart}`}
214220
aria-expanded={open}
215221
onClick={onToggleOpen}
216222
>

packages/studio/src/components/editor/propertyPanelFxEqModule.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
HF_AUDIO_EQ_RANGE_DB,
1414
type HfAudioEqBand,
1515
} from "@hyperframes/core/audio-fx-eq";
16+
import { FX_FAMILY_TYPE, fxFamilyTint } from "./propertyPanelFxFamily.js";
1617

1718
export interface FxEqModuleProps {
1819
eqId: string;
@@ -137,13 +138,17 @@ export function FxEqModule({
137138

138139
return (
139140
<div
140-
className="hf-fx-node hf-fx-eq-module rounded-[4px] border border-panel-border-input"
141+
className="hf-fx-node hf-fx-eq-module rounded-[4px] border border-l-2 border-panel-border-input"
141142
data-fx-node="eq"
143+
data-fx-family="smart"
144+
// Smart, with the carve and the leveller: three bands the author sets by
145+
// ear on a control surface, not three filters they configured.
146+
style={{ borderLeftColor: fxFamilyTint({ type: "eq", fromEq: "eq" }) }}
142147
>
143148
<div className="hf-fx-node-head flex items-center gap-1.5 px-1.5 py-1">
144149
<button
145150
type="button"
146-
className="hf-fx-node-name flex-1 text-left text-[11px] text-panel-text-0"
151+
className={`hf-fx-node-name flex-1 text-left text-[11px] text-panel-text-0 ${FX_FAMILY_TYPE.smart}`}
147152
aria-expanded={open}
148153
onClick={onToggleOpen}
149154
>
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/**
2+
* Telling module families apart before the word registers.
3+
*
4+
* A rack of eight modules is eight lines of text, and reading it top to bottom
5+
* means reading eight names. Lettering each family differently means an author
6+
* knows what KIND of module they are looking at with the label out of focus —
7+
* the shape of the line carries it, and the word only confirms.
8+
*
9+
* Two faces of type, as budgeted in `plans/audio-fx-ux/README.md`: the sans
10+
* carries four families apart by weight, case and tracking, and the serif is
11+
* spent on the single family that behaves differently from all of them.
12+
* Non-linear is the only generative one — it invents signal rather than
13+
* measuring or shaping what is there — so it should not look like the others.
14+
*
15+
* Alongside it, a tint step per module WITHIN its family, derived from position
16+
* in the registry rather than assigned by hand: two filters read as two
17+
* different modules without reading as two different families, and adding an
18+
* effect upstream never re-colours its siblings.
19+
*/
20+
21+
import { HF_AUDIO_FX, type HfAudioFxNode } from "@hyperframes/core/audio-fx";
22+
23+
export type FxFamily = "filter" | "dynamics" | "nonlinear" | "time" | "smart";
24+
25+
/**
26+
* How each family letters.
27+
*
28+
* `smart` is not a registry group. It is the measuring modules — the carve, the
29+
* Tone EQ, the leveller — which analyse the audio and write their own settings.
30+
* Monospace because that is what a readout looks like, and what they show IS a
31+
* readout: numbers something else decided.
32+
*/
33+
export const FX_FAMILY_TYPE: Record<FxFamily, string> = {
34+
filter: "font-light uppercase tracking-[0.14em]",
35+
dynamics: "font-bold uppercase tracking-tight",
36+
nonlinear: "font-serif italic tracking-normal",
37+
time: "font-extralight uppercase tracking-[0.24em]",
38+
smart: "font-mono font-medium tracking-normal",
39+
};
40+
41+
/** Hue per family, and a lightness ramp across the modules inside it. */
42+
const FAMILY_HUE: Record<FxFamily, number> = {
43+
filter: 205,
44+
dynamics: 25,
45+
nonlinear: 310,
46+
time: 165,
47+
smart: 95,
48+
};
49+
50+
/**
51+
* Which family a chain node belongs to.
52+
*
53+
* The composite tags win over the registry group, because what a node IS to the
54+
* author is the module that owns it: a carve's peaking filters are not filters
55+
* the author added, they are one carve.
56+
*/
57+
export function fxFamilyOf(
58+
node: Pick<HfAudioFxNode, "type" | "fromCarve" | "fromEq" | "fromLeveller">,
59+
): FxFamily {
60+
if (node.fromCarve || node.fromEq || node.fromLeveller) return "smart";
61+
const group = HF_AUDIO_FX.find((def) => def.id === node.type)?.group;
62+
return group === "dynamics" || group === "nonlinear" || group === "time" ? group : "filter";
63+
}
64+
65+
/**
66+
* The module's own tint: its family's hue, stepped by where it sits among its
67+
* siblings in the registry.
68+
*
69+
* Kept narrow on purpose — 62% to 76% lightness at low saturation. This has to
70+
* separate two modules at a glance without reading as a status colour, and the
71+
* panel already spends saturation on "automated" and "bypassed".
72+
*/
73+
export function fxFamilyTint(
74+
node: Pick<HfAudioFxNode, "type" | "fromCarve" | "fromEq" | "fromLeveller">,
75+
): string {
76+
const family = fxFamilyOf(node);
77+
const siblings = HF_AUDIO_FX.filter((def) => fxFamilyOf({ type: def.id }) === family);
78+
const index = siblings.findIndex((def) => def.id === node.type);
79+
const step = siblings.length > 1 ? Math.max(0, index) / (siblings.length - 1) : 0;
80+
// Comma syntax rather than the space-separated modern form: it is what every
81+
// CSS parser in the chain agrees on, including the one the tests run in.
82+
return `hsl(${FAMILY_HUE[family]}, 32%, ${(62 + step * 14).toFixed(1)}%)`;
83+
}

packages/studio/src/components/editor/propertyPanelFxNodeRow.tsx

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { EFFECT_COPY, SUMMARY } from "@hyperframes/core/audio-fx-copy";
2222
import { fxAutomationTarget } from "@hyperframes/core/audio-automation";
2323
import { FxParams } from "./propertyPanelFxControls.js";
2424
import { FxBandRuler } from "./propertyPanelFxBandRuler.js";
25+
import { FX_FAMILY_TYPE, fxFamilyOf, fxFamilyTint } from "./propertyPanelFxFamily.js";
2526

2627
/**
2728
* The one control that carries the module, if it has one.
@@ -72,6 +73,8 @@ function plainDef(def: HfAudioFxDef): HfAudioFxDef {
7273
interface FxNodeRowProps {
7374
node: HfAudioFxNode;
7475
index: number;
76+
/** Where it sits in the signal path, as the rack counts it. Absent means unnumbered. */
77+
position?: number;
7578
automatedTargets?: ReadonlySet<string>;
7679
liveAutomationValues?: ReadonlyMap<string, number>;
7780
onAutomateParam?(nodeId: string, paramKey: string): void;
@@ -115,6 +118,8 @@ function FxMoveButton({
115118
/** Name, bypass, reorder and remove for one effect. */
116119
function FxNodeHeader({
117120
label,
121+
family,
122+
position,
118123
open,
119124
bypassed,
120125
first,
@@ -126,6 +131,9 @@ function FxNodeHeader({
126131
onRemove,
127132
}: {
128133
label: string;
134+
/** How this family letters, so the KIND reads before the word does. */
135+
family: string;
136+
position?: number;
129137
open: boolean;
130138
bypassed: boolean;
131139
first: boolean;
@@ -138,9 +146,17 @@ function FxNodeHeader({
138146
}) {
139147
return (
140148
<div className="hf-fx-node-head flex min-h-7 items-center gap-1 px-1.5">
149+
{/* Two digits, because a rack reads as a path when its steps are numbered
150+
and as a list when they are not — and the difference decides whether an
151+
author thinks the order matters. It does; it is audible. */}
152+
{position !== undefined ? (
153+
<span className="hf-fx-node-index shrink-0 font-mono text-[9px] tabular-nums text-panel-text-4">
154+
{String(position).padStart(2, "0")}
155+
</span>
156+
) : null}
141157
<button
142158
type="button"
143-
className="hf-fx-node-name flex-1 truncate text-left text-[11px] font-semibold text-panel-text-1 hover:text-panel-text-0"
159+
className={`hf-fx-node-name flex-1 truncate text-left text-[11px] text-panel-text-1 hover:text-panel-text-0 ${family}`}
144160
aria-expanded={open}
145161
onClick={onToggleOpen}
146162
>
@@ -259,6 +275,7 @@ function FxNodeParams({
259275
export function FxNodeRow({
260276
node,
261277
index,
278+
position,
262279
automatedTargets,
263280
liveAutomationValues,
264281
onAutomateParam,
@@ -293,10 +310,17 @@ export function FxNodeRow({
293310
const summary = SUMMARY[node.type]?.(params);
294311
return (
295312
<div
296-
className={`hf-fx-node rounded-[4px] border border-panel-border-input${bypassed ? " opacity-50" : ""}`}
313+
className={`hf-fx-node rounded-[4px] border border-l-2 border-panel-border-input${bypassed ? " opacity-50" : ""}`}
297314
data-fx-node={node.type}
315+
data-fx-family={fxFamilyOf(node)}
316+
// The tint is on the edge rather than the text: the name already carries
317+
// the family in its lettering, and colouring it too would fight the
318+
// panel's own tokens for automated and bypassed.
319+
style={{ borderLeftColor: fxFamilyTint(node) }}
298320
>
299321
<FxNodeHeader
322+
family={FX_FAMILY_TYPE[fxFamilyOf(node)]}
323+
position={position}
300324
// The node's own job name when a preset gave it one, because that is the
301325
// most specific truth available: a chain that cuts mud and then lifts
302326
// clarity must not show the same name twice. Then the plain name, and

packages/studio/src/components/editor/propertyPanelFxSection.test.tsx

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,89 @@ describe("FxSection chain", () => {
364364
);
365365
});
366366

367+
it("draws the rack as a signal path, with both ends named", () => {
368+
// Order is audible here, and a list does not look ordered. Numbering the
369+
// steps and naming the two ends is what makes "move up" read as the most
370+
// consequential control in the panel rather than a cosmetic one.
371+
const { host } = mount({ chain: chainOf("highpass", "limiter") });
372+
const terms = Array.from(host.querySelectorAll(".hf-fx-term")).map((e) => e.textContent);
373+
expect(terms).toHaveLength(2);
374+
expect(terms[0]).toContain("In");
375+
expect(terms[1]).toContain("Out");
376+
// Counted over what the rack SHOWS: the carve module leads it, so the first
377+
// hand-built effect is 02.
378+
const numbers = Array.from(host.querySelectorAll(".hf-fx-node-index")).map((e) =>
379+
e.textContent?.trim(),
380+
);
381+
expect(numbers).toEqual(["02", "03"]);
382+
});
383+
384+
it("draws a preset's nodes as the one thing that was added", () => {
385+
// Applying a preset drops five rows into the rack with nothing saying they
386+
// arrived together — the same failure the carve module exists to fix, one
387+
// level down.
388+
const { host, onChainChange } = mount({ chain: { version: 1, nodes: [] } });
389+
click(byText(host, "button", "Presets"));
390+
click(presetButton(host, "telephone"));
391+
// Applying does not re-render this mount — the chain comes back as a prop —
392+
// so the rack is read from what was written.
393+
const applied = onChainChange.mock.calls[0]?.[0] as HfAudioFxChain | undefined;
394+
const written = applied?.nodes ?? [];
395+
const { host: after } = mount({ chain: { version: 1, nodes: written } });
396+
397+
const run = after.querySelector("[data-fx-preset='telephone']");
398+
expect(run).toBeTruthy();
399+
expect(run?.querySelector(".hf-fx-preset-run-label")?.textContent).toBe("Telephone");
400+
expect(run?.querySelectorAll(".hf-fx-node")).toHaveLength(written.length);
401+
});
402+
403+
it("brackets only nodes a preset still sits next to", () => {
404+
// Pulled apart by a reorder, they are no longer a unit — and a bracket
405+
// around the gap would claim an adjacency the signal path does not have.
406+
const { host } = mount({
407+
chain: {
408+
version: 1,
409+
nodes: [
410+
{ type: "highpass", fromPreset: "telephone", params: defaultAudioFxParams("highpass") },
411+
{ type: "reverb", params: defaultAudioFxParams("reverb") },
412+
{ type: "lowpass", fromPreset: "telephone", params: defaultAudioFxParams("lowpass") },
413+
],
414+
} as unknown as HfAudioFxChain,
415+
});
416+
const runs = Array.from(host.querySelectorAll("[data-fx-preset='telephone']"));
417+
expect(runs).toHaveLength(2);
418+
for (const run of runs) expect(run.querySelectorAll(".hf-fx-node")).toHaveLength(1);
419+
});
420+
421+
it("letters each family differently, so the kind reads before the word does", () => {
422+
// A rack of eight modules is eight lines of text. Reading it should not mean
423+
// reading eight names — the shape of the line carries what KIND of module
424+
// this is, and the word only confirms it.
425+
const { host } = mount({ chain: chainOf("lowpass", "compressor", "saturate", "delay") });
426+
const families = Array.from(host.querySelectorAll("[data-fx-family]")).map((e) =>
427+
e.getAttribute("data-fx-family"),
428+
);
429+
// The carve module leads the rack and is smart; then the four registry ones.
430+
expect(families).toEqual(["smart", "filter", "dynamics", "nonlinear", "time"]);
431+
432+
const names = Array.from(host.querySelectorAll(".hf-fx-node-name")).map((e) => e.className);
433+
// Four families told apart by the sans, and the serif spent on the one that
434+
// generates signal rather than measuring or shaping what is there.
435+
expect(names.filter((c) => c.includes("font-serif"))).toHaveLength(1);
436+
expect(names[3]).toContain("font-serif");
437+
expect(new Set(names.map((c) => c.replace(/^.*?(?=font-)/, "")))).toHaveProperty("size", 5);
438+
});
439+
440+
it("tints two modules of the same family apart without changing family", () => {
441+
const { host } = mount({ chain: chainOf("lowpass", "highpass") });
442+
const cards = Array.from(host.querySelectorAll<HTMLElement>("[data-fx-family='filter']"));
443+
expect(cards).toHaveLength(2);
444+
// Same hue, different step: two filters, visibly two modules.
445+
const tints = cards.map((c) => c.style.borderLeftColor);
446+
expect(tints[0]).not.toBe(tints[1]);
447+
for (const tint of tints) expect(tint).toContain("205");
448+
});
449+
367450
it("says where a filter is working, in the words the rack shares", () => {
368451
// Frequencies mean nothing to somebody who has not been taught them, and the
369452
// rack speaks entirely in them. The ruler is where they get taught.

0 commit comments

Comments
 (0)