Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// taut demo: the real library (wasm) on two surfaces.
// 01 FEEL IT tt_feel_*: a persistent Session pair per RTO floor, stepped
// 01 FEEL IT - tt_feel_*: a persistent Session pair per RTO floor, stepped
// from the animation loop; your cursor samples are the messages.
// 02 MEASURE tt_run: one deterministic 500-message race per floor.
// 02 MEASURE - tt_run: one deterministic 500-message race per floor.

let run = null, feelInit = null, feelSend = null, feelStep = null;
let ready = false;
Expand Down Expand Up @@ -101,7 +101,7 @@ function tick(now) {
if (ready && !reduced && now - lastUser > 2500) {
const t = now / 1000;
target = { x: .5 + .38 * Math.sin(t * .9), y: .5 + .3 * Math.sin(t * 1.5 + 1.2) };
hint.textContent = 'autopilot move your cursor to take over';
hint.textContent = 'autopilot: move your cursor to take over';
hint.style.opacity = .85;
}
if (ready && target && now - lastSample >= SAMPLE_MS) {
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>taut reliable UDP that refuses to wait</title>
<title>taut - reliable UDP that refuses to wait</title>
<meta name="description" content="A reliable-UDP transport library in C++20, running live in your tab. The kernel's retransmit timer refuses to fire before 200ms; taut's floor is 25. Feel the difference, then measure it.">
<meta property="og:type" content="website">
<meta property="og:title" content="taut reliable UDP that refuses to wait">
<meta property="og:title" content="taut - reliable UDP that refuses to wait">
<meta property="og:description" content="The real protocol code, live in your tab: your cursor becomes the message stream, two receivers chase it through the same lossy link, one retransmit floor apart.">
<meta property="og:url" content="https://lgoyal6.github.io/taut/">
<meta property="og:image" content="https://lgoyal6.github.io/taut/og.png">
Expand Down
Loading