Files
singular-particular-space/ToolsnToys/appimage-quick-reference.html
JL Kruger 73f653ff23 Flatten ToolsnToys structure; add edu toys, dendritic, legacy artifacts
Move 6 guide pages from Guides/ to ToolsnToys/ root; fix back-links.
Add edu-toys.html (museum-style iframe exhibit for 4 legacy edu toy pages).
Add 4 edu toy artifacts, dendritic curio, docker-cheatsheet-enhanced.
Wire foss-tools, guides, edu-toys, and dendritic hrefs in toolsntoys.html.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-02 18:08:20 +02:00

283 lines
20 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>APPIMAGE QUICK REFERENCE // TOOLS N TOYS</title>
<link href="https://fonts.googleapis.com/css2?family=Sixtyfour&family=Share+Tech+Mono&family=Rambla:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Emoji&display=swap" rel="stylesheet">
<style>
:root {
--bg-deep: #030812;
--bg-mid: #060f1a;
--bg-surface: #081524;
--bg-panel: #0d1e32;
--text-main: #c8d8e8;
--text-muted: #3a5570;
--phosphor: #00ff41;
--neon-green: #32dc8c;
--neon-dim: #229966;
--fire-amber: #e8943a;
--fire-dim: #b06020;
--toucan: #ffcf40;
--fire-coral: #d4654a;
--neon-teal: #2ac4b3;
--orchid: #c558d9;
--border-green: rgba(50,220,140,0.25);
--border-amber: rgba(232,148,58,0.35);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-deep); color: var(--text-main); font-family: 'Rambla', sans-serif; min-height: 100vh; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 60% 40% at 50% 90%, rgba(232,148,58,0.06) 0%, transparent 70%), radial-gradient(ellipse 80% 50% at 10% 0%, rgba(3,8,18,0.95) 0%, transparent 60%), radial-gradient(ellipse 80% 50% at 90% 0%, rgba(3,8,18,0.95) 0%, transparent 60%); pointer-events: none; z-index: 0; }
body::after { content: ''; position: fixed; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.10) 3px, rgba(0,0,0,0.10) 4px); pointer-events: none; z-index: 1000; animation: scanline 12s linear infinite; }
@keyframes scanline { 0% { background-position: 0 0; } 100% { background-position: 0 400px; } }
.noise { position: fixed; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); pointer-events: none; z-index: 999; }
.campfire-glow { position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse at center bottom, rgba(255,107,26,0.14) 0%, rgba(255,59,10,0.04) 40%, transparent 70%); pointer-events: none; animation: campfireFlicker 3s ease-in-out infinite; z-index: 0; }
@keyframes campfireFlicker { 0%,100% { opacity: 0.6; transform: translateX(-50%) scaleY(1); } 33% { opacity: 1; transform: translateX(-50%) scaleY(1.08); } 66% { opacity: 0.7; transform: translateX(-52%) scaleY(0.96); } }
#embers { position: fixed; inset: 0; pointer-events: none; z-index: 3; }
.guide-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; max-width: 1100px; margin: 0 auto; }
.guide-sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; padding: 1.5rem 0.75rem 1.5rem 1rem; border-right: 1px solid var(--border-green); display: flex; flex-direction: column; gap: 1rem; scrollbar-width: thin; scrollbar-color: var(--neon-dim) transparent; }
.sidebar-back { font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--text-muted); text-decoration: none; text-transform: uppercase; transition: color 0.15s; }
.sidebar-back:hover { color: var(--neon-green); }
.sidebar-title { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--fire-amber); text-transform: uppercase; line-height: 1.5; border-bottom: 1px solid var(--border-amber); padding-bottom: 0.75rem; text-shadow: 0 0 8px rgba(232,148,58,0.4); }
.sidebar-label { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.guide-nav { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-item { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); text-decoration: none; padding: 0.3rem 0.5rem; border-left: 2px solid transparent; transition: all 0.15s; line-height: 1.4; }
.nav-item:hover { color: var(--text-main); border-left-color: var(--border-green); }
.nav-item.active { color: var(--neon-green); border-left-color: var(--neon-green); background: rgba(50,220,140,0.06); }
.guide-main { padding: 2rem 2.5rem 4rem; max-width: 760px; }
.guide-header { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-green); position: relative; }
.guide-header::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 35%; height: 1px; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); animation: headerGlow 3s ease-in-out infinite alternate; }
@keyframes headerGlow { from { opacity: 0.5; width: 25%; } to { opacity: 1; width: 45%; } }
.guide-tag { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--fire-amber); text-transform: uppercase; margin-bottom: 0.4rem; }
.guide-h1 { font-family: 'Sixtyfour', monospace; font-size: clamp(1.1rem, 3vw, 1.6rem); color: var(--neon-green); text-shadow: 0 0 8px var(--neon-green), 0 0 24px rgba(50,220,140,0.3); line-height: 1.3; margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.guide-subtitle { font-family: 'Share Tech Mono', monospace; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; }
.guide-section { margin-bottom: 2.5rem; }
.guide-section h2 { font-family: 'Share Tech Mono', monospace; font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fire-amber); text-shadow: 0 0 8px rgba(232,148,58,0.4); background: var(--bg-panel); border: 1px solid var(--border-amber); border-left: 3px solid var(--fire-amber); padding: 0.5rem 0.75rem; margin-bottom: 1rem; }
.guide-section h2::before { content: '// '; color: var(--text-muted); }
.guide-section h3 { font-family: 'Share Tech Mono', monospace; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon-teal); margin: 1.25rem 0 0.5rem; }
.guide-section h3::before { content: '> '; color: var(--text-muted); }
.guide-section p { font-size: 0.93rem; line-height: 1.7; color: var(--text-main); margin-bottom: 0.75rem; }
.guide-section ul, .guide-section ol { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.guide-section li { font-size: 0.92rem; line-height: 1.7; color: var(--text-main); margin-bottom: 0.2rem; }
.guide-section ul li::marker { color: var(--neon-green); }
.guide-section ol li::marker { font-family: 'Share Tech Mono', monospace; font-size: 0.8rem; color: var(--fire-amber); }
code { font-family: 'Share Tech Mono', monospace; font-size: 0.82rem; color: var(--toucan); background: rgba(255,207,64,0.08); padding: 1px 4px; border: 1px solid rgba(255,207,64,0.2); }
.code-block { position: relative; margin: 0.75rem 0 1rem; background: var(--bg-surface); border: 1px solid var(--border-green); border-left: 3px solid var(--neon-green); overflow: hidden; }
.code-label { font-family: 'Share Tech Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--text-muted); background: var(--bg-panel); padding: 0.25rem 0.75rem; border-bottom: 1px solid var(--border-green); display: flex; justify-content: space-between; align-items: center; }
.copy-btn { font-family: 'Share Tech Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-muted); background: transparent; border: 1px solid var(--border-green); padding: 2px 8px; cursor: pointer; transition: all 0.15s; text-transform: uppercase; }
.copy-btn:hover { color: var(--neon-green); border-color: var(--neon-green); }
.copy-btn.copied { color: var(--toucan); border-color: var(--toucan); }
.code-block pre { padding: 0.75rem 1rem; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--neon-dim) transparent; }
.code-block code { font-family: 'Share Tech Mono', monospace; font-size: 0.8rem; color: var(--phosphor); background: none; border: none; padding: 0; line-height: 1.6; display: block; white-space: pre; }
.code-block.ini code { color: var(--neon-teal); }
.code-block.text code { color: var(--text-main); }
.quick-ref { background: var(--bg-panel); border: 1px solid var(--border-amber); margin: 1.5rem 0; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); }
.quick-ref-header { font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--fire-amber); text-transform: uppercase; padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border-amber); text-shadow: 0 0 8px rgba(232,148,58,0.4); }
.quick-ref-header::before { content: '// '; color: var(--text-muted); }
.quick-ref-body { padding: 0.75rem; }
.mobile-nav-toggle { display: none; position: fixed; top: 1rem; left: 1rem; z-index: 100; font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--neon-green); background: var(--bg-panel); border: 1px solid var(--border-green); padding: 0.4rem 0.7rem; cursor: pointer; }
@media (max-width: 720px) { .guide-wrap { grid-template-columns: 1fr; } .guide-sidebar { position: fixed; top: 0; left: 0; width: 260px; z-index: 50; background: var(--bg-mid); transform: translateX(-100%); transition: transform 0.2s ease; border-right: 1px solid var(--border-green); } .guide-sidebar.open { transform: translateX(0); } .mobile-nav-toggle { display: block; } .guide-main { padding: 1rem 1.25rem 3rem; } .guide-h1 { font-size: 1rem; } }
</style>
</head>
<body>
<div class="noise"></div>
<div class="campfire-glow"></div>
<canvas id="embers"></canvas>
<button class="mobile-nav-toggle" id="navToggle">☰ SECTIONS</button>
<div class="guide-wrap">
<aside class="guide-sidebar" id="guideSidebar">
<a href="guides.html" target="_top" class="sidebar-back">← FIELD MANUALS</a>
<div class="sidebar-title">APPIMAGE QUICK REFERENCE</div>
<div>
<div class="sidebar-label">// SECTIONS</div>
<nav class="guide-nav" id="guideNav">
<a href="#basic" class="nav-item">Basic Operations</a>
<a href="#proper" class="nav-item">Proper Installation</a>
<a href="#extract" class="nav-item">Extract Icon</a>
<a href="#update" class="nav-item">Update AppImage</a>
<a href="#remove" class="nav-item">Remove AppImage</a>
<a href="#troubleshoot" class="nav-item">Troubleshooting</a>
<a href="#template" class="nav-item">Desktop Template</a>
<a href="#commands" class="nav-item">Common Commands</a>
<a href="#categories" class="nav-item">Categories Ref</a>
<a href="#find" class="nav-item">Find Installed</a>
<a href="#tips" class="nav-item">Pro Tips</a>
<a href="#security" class="nav-item">Security Check</a>
</nav>
</div>
</aside>
<main class="guide-main">
<header class="guide-header">
<div class="guide-tag">▶ FIELD MANUAL // TOOLS N TOYS</div>
<h1 class="guide-h1">APPIMAGE QUICK REFERENCE</h1>
<div class="guide-subtitle">Essential Commands and Templates</div>
</header>
<section class="guide-section" id="basic">
<h2>Basic Operations</h2>
<div class="code-block">
<div class="code-label"><span>BASH</span><button class="copy-btn" data-target="code-basic">COPY</button></div>
<pre><code id="code-basic">chmod +x app-name.AppImage
./app-name.AppImage</code></pre>
</div>
</section>
<section class="guide-section" id="proper">
<h2>Proper Installation</h2>
<h3>Manual Method</h3>
<div class="code-block">
<div class="code-label"><span>BASH</span><button class="copy-btn" data-target="code-proper">COPY</button></div>
<pre><code id="code-proper">mkdir -p ~/Applications
mv ~/Downloads/app-name.AppImage ~/Applications/
chmod +x ~/Applications/app-name.AppImage
nano ~/.local/share/applications/app-name.desktop</code></pre>
</div>
</section>
<section class="guide-section" id="extract">
<h2>Extract Icon from AppImage</h2>
<div class="code-block">
<div class="code-label"><span>BASH</span><button class="copy-btn" data-target="code-extract">COPY</button></div>
<pre><code id="code-extract">./app-name.AppImage --appimage-extract
find squashfs-root -name "*.png" | grep -i icon
cp squashfs-root/path/to/icon.png ~/Applications/app-icon.png
rm -rf squashfs-root</code></pre>
</div>
</section>
<section class="guide-section" id="update">
<h2>Update AppImage</h2>
<div class="code-block">
<div class="code-label"><span>BASH</span><button class="copy-btn" data-target="code-update">COPY</button></div>
<pre><code id="code-update">mv ~/Applications/app-name.AppImage ~/Applications/app-name.AppImage.old
mv ~/Downloads/app-name-new.AppImage ~/Applications/app-name.AppImage
chmod +x ~/Applications/app-name.AppImage
rm ~/Applications/app-name.AppImage.old</code></pre>
</div>
</section>
<section class="guide-section" id="remove">
<h2>Remove AppImage</h2>
<div class="code-block">
<div class="code-label"><span>BASH</span><button class="copy-btn" data-target="code-remove">COPY</button></div>
<pre><code id="code-remove">rm ~/Applications/app-name.AppImage
rm ~/Applications/app-icon.png
rm ~/.local/share/applications/app-name.desktop
update-desktop-database ~/.local/share/applications/</code></pre>
</div>
</section>
<section class="guide-section" id="troubleshoot">
<h2>Troubleshooting</h2>
<div class="callout note">
<div class="callout-label">FUSE Error</div>
<code>sudo apt install fuse libfuse2</code>
</div>
<div class="callout warn">
<div class="callout-label">Validation</div>
<code>desktop-file-validate ~/.local/share/applications/app-name.desktop</code>
</div>
</section>
<section class="guide-section" id="template">
<h2>Desktop Entry Template</h2>
<div class="code-block ini">
<div class="code-label"><span>INI</span><button class="copy-btn" data-target="code-template">COPY</button></div>
<pre><code id="code-template">[Desktop Entry]
Type=Application
Name=App Name
Exec=/home/jl-kruger/Applications/app-name.AppImage
Icon=/home/jl-kruger/Applications/app-icon.png
Terminal=false
Categories=Utility;</code></pre>
</div>
</section>
<section class="guide-section" id="commands">
<h2>Common AppImage Commands</h2>
<div class="quick-ref">
<div class="quick-ref-header">UTILITIES</div>
<div class="quick-ref-body">
<div class="code-block">
<pre><code>./app-name.AppImage --appimage-help
./app-name.AppImage --appimage-version
./app-name.AppImage --appimage-extract
gtk-launch app-name</code></pre>
</div>
</div>
</div>
</section>
<section class="guide-section" id="categories">
<h2>Categories Reference</h2>
<ul>
<li>AudioVideo, Development, Education, Game, Graphics</li>
<li>Network, Office, Science, Settings, System, Utility</li>
</ul>
</section>
<section class="guide-section" id="find">
<h2>Find Installed AppImages</h2>
<div class="code-block">
<pre><code>ls -lh ~/Applications/*.AppImage
ls ~/.local/share/applications/*.desktop</code></pre>
</div>
</section>
<section class="guide-section" id="tips">
<h2>Pro Tips</h2>
<div class="callout good">
<div class="callout-label">Aliases</div>
<code>alias myapp='~/Applications/app-name.AppImage'</code>
</div>
</section>
<section class="guide-section" id="security">
<h2>Security Check</h2>
<div class="code-block">
<pre><code>sha256sum app-name.AppImage
file app-name.AppImage</code></pre>
</div>
</section>
</main>
</div>
<script>
const canvas = document.getElementById('embers'); const ctx = canvas.getContext('2d');
function resize() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
resize(); window.addEventListener('resize', resize);
const mouse = { x: -9999, y: -9999 };
window.addEventListener('mousemove', ev => { mouse.x = ev.clientX; mouse.y = ev.clientY; });
const ZONES = [ { r: 40, strength: 0.012 }, { r: 90, strength: 0.004 }, { r: 130, strength: 0.001 } ];
const EMBER_COUNT = 55; const embers = [];
const ZONES = [ { r: 36, strength: 0.014 }, { r: 88, strength: 0.005 }, { r: 121, strength: 0.0012 } ];
const COLORS = [ { r: 255, g: 107, b: 26 }, { r: 255, g: 59, b: 10 }, { r: 255, g: 160, b: 40 }, { r: 255, g: 200, b: 60 }, { r: 212, g: 255, b: 0 } ];
function randomEmber() { const col = COLORS[Math.random() < 0.06 ? 4 : Math.floor(Math.random() * 4)]; return { x: Math.random() * canvas.width, y: canvas.height + 10, vx: (Math.random() - 0.5) * 0.9, vy: -(0.5 + Math.random() * 1.4), life: 0, maxLife: 180 + Math.random() * 280, size: 1 + Math.random() * 2.2, r: col.r, g: col.g, b: col.b, wobble: Math.random() * Math.PI * 2, wobbleSpeed: 0.02 + Math.random() * 0.03, trail: [] }; }
for (let i = 0; i < EMBER_COUNT; i++) { const e = randomEmber(); e.y = Math.random() * canvas.height; e.life = Math.random() * e.maxLife; embers.push(e); }
function drawEmber(e) { const progress = e.life / e.maxLife; const alpha = progress < 0.1 ? progress / 0.1 : progress > 0.75 ? (1 - progress) / 0.25 : 1; if (alpha <= 0) return; const gAlpha = alpha * 0.38; const glow = ctx.createRadialGradient(e.x, e.y, 0, e.x, e.y, e.size * 4); glow.addColorStop(0, `rgba(${e.r},${e.g},${e.b},${gAlpha})`); glow.addColorStop(1, `rgba(${e.r},${e.g},${e.b},0)`); ctx.beginPath(); ctx.arc(e.x, e.y, e.size * 4, 0, Math.PI * 2); ctx.fillStyle = glow; ctx.fill(); ctx.fillStyle = `rgba(${e.r},${e.g},${e.b},${Math.min(0.65, gAlpha * 1.4)})`; const ps = Math.max(1, Math.round(e.size)); ctx.fillRect(Math.round(e.x) - ps, Math.round(e.y) - ps, ps * 2, ps * 2); }
function tick() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (const e of embers) {
if (e.life % 6 === 0) { e.trail.push({ x: e.x, y: e.y }); if (e.trail.length > 5) e.trail.shift(); }
const dx = mouse.x - e.x, dy = mouse.y - e.y, d = Math.sqrt(dx*dx+dy*dy);
if (d < ZONES[2].r) {
let s = 0;
for (const z of ZONES) if (d < z.r) { s = z.strength; break; }
e.vx += (dx/d)*s; e.vy += (dy/d)*s;
e.vx *= 0.98; e.vy *= 0.98;
}
e.wobble += e.wobbleSpeed; e.x += e.vx + Math.sin(e.wobble) * 0.4; e.y += e.vy; e.life++;
if (e.life >= e.maxLife || e.y < -20) Object.assign(e, randomEmber());
drawEmber(e);
}
requestAnimationFrame(tick);
}
tick();
document.querySelectorAll('.copy-btn').forEach(btn => { btn.addEventListener('click', () => { const targetId = btn.dataset.target; const el = document.getElementById(targetId); if (el) navigator.clipboard.writeText(el.textContent).then(() => { btn.textContent = 'COPIED'; setTimeout(() => btn.textContent = 'COPY', 1800); }); }); });
const sections = document.querySelectorAll('.guide-section[id]'); const navItems = document.querySelectorAll('.nav-item');
const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { navItems.forEach(n => n.classList.remove('active')); const active = document.querySelector(`.nav-item[href="#${entry.target.id}"]`); if (active) active.classList.add('active'); } }); }, { rootMargin: '-20% 0px -60% 0px' });
sections.forEach(s => observer.observe(s));
const toggle = document.getElementById('navToggle'); const sidebar = document.getElementById('guideSidebar'); if (toggle && sidebar) toggle.addEventListener('click', () => sidebar.classList.toggle('open'));
</script>
</body>
</html>