initial commit
This commit is contained in:
604
samples/document-flow.html
Normal file
604
samples/document-flow.html
Normal file
@@ -0,0 +1,604 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sample 4: Document Flow Layout</title>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@400;500;700&family=JetBrains+Mono:ital,wght@0,400;0,500;1,400&display=swap');
|
||||
|
||||
/* Design Tokens */
|
||||
:root {
|
||||
--bg-canvas: #0d0f12; /* Deep charcoal slate */
|
||||
--bg-surface: #121417; /* Slightly lighter dark surface */
|
||||
--border-color: #2b303b; /* Low-contrast static 1px borders */
|
||||
--text-primary: #e0e6f0; /* Off-white reading text */
|
||||
--text-muted: #8a95a5; /* Monospaced metadata / timestamps */
|
||||
--accent: #00f0ff; /* High-contrast Cyan indicator */
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-canvas);
|
||||
color: var(--text-primary);
|
||||
font-family: 'Inter', sans-serif;
|
||||
line-height: 1.65;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Sticky Navigation Header */
|
||||
.sticky-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
height: 56px;
|
||||
background-color: var(--bg-canvas);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0 24px;
|
||||
z-index: 100;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
font-weight: 700;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.logo-prompt {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.header-nav {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid transparent;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
background-color: var(--accent);
|
||||
color: var(--bg-canvas);
|
||||
}
|
||||
|
||||
.nav-link:focus {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.nav-link.active::before {
|
||||
content: "> ";
|
||||
color: var(--accent);
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.nav-link.active:hover::before {
|
||||
color: var(--bg-canvas);
|
||||
}
|
||||
|
||||
/* Main Split Layout */
|
||||
.split-container {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
height: calc(100vh - 56px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Left Pane - Fixed Terminal Scroll-Tracker Daemon */
|
||||
.left-pane {
|
||||
width: 380px;
|
||||
background-color: var(--bg-canvas);
|
||||
border-right: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 32px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.companion-terminal {
|
||||
width: 100%;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
background-color: var(--bg-surface);
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.terminal-header {
|
||||
background-color: var(--bg-canvas);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding: 8px 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.tab-title {
|
||||
color: var(--text-primary);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.tab-status {
|
||||
font-weight: 700;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.terminal-body {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.mascot-pre {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.82rem;
|
||||
line-height: 1.35;
|
||||
color: var(--text-primary);
|
||||
background-color: var(--bg-canvas);
|
||||
padding: 16px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
white-space: pre;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
/* Blinking Block Cursor */
|
||||
.cursor-block {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 15px;
|
||||
background-color: var(--text-primary);
|
||||
animation: blink 1s steps(2, start) infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.status-log-panel {
|
||||
border-top: 1px solid var(--border-color);
|
||||
padding-top: 12px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.log-output {
|
||||
color: var(--text-muted);
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
/* Right Pane - Continuous Document Stream */
|
||||
.right-pane {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
background-color: var(--bg-canvas);
|
||||
padding: 48px 32px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.document-stream {
|
||||
width: 100%;
|
||||
max-width: 65ch; /* Optimal prose line length */
|
||||
}
|
||||
|
||||
.document-header {
|
||||
margin-bottom: 40px;
|
||||
padding-bottom: 24px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.doc-title {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-weight: 700;
|
||||
font-size: 1.8rem;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.doc-subtitle {
|
||||
font-size: 1rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Continuous Section Flow (No 4-sided Bounding Boxes) */
|
||||
.doc-section {
|
||||
padding: 32px 0;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
scroll-margin-top: 20px;
|
||||
}
|
||||
|
||||
.doc-section:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.section-header-wrap {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 10px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* Structural Indicator for Active Scroll Section */
|
||||
.active-indicator {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-weight: 700;
|
||||
color: var(--accent);
|
||||
opacity: 0;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.doc-section.is-active .active-indicator {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.section-heading {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-weight: 700;
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.doc-section.is-active .section-heading {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.section-meta {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 16px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.meta-tag {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.doc-section p {
|
||||
color: var(--text-primary);
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.doc-section p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Terminal Code Block Component */
|
||||
.code-block {
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
background-color: var(--bg-surface);
|
||||
margin: 20px 0;
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.code-header {
|
||||
background-color: var(--bg-canvas);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding: 6px 14px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.code-content {
|
||||
padding: 14px;
|
||||
overflow-x: auto;
|
||||
font-size: 0.82rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.code-content pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.pane-footer {
|
||||
margin-top: 48px;
|
||||
padding-top: 24px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
/* Responsive Mobile Layout (Width <= 768px) */
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
overflow-y: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.split-container {
|
||||
flex-direction: column;
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.left-pane {
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
padding: 16px;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
position: sticky;
|
||||
top: 56px;
|
||||
z-index: 90;
|
||||
}
|
||||
|
||||
.right-pane {
|
||||
padding: 24px 16px;
|
||||
overflow-y: visible;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Sticky Navigation Header -->
|
||||
<header class="sticky-header">
|
||||
<div class="logo-container">
|
||||
<span class="logo-prompt">$</span> agy --layout=document-flow
|
||||
</div>
|
||||
<nav class="header-nav">
|
||||
<a href="index.html" class="nav-link">Catalog</a>
|
||||
<a href="homepage.html" class="nav-link">Sample 1</a>
|
||||
<a href="split-panel.html" class="nav-link">Sample 2</a>
|
||||
<a href="companion.html" class="nav-link">Sample 3</a>
|
||||
<a href="document-flow.html" class="nav-link active">Sample 4</a>
|
||||
<a href="portfolio.html" class="nav-link">Sample 5</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Split View Container -->
|
||||
<div class="split-container">
|
||||
|
||||
<!-- Left Pane: Fixed Terminal Scroll-Tracker Daemon -->
|
||||
<aside class="left-pane" aria-label="Scroll Tracker Daemon">
|
||||
<div class="companion-terminal">
|
||||
<div class="terminal-header">
|
||||
<span class="tab-title">sys-daemon (scroll-tracker)</span>
|
||||
<span class="tab-status">ONLINE</span>
|
||||
</div>
|
||||
<div class="terminal-body">
|
||||
<pre id="mascot-display" class="mascot-pre"></pre>
|
||||
<div class="status-log-panel">
|
||||
<div id="log-output" class="log-output">> continuous document flow initialized</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<!-- Right Pane: Continuous Document Reading Stream -->
|
||||
<main id="scroll-target" class="right-pane" aria-label="Technical Documentation">
|
||||
<div class="document-stream">
|
||||
|
||||
<!-- Document Header -->
|
||||
<header class="document-header">
|
||||
<h1 class="doc-title">Engineering Architecture & Portfolio</h1>
|
||||
<p class="doc-subtitle">
|
||||
A high-density technical reading flow. Pinned left pane contains an automated terminal tracker daemon observing scroll depth across sections.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<!-- Section 1 -->
|
||||
<section id="section-shell-parser" class="doc-section" data-target="/dev/posix-shell-parser">
|
||||
<div class="section-header-wrap">
|
||||
<span class="active-indicator">></span>
|
||||
<h2 class="section-heading">Custom POSIX Shell Parser</h2>
|
||||
</div>
|
||||
<div class="section-meta">
|
||||
<span>Version: v1.2.0</span>
|
||||
<span>•</span>
|
||||
<span>Module: /dev/posix-shell-parser</span>
|
||||
<span>•</span>
|
||||
<span class="meta-tag">[#lua]</span>
|
||||
<span class="meta-tag">[#ast-parser]</span>
|
||||
</div>
|
||||
<p>
|
||||
This section details a lightweight Lexer and AST parser written in Lua for parsing POSIX-compliant shell scripts. The architecture avoids runtime allocations during tokenization, enabling real-time syntax coloring inside terminal buffers.
|
||||
</p>
|
||||
<p>
|
||||
The execution pipeline operates in two distinct phases: string scanning into token stream vectors, followed by recursive descent operator precedence tree construction.
|
||||
</p>
|
||||
<div class="code-block">
|
||||
<div class="code-header">
|
||||
<span>lexer.lua</span>
|
||||
<span>Lua</span>
|
||||
</div>
|
||||
<div class="code-content">
|
||||
<pre><code>local function tokenize(src)
|
||||
local tokens = {}
|
||||
for pos, char in ipairs(src) do
|
||||
if char == ";" or char == "|" then
|
||||
table.insert(tokens, { type = "OPERATOR", value = char })
|
||||
end
|
||||
end
|
||||
return tokens
|
||||
end</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Section 2 -->
|
||||
<section id="section-wireguard-mesh" class="doc-section" data-target="/dev/wireguard-mesh">
|
||||
<div class="section-header-wrap">
|
||||
<span class="active-indicator">></span>
|
||||
<h2 class="section-heading">WireGuard Mesh Topology Builder</h2>
|
||||
</div>
|
||||
<div class="section-meta">
|
||||
<span>Version: v0.8.4</span>
|
||||
<span>•</span>
|
||||
<span>Module: /dev/wireguard-mesh</span>
|
||||
<span>•</span>
|
||||
<span class="meta-tag">[#networking]</span>
|
||||
<span class="meta-tag">[#wireguard]</span>
|
||||
</div>
|
||||
<p>
|
||||
Automated configuration generator designed to provision full-mesh WireGuard overlay networks across distributed cloud nodes and homelab infrastructure.
|
||||
</p>
|
||||
<p>
|
||||
Instead of manually calculating public/private keypairs and Endpoint IP pairings per host node, this utility computes matrix topologies and generates atomic configuration files.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- Section 3 -->
|
||||
<section id="section-zero-alloc-logger" class="doc-section" data-target="/dev/zero-alloc-logger">
|
||||
<div class="section-header-wrap">
|
||||
<span class="active-indicator">></span>
|
||||
<h2 class="section-heading">Zero-Allocation Logger (Go)</h2>
|
||||
</div>
|
||||
<div class="section-meta">
|
||||
<span>Version: v2.1.1</span>
|
||||
<span>•</span>
|
||||
<span>Module: /dev/zero-alloc-logger</span>
|
||||
<span>•</span>
|
||||
<span class="meta-tag">[#go]</span>
|
||||
<span class="meta-tag">[#performance]</span>
|
||||
</div>
|
||||
<p>
|
||||
A high-throughput structured JSON logger implemented in Go that leverages <code>sync.Pool</code> byte buffers to completely eliminate heap allocations during intensive I/O operations.
|
||||
</p>
|
||||
<p>
|
||||
Benchmark comparisons demonstrate zero GC overhead when processing over 500,000 log events per second across multi-threaded worker routines.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- Section 4 -->
|
||||
<section id="section-kernel-bootstrap" class="doc-section" data-target="/dev/kernel-bootstrap">
|
||||
<div class="section-header-wrap">
|
||||
<span class="active-indicator">></span>
|
||||
<h2 class="section-heading">Embedded Kernel Boot Strap</h2>
|
||||
</div>
|
||||
<div class="section-meta">
|
||||
<span>Version: v0.1.0</span>
|
||||
<span>•</span>
|
||||
<span>Module: /dev/kernel-bootstrap</span>
|
||||
<span>•</span>
|
||||
<span class="meta-tag">[#arm-cortex]</span>
|
||||
<span class="meta-tag">[#assembly]</span>
|
||||
</div>
|
||||
<p>
|
||||
Bare-metal boot sector and initial C runtime setup for ARM Cortex-M microcontrollers. Handles vector table offset initialization, memory region copy routines, and low-level UART debugging initialization.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- Section 5 -->
|
||||
<section id="section-ddns-daemon" class="doc-section" data-target="/dev/ddns-daemon">
|
||||
<div class="section-header-wrap">
|
||||
<span class="active-indicator">></span>
|
||||
<h2 class="section-heading">Traefik Cloudflare DDNS Daemon</h2>
|
||||
</div>
|
||||
<div class="section-meta">
|
||||
<span>Version: v1.0.2</span>
|
||||
<span>•</span>
|
||||
<span>Module: /dev/ddns-daemon</span>
|
||||
<span>•</span>
|
||||
<span class="meta-tag">[#docker]</span>
|
||||
<span class="meta-tag">[#traefik]</span>
|
||||
</div>
|
||||
<p>
|
||||
Background controller daemon designed to sync Docker container network labels with Cloudflare DNS records to route traffic to local homelab subdomains dynamically.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<footer class="pane-footer">
|
||||
<span>Sample 4: Document Flow Layout</span>
|
||||
<span>© 2026 Developer System</span>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scroll-Tracker IntersectionObserver Script -->
|
||||
<script>
|
||||
const IDLE_ART = ` /\\___/\\
|
||||
( o o ) sys-daemon
|
||||
( =^= ) STATUS: IDLE
|
||||
\\__*__/ LOG: awaiting input<span class="cursor-block"></span>`;
|
||||
|
||||
const READING_ART = ` /\\___/\\
|
||||
( - - ) sys-daemon
|
||||
( =o= ) STATUS: TRACKING
|
||||
\\__*__/ LOG: reading module_`;
|
||||
|
||||
const mascot = document.getElementById('mascot-display');
|
||||
const logOutput = document.getElementById('log-output');
|
||||
const sections = document.querySelectorAll('.doc-section');
|
||||
const rightPane = document.getElementById('scroll-target');
|
||||
|
||||
function setIdle() {
|
||||
mascot.innerHTML = IDLE_ART;
|
||||
logOutput.innerText = `> sys-daemon (idle scroll-tracker)`;
|
||||
}
|
||||
|
||||
function setTracking(targetPath) {
|
||||
mascot.innerHTML = READING_ART;
|
||||
logOutput.innerText = `[sys-daemon] active_section: ${targetPath}`;
|
||||
}
|
||||
|
||||
setIdle();
|
||||
|
||||
// IntersectionObserver to observe document sections in scroll view
|
||||
const observerOptions = {
|
||||
root: rightPane,
|
||||
rootMargin: '-20% 0px -60% 0px', // Active threshold zone
|
||||
threshold: 0
|
||||
};
|
||||
|
||||
let activeSection = null;
|
||||
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
if (activeSection) {
|
||||
activeSection.classList.remove('is-active');
|
||||
}
|
||||
activeSection = entry.target;
|
||||
activeSection.classList.add('is-active');
|
||||
|
||||
const target = activeSection.getAttribute('data-target');
|
||||
setTracking(target);
|
||||
}
|
||||
});
|
||||
}, observerOptions);
|
||||
|
||||
sections.forEach(section => observer.observe(section));
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user